ummmmm0k
06-20-2007, 04:55 AM
ok i made a basic auto talker as my first script, to buy stuff, and i wanted to make it stop talking when u accept a trade, then keep talking after the trade is over, so u dont have to keep stopping and starting it.
can someone explain to me on how to do this
this is what i made so far, bare with me its my first attempt at a script
program Spammer;
var
i: integer;
begin
i:= 0;
repeat
i:= i + 1;
Wait(3000+random(500));
sendkeys('Buying Yew Logs 250ea'+chr(13));
until(i >= 10);
end.
as u can see i just have it stop after its gotten to that number, but i want to change it so that it stops when u accept a trade, then keeps going after u finsih that trade
can someone explain to me on how to do this
this is what i made so far, bare with me its my first attempt at a script
program Spammer;
var
i: integer;
begin
i:= 0;
repeat
i:= i + 1;
Wait(3000+random(500));
sendkeys('Buying Yew Logs 250ea'+chr(13));
until(i >= 10);
end.
as u can see i just have it stop after its gotten to that number, but i want to change it so that it stops when u accept a trade, then keeps going after u finsih that trade