ok i made an autotalker tat allows multiple words and i did this to decrease the possibility of being detected soooo I was wondering if it is possible to have SCAR just randomly pick a sentence put in to the script. For Example:
is it pssible to have SCAR just randomly choose Say then Say2 and type them then g to Talk2 Then Talk??Code:const Talk='Text Here'; Say=' Type Text Here'; Talk2='More Text Here'; Say2=' Put Text Here';
for example have it write:
Then once finished with that command repeats it but this time randomly does:Code:Type Text Here then Put Text Here then More Text Here then Text Here
What do I have to do to get SCAR to do something like that (randomly choose a sentence and type it)?? If you can tell me Id really appreciate it =)Code:Put Text Here then Text Here then Type Text Here then More Text Here
You Guys Are Lucky Im Going To Have To Give A Sneak Peek Of My New Script lol
Ok Now I Was Tryng To Test The Script But I Kept Getting This Error about until(false):Code://LevExidus AutoTalker V.3 //For The Newbies Out There Feel Free To Use This To Learn How To Script. program AutoTalker; {.Include SRL/SRL.Scar} // if you want to only have a certain //amount of text just keep them blank. //to prevent you from being detected i suggest //you dont change the TWait. For better //protection make it higher. const Talk = 'Text Here'; //what to say TWait = 2000; //time to wait after typing Say = 'More Text Here'; // Second Text Talk2 = 'More Text Here'; //Third text Say2 = 'More Text Here'; // Fourth Text TalkAgain = 'More Text Here'; // Last Text (Fifth) procedure TalkOn; begin repeat //Reapeats the following: Wait(TWait + random(700)); case 1 + Random(5) of 1: typesend(Talk); 2: typesend(Say); 3: typesend(Talk2); 4: typesend(Say2); 5: typesend(TalkAgain); until (false); //False = never ends.. Ends Repeat. end; begin //BEGINS repeat //Repeats The Foloing: TalkOn; // Does everything in procedure TalkOn; until (false) //keeps going Forever.. Ends Repeat. end. //End of Script
Failed when compiling
Line 32: [Error] (14713:1): Syntax error in script
Any Idea Cuase I Don't Got One


Reply With Quote


