Alright, I am very new to scar scripting and I am just starting to learn.
I wrote this script from scratch and it works pretty well and it will type pretty fast, but will not get you banned.
I also added a progress report to it =/Code:program Merchanter; {.include SRL/SRL.scar} {This Script will not type fast, so you will not get reported or banned} var q:integer; procedure declareq; Begin q := 0; end; procedure talk; begin case (random(7)) of 0: TypeSend('flash1:selling 5k air runes, 15ea!!'); //change strings as you wish to speak 1: TypeSend('flash2: selling 5k air runes for 15gp each!!!'); 2: TypeSend('flash3: selling 5k air runes, 75k'); 3: TypeSend('flash1:selling 5k air runez, 15ea!!!'); 4: TypeSend('flash2:selling 5k air runes, 15ea.'); 5: TypeSend('flash3:selling 5k air runes for 75k!!'); 6: TypeSend('selling air runes, trade me, 15ea'); end; wait (1200+random(500)); q := q+1; end; procedure progressreport; begin writeln ('The script has spoke '+inttostr(q)+' times'); end; begin wait (3000) // use the 3 seconds to select RuneScape window disguisescar ('iTunes'); declareq; repeat talk; progressreport; until q > 10; // change for how many times you want it to speak end.
Tell me what you think, i know it isnt much, but its my first script.


Reply With Quote
you seem like your gonna be a pretty good scripter since you already know how to do randomness
oh and also maybe change the 