Hey all, I'm new. And this is my first script![]()
But I'm getting errors?Code:program AutoTyperTrader; ///////////////////////////////////////////// // Types a designated message until // // someone tries to trade with you, then // // accepts the trade and exits the // // script. // ///////////////////////////////////////////// {.include SRL/SRL.scar} {.include SRL/SRL/misc/trade.scar} const SellingMessage = 'Flash1:Wave2:Selling 4k ess 30ea!! -- Chicken Kllr'; procedure FoundTrade; begin If SomeoneTrades Then //Someone tries to trade with you. begin AcceptTrade; //Accepts the trade. Exit; //Exits The Script. end; end; procedure Talk(MessageToSay:String; //Like TypeSend, but waits a random //time before typing. Also I like //using the word 'talk' better. :) begin Wait(2000 + random(1000)); TypeSend(MessageToSay); end; begin if (Not LoggedIn) then Exit; //Exits it not logged in. repeat if SomeoneTrades Then FoundTrade; //If someones trying to trade, do //the procedure. Wait(1000 + random(2000); //Waits a little before typing.. Talk(SellingMessage); until(False); end.
Please, I need your help!
-jbrauman (h)


Reply With Quote

