Im trying to get my script to check my skill randomly while burying bones. Im drawing a blank though.. I know I could get it to check after it has burried all the bones but I want it to check randomly for a more humanlike look. Any suggestions?
Im trying to get my script to check my skill randomly while burying bones. Im drawing a blank though.. I know I could get it to check after it has burried all the bones but I want it to check randomly for a more humanlike look. Any suggestions?
SUMMER BREAK be back when I want to
You could do:
SCAR Code:Procedure CheckPrayer;
MouseBox(576,174,594,196,1);
GetSkillLevel('prayer');
CurrentSkillXp('prayer');
NextLevelAt('prayer');
XpTilNextLevel('prayer',True);
End;
Hope this helped you!
- Da Der Der
If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
Oh I know how to check the skill level, I just want to check it randomly... Thanks any ways![]()
SUMMER BREAK be back when I want to
this will check randomly
that will check it randomly, does that help?PHP Code:procedure skillchecker;
begin
case random(10) of
1: GetSkillLevel('prayer'); //or w.e you want it to be
3: GetSkillLevel('prayer');
5: GetSkillLevel('prayer');
8: GetSkillLevel('prayer');
10: GetSkillLevel('prayer');
end;
end;
Ok so that will pick a random number between ten and if it is either 1,3,5,8,10, then it will check the skill lvl. Ok thanks that worked but I am gunna get it to check exp also. Thanks for your help you will get credit.
SUMMER BREAK be back when I want to
There are currently 1 users browsing this thread. (0 members and 1 guests)