Results 1 to 6 of 6

Thread: very first script (auto talker)

  1. #1
    Join Date
    Sep 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default very first script (auto talker)

    This is the very first script I have ever made, please comment and help me out!

  2. #2
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    not bad not bad...


    You need to learn standards though...read up on some tutorials for the correct standards. You also forgot to put SetupSRL in your main loop. If you run this it will give a runtime error. You dont need to put ActivateClient in the repeat loop either, just call it once after SetupSRL...

    Other than that it looks good, so keep up the good work

    Your script with fixed standards and stuff:

    SCAR Code:
    program AutoTalking;
    {.include srl/srl.scar}

    var
      TimesTyped: Integer;

    const
      TypedToTimes = 3;
      Message1     = 'glow3:this my bones';
      Message2     = 'these your bones';
      Message3     = 'mine your bones';

     
    Procedure Talk;
    begin
      wait(1000 + Random(600))
      typesend(Message1);
      wait(1000 + Random(600))
      typesend(Message2);
      wait(1000 + Random(600))
      typesend(Message3);
      wait(1000 + Random(600))
    end;

    begin
      SetupSRL;
      ActivateClient;
      repeat
        Talk;
        TimesTyped := TypedToTimes + 1;
      until(TimesTyped >= TypedToTimes);
    end.
    METAL HEAD FOR LIFE!!!

  3. #3
    Join Date
    Jul 2007
    Posts
    1,055
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea, its prety good. Next I recomend adding Anti Ban (just because it is easy also fun to do), then Anti Randoms (because it is vital and also not that hard).

    If you want to go for something hard try making your own function for human like typing (yes, you can use Typesend2 but that has a little too many misstakes I think).

  4. #4
    Join Date
    Sep 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yes! Thanks for the edits, right now im gonna do study up on the standards more. Hopefully soon ill be able to add the anti bans and etc.

  5. #5
    Join Date
    Mar 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    cool, fun to use lol
    [-----------------------------------]
    [ GREEN LINEN SHIRT.....cloth..]
    [ chest...................................]
    [ armor 3...............................]
    [ required lvl 5........................]
    [............................................]
    [-----------------------------------]

  6. #6
    Join Date
    Aug 2007
    Location
    North Carolina
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice Job, .

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My First Script Auto Talker
    By FagetHax0r in forum First Scripts
    Replies: 15
    Last Post: 03-30-2008, 08:58 PM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. my first script (auto talker)
    By the ghetto8 in forum First Scripts
    Replies: 5
    Last Post: 08-05-2007, 10:47 AM
  4. my first script:auto talker
    By 8arry 5tinkt in forum First Scripts
    Replies: 2
    Last Post: 07-15-2007, 03:25 PM
  5. Help with auto trade/ auto talker script
    By logik in forum OSR Help
    Replies: 5
    Last Post: 03-16-2007, 11:16 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
  •