Could someone please explain the function of this? Does it run around, does it scan for mobs=> do I put it somewhere and it will just farm the mobs?
Can you enable a path?
Could someone please explain the function of this? Does it run around, does it scan for mobs=> do I put it somewhere and it will just farm the mobs?
Can you enable a path?
okay I could read that in the first page.
But does it have any looting? OR is it for standing afk in an event zone and not just spamming 1 key? Id like to know if I can make it farm mobs
thx for the script, but i have the error line 18
If ($Go) Then
If (^ ERROR
>Exit code: 1 Time: 0.213
Tomatoes99,
i released my version of the script i am using, which is based on yours. check it out, you can find it here:
Post link is here! ([Release] LazyPad script by Scorps1)
It keeps atacking mobs that are far away. (Or maybe is it because I have autoattack enabled in the options menu ingame?)
Last edited by Rafahil; 01-08-2013 at 11:37 AM.
So been using your script and i like it very much so... my question is i wanted to make a basic movement script but i have no idea whats so ever how to do this other then send w 50 times or something... was wondering is there somthing that can track everything you push/etc over a period of time? if so is there a script that can start or stop when something from your script starts like attacking?.. sorry if thats vague basic idea im shooting for is i make a simple path your scripts see's enemy mine stops movement said enemy dies movement restarts from last point.... dont want it made for me im not lazy just clueless![]()
Yes! This is totally possible.
What I would do is make a function for each direction that does what you're describing. So for example here's what forward would be:
so a scripted path would look something like:Code:Func Forward($seconds) ; Send ("{W DOWN}") For 1 to $seconds*5 $r +=200 send("{TAB}") randsleep(200) PixelSearch($xresolution/2 -178, 86, $xresolution/2 + 74, 99, 0x972115, 5) If not @error and Checkrange() Then Send ("{W UP}") call("DoEvent") Send ("{W DOWN}") endif Next Send ("{W UP}") EndFunc ; >Forward
Code:Forward(20) Left(.5) Forward(45) Right(.23) Forward(5)
Last edited by Tomatoes99; 03-04-2013 at 07:45 PM.