Thanks for visiting, but this thread has been moved to a different location. Please visit it at http://villavu.com/forum/showthread.php?t=76234.
Printable View
Thanks for visiting, but this thread has been moved to a different location. Please visit it at http://villavu.com/forum/showthread.php?t=76234.
BUMP!
Would someone please care to try it out? I'm DYING for some feedback!
Wish I could use but my construction is not at that level.
It's 1.
I haven't trained it yet.
Bump.. again!
Would somebody please try it out? It's been more than two days, and still no feedback!
been saying this a lot in the last 30 minutes to new scripts :) so here it is
in that code you have case Random(100) ofCode:procedure Antiban;
begin
case Random(100) of
1: HoverSkill('magic', false);
2: HoverSkill('random', false);
3: PickUpMouse;
4: RandomMovement;
5: RandomRClick;
6: ExamineInv;
7: Boredhuman;
end;
end;
Then 7 cases.
To make it a bit more random we can do this:
now what those number..number sequences do is pick the numbers selected and inbetween.Code:procedure Antiban;
begin
case Random(100) of
1..14: HoverSkill('magic', false);
15..29: HoverSkill('random', false);
30..49: PickUpMouse;
50..70: RandomMovement;
71..76: RandomRClick;
77..80: ExamineInv;
81..100: Boredhuman;
end;
end;
allowing you to fulfill the random(100) // Cases scenario
You are right in what you have done, I have not looked at the script, but if he is calling the AntiBan procedure every 500ms then that would be to much action for an antiban, whereas if he uses 1-7 then there wouldn't be an action every 500ms, giving it a more human effect.
I'll test this out later tonight for you and let you know how it goes. I need
to get to the store and pick up a mem card first tho.
took your advice, compared yours and yanhua and now i have a working script making my house tabbies, thanks Pal
Bump... Progress reports added, but not updated yet. Coming soon with SRL Stats support!