-
help with a auto talker
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
PHP Code:
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
-
alright, you can have it check for a color of the trade screen title bar. And have it chat untill it finds it. And afterwards have it check untill it notices that it's gone. You can use any of the srl functions inside color.scar to help you
-
Try using TypeSend (by including SRL) for less detectability. There are also SRL function to see if trade screen is open.
Use stuff like TradeScreen to see if the TradeScreen is open.