AutoPotter by Stubs
This is a rather simple Auto Potter I made. Place the potions in the upper right-hand corner of your inventory, target Endless Online with SCaR and press the run button. To end the script you may use the CTRL+ALT+S hotkey.
Need to use more pots?
If you wish to use more than one potion when potting then copy lines 18-21 and paste it below line 21 in SCaR Divi 3.13. This may be necessary for harder mobs and bosses in-game!
program AutoPotterByStubs;
//
// This script will automatically use a potion when your health
// drops below 50%. Place your pots in the far upper right hand
// corner of your inventory.
//
// http://eomix.blogspot.com
//
var x, y:integer;
procedure Pot;
begin
FindWindow('Endless Online')
ActivateClient
repeat
if(FindColorSpiral(x, y, 1579032, 185, 38, 185, 38))then
begin
clickmouse(78, 360, true);
wait(50)
clickmouse(464, 376, true);
wait(15)
clickmouse(464, 376, true);
wait(500)
end
until(FindColorSpiral(x, y, 1579032, 185, 38, 185, 38)=false)
end;
begin
repeat
Pot
until(false)
end.
Put Magic In F1
ReplyDeleteScript is for the Nut Vipers Scar 3.13
program Automage;
var
x, y, Monster: Integer;
begin
Monster:=3231017;
findwindowtitlepart('endless online',false);
activateclient;
wait(500);
repeat
if(FindColorSpiral(x, y, Monster, 13, 61, 630, 332))then
begin
keydown(113);
wait(10)
keyup(113);
clickmouse(x, y, true)
wait(500)
end;
until(x = 99999999)
end.