Results 1 to 3 of 3

Thread: define smart

  1. #1
    Join Date
    Jan 2012
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default define smart

    I have already created a simple script but i dont know how to make it pop up in another window like running in msi. I have this but for some reason its not working

    Code:
    {$DEFINE SMART}
    {$i srl/srl.simba}
    {$i sps/sps.simba}
    
    
    
    
    
    
    procedure DeclarePlayers;
    begin
    
      HowManyPlayers := 1;
      NumberOfPlayers(howmanyplayers);
      CurrentPlayer := 0;
    
      Players[0].Name := ''; // Username
      Players[0].Pass := ''; // Password
      Players[0].Nick := ''; // 3-4 lowercase letters from ingame username;
      Players[0].Active := True; // Set to true if you want to use Player 0
      Players[0].Pin := ''; // Bank Pin
    end;
    yes i filled it out too.

    I ven tried puting it in the loop but its not working, help would be appreciated.
    Last edited by mriddler; 02-29-2012 at 03:41 PM.

  2. #2
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Here's what I open to begin making any script. This should work for you.

    Simba Code:
    program Script;
    {$DEFINE SMART}
    {$i srl/srl.simba}

    Procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;            // Don't touch this
      NumberOfPlayers(HowManyPlayers);// Don't touch this
      CurrentPlayer := 0;             // Don't touch this
      Players[0].Name := 'username';  // Username
      Players[0].Pass := 'password';  // Password
      Players[0].Active := True;      // Don't touch this
      Players[0].Pin := '   ';        // Bank Pin, Leave blank if you don't have one
    end;

    begin
      smart_server := 91;
      smart_members := false;
      smart_signed := true;
      smart_superDetail := false;
      ClearDebug;
      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
    end.

  3. #3
    Join Date
    May 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Re:

    Thanks for sharing the coding.Its very necessary information.

    classified php 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
  •