well this is my first script
what it does is auto types what u put in, then when it gets a trade offer it goes and accepts the trade, then the script ends
PHP Code:
program SpammerTradeAccepter;
var
x,y: integer;
begin
repeat
Wait(3000+random(500));
sendkeys('Buying Yew Logs 230ea'+chr(13)); //put what you want to type
if(findcolor(x,y,8388736,78,423,117,427)) then
begin
MoveMouseSmoothEx(x,y,20,30,35,25,20);
wait(500+random(200));
ClickMouse(x,y,true);
end;
until(FindColor(x,y,8388736,78,423,117,427));
end.
heres the updated 1
SCAR Code:
program SpammerTradeAccepter;
{.include SRL/SRL.scar}
var
i,o: integer;
begin
SetUpSRL;
repeat
Wait(3000+random(500));
TypeSend('Buying dds 70k'); //put what you want to type
if FindColorSpiral(i, o, 8388736, 78, 423, 117, 427) then
Mouse(i, o, 20, 1, true);
until(FindColorSpiral(x, y, 8388736, 78, 423, 117, 427));
end.