Results 1 to 3 of 3

Thread: Help making script!

  1. #1
    Join Date
    Jul 2007
    Location
    Ohio
    Posts
    1,103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help making script!

    I was wondering if there is a specific way to put your walk and anti-randoms and anti-ban in your script. Can you put the procedures anywhere and does there have to be a specific order in the main loop? I no it sounds noobie but i want to help the community with a script(and a good one).

    Thanks,
    king of the nites

  2. #2
    Join Date
    Aug 2007
    Posts
    1,404
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Our names are almost the same :P

    A good script requires a good build.
    A good build requires a good choice of selfmade and normal functions working good together.
    Selfmade function require understanding

    A small "poem", but true. A good build is essential for a script. Have all the anti-randoms in one procedure, and have it run regularly in your script.
    Anti-ban should be a case of 10 different things. And with that, it should only work once in a while. Like this.
    SCAR Code:
    procedure MyAntiBan;
    begin
      Case Random(10) of
        0: // Do Something.
        1: // Do something.
        2: // Do something.
        3: // Do something.
        4: // Do something.
        5: // Do something.
        6: // Do something.
        7: // Do something.
        8: // Do something.
        9: // Do something.
      end;
    end;

    procedure AntiBanSometimes;
    begin
      Case Random(2) of
        0: Wait(2000+random(2000))
        1: MyAntiBan;
      end;
    end;

    A good build is a matter of loops, and using them correctly with functions.

    I can't describe that, though.

    -Knives

  3. #3
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dude you just could do random(put here a higher number then you got
    ~Hermen

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. im new and need help making my 1st script
    By KEVINF342 in forum OSR Help
    Replies: 4
    Last Post: 01-24-2009, 06:15 PM
  2. help for making script
    By Simtoon in forum OSR Help
    Replies: 2
    Last Post: 08-28-2008, 02:19 PM
  3. Making first script need some help
    By AC Lova123 in forum OSR Help
    Replies: 4
    Last Post: 05-10-2008, 12:33 PM
  4. Script is making the rs lag
    By fudgepack a in forum OSR Help
    Replies: 6
    Last Post: 03-13-2008, 11:25 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
  •