Results 1 to 4 of 4

Thread: Antiban and Antirandom stuff?

  1. #1
    Join Date
    Nov 2006
    Location
    Belgium
    Posts
    110
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Antiban and Antirandom stuff?

    Hello, i am trying to make a first script, and itd working fine But where do i find a TUT on how to add AntiBan and AntiRandom stuff? I can't find it anywhere, even not with the search button =/

    Thanks for help.

    ~Mod Mopar~

  2. #2
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    procedure Declareplayers;
      begin
      HowManyPlayers:=1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer:=0;
    
         Players[0].Name :='Abcdefgh' //PlayerName
         Players[0].Pass :='password' //Password
         Players[0].Nick :='cdefg'  //Players nick name( a few letters from playername)
         Players[0].Loc  :='';
         Players[0].Active:=True;
          end;
    This is procedure what you need to get antirandoms work.
    This must put after "SetUpSRL;"
    You can check SRL's anti random stuff from includes\SRL\SRL\core\AntiRandoms.

    Here is example how to use SRL's anti random stuff.
    Code:
    procedure Declareplayers;
      begin
      HowManyPlayers:=1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer:=0;
    
         Players[0].Name :='Abcdefgh' //PlayerName
         Players[0].Pass :='password' //Password
         Players[0].Nick :='cdefg'  //Players nick name( a few letters from playername)
         Players[0].Loc  :='';
         Players[0].Active:=True;
          end;
    
    procedure Randoms;
    begin
    FindNormalRandoms;  //Solves "normal" randoms
    end;
    
    begin
    Setupsrl;
    Declareplayers; //Setsup player
    //Your stuff here
    Randoms; //Check for randoms
    //Your stuff here
    end.
    And yes, use search button, you can find out about antirandoms with that.

  3. #3
    Join Date
    Nov 2006
    Location
    Belgium
    Posts
    110
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm , thanks I understand much from it, because I just started I only have a basic script. But can you post a link to a TUT that explains how to work with it? Because, as I allready told in my first post, I don't find anything with the search button

  4. #4
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    use findnormalrandoms;

    that will find "normal" randoms. for other stuff, like fighting randoms, you have to do more advanced stuff.

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. AntiBan stuff.
    By Dervish in forum OSR Help
    Replies: 18
    Last Post: 12-28-2008, 03:49 PM
  2. AntiBan and AntiRandom Help?
    By 1337N3SS in forum OSR Help
    Replies: 13
    Last Post: 10-19-2008, 09:39 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
  •