i am trying to use what i've learned recently to make an auto talker, when i run this script all it does is types in a load of stuff, not what i tell it to and then it start the colour picker for some reason. hanks in advance for any help.
Code:program AutoTalker; //////////////////////////////////////////////////////////////////////////////// Const Chat = 'fishing levels people'; // Replace only text with your message. Rate = 20; // How many seconds to wait. Tip: try not to make it too ovious. Randomtime = true; // Set true to add random time of 4-6 seconds. KeepTyping = false; //////////////////////////////////////////////////////////////////////////////// Procedure Waiting; begin wait(1000+random(10*rate)); end; Procedure Randomtimer; b wait(1000+random(700)); wait(1000+random(300)); wait(1000+random(400)); wait(1000+random(600)); end; procedure Typo; begin SendKeys(Chat); end; begin cleardebug; if keeptyping = false then begin Typo; end else repeat waiting; typo; randomtimer; until(false); end.



Reply With Quote




