
Originally Posted by
markus
Rambozin created stuff that does this, but it's in members section.
BTW, first post being a request isn't a good welcome here.
This is not so big of a request.
HOLD ON ill make it for ya 
SCAR Code:
Program BlindSound;
{.Include SRL/SRL.Scar}
{.Include SRl/SRL/Skill/Fighting.Scar}
Const
LowHp = 30;
NickName = ''; //Few Letters Of Your Char.
AntiRandomSong = 'C:\ '; //Where is it? WMA!
LowHealthSound = 'C:\ '; //Where is it? WMA also!
LogOutSound = 'C:\ ';
Procedure AntiRand;
Begin
If(Not Loggedin)Then Exit;
If(FindName)Then
PlaySound(AntiRandomSong);
End;
Procedure HPCheck;
Begin
If(Not Loggedin)Then Exit;
If(GetHp <= LowHp)Then
PlaySound(LowHealthSound);
End;
Procedure Setup;
Begin
SetupSRL;
NickNameBMP := CreateBitmapMaskFromText(NickName,upchars);
End;
Begin
SetUp;
Repeat
Wait(300);
HPCheck;
Wait(300);
AntiRand;
Until(Not Loggedin);
If(Not Loggedin)Then
PlaySound(LogOutSound);
End.
There you go.. However u must have runescape on top. But u can read a book while training.