Hi, I am trying to make my first script. What this script will do is attack a scorpion, and after 12 seconds it will find another scorpion and attack it. I do not know how to make the script tell if the scorpion is dead or not, so I just have it 12 seconds since that should be plenty of time for me to kill one.
Like I said this is my first script ever, and making is for 2007 has made it more difficult. It does not use SMART or have anti-ban.
I have managed to get the mouse to find the scorpions, but it will not click them. Here is what I have so far:
Also, I used a tutorial on how to chop a tree, so that is why the loop will stop when the inventory is full. I didn't bother changing that in fear of messing something up, plus I will not be looting anything with the script so since the inventory will not fill up it shouldn't matter. At this point I am just trying to get the script to function.Code:Program Attack; {$I SRL/SRL.Simba} {$I P07Include.Simba} Procedure Attack; var x, y: integer; begin repeat if P07_FindObj(x, y, 'corpion', 3618629, 1) then begin Mouse(x, y, 3, 3, false); P07_ChooseOptionMulti(['ttack']); end; repeat wait(12000+random(250)); Until not IsUpText('corpion') or (InvFull); until(InvFull); end; begin SetUpSRL; SetupP07Include; Attack; end.


Reply With Quote

