Results 1 to 2 of 2

Thread: My First Script ~Merchanter~

  1. #1
    Join Date
    Sep 2006
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My First Script ~Merchanter~

    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.

    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.
    I also added a progress report to it =/

    Tell me what you think, i know it isnt much, but its my first script.

  2. #2
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmmmmm it looks ok... not much more than an autotalker... if you could add a trader and it worked it would be VERY useful... and another thing that you might want to change, is just have the user type ONE thing to say without saying the colors, and you just do like case of randoms 7 then do like flash1: (Message)!!!) and keep on switching the colors... hope you understand this and it helps for newer, better versions you seem like your gonna be a pretty good scripter since you already know how to do randomness oh and also maybe change the
    SCAR Code:
    until q > 10;   // change for how many times you want it to speak
    to something like
    SCAR Code:
    until (Talked = TimesToTalk)
    and put in the const
    SCAR Code:
    TimesToTalk   =   15;//How Many Times To Talk Before Logging Out.
    or you could just have the messages set up to
    SCAR Code:
    IsFKeyDown(5) then
    TypeSend(Message1);
    lol well hope this helps

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Great Script Idea: Banana Merchanter
    By loopa in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 08-14-2008, 06:22 AM
  2. merchanter
    By welshboy in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 11-04-2007, 03:16 AM
  3. merchanter?
    By theoreo1 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 08-13-2007, 05:41 AM
  4. My Merchanter
    By looneytoon in forum OSR Help
    Replies: 11
    Last Post: 01-12-2007, 11:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •