Results 1 to 4 of 4

Thread: S.M.A.R.T Members wrld Login

  1. #1
    Join Date
    Dec 2011
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default S.M.A.R.T Members wrld Login

    Hi how do i make Smart log into a members world only when starting up a script?

    Do i have to change something in the section below?

    Simba Code:
    Const
     SRLStats_Username = ''; // Your SRL Stats Username
     SRLStats_Password = ''; // Your SRL Stats Password
     BreakEvery        = 120; // How many minutes you want to break after
     BreakFor          = 5;  // How long to break for
     Version=       '1.00'; // Dont need to change
     NumbOfPlayers= 1;  // How many players you are botting
     StartPlayer= 0;  //Player to start autoing with (0 means 1st player)



     procedure DeclarePlayers;
    var i:integer;
    begin
      NumberOfPlayers(NumbOfPlayers);
      CurrentPlayer := StartPlayer;
      for i := 0 to NumbOfPlayers-1 do
        Players[i].BoxRewards  := ['oins', 'XP'];

      with Players[0] do
      begin
        Name        := '';     //Player username.
        Pass        := '';     //Player password.
        Nick        := ''; //Player nickname - 3-4 letters of Player username.
      end;

    end;

  2. #2
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Add these to your constants:
    Simba Code:
    WORLD = 0;
    MEMBERS = True;

    Go to where you use "SetupSRL;" and before it, add this:
    Simba Code:
    SMART_Server := WORLD;
    SMART_Members := MEMBERS;

  3. #3
    Join Date
    Dec 2011
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    You really are a lifesaver mate (: thats twice you've helped, definitely giving you credit, ill release the script within 1-2 hours

  4. #4
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    No credit needed. I just like helping people.
    I look forward to seeing your script!

Thread Information

Users Browsing this Thread

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

Posting Permissions

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