Results 1 to 2 of 2

Thread: Help Understanding SMART. Won't login.

  1. #1
    Join Date
    Mar 2013
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default Help Understanding SMART. Won't login.

    This is the code I used and for some reason I keep getting a compiler error at Smart_Server and the next four lines after that. Also if I take those four lines off SMART loads but won't log in my player. It says

    Unknown identifier 'Smart' at line 19
    Compiling failed.

    This is the code.

    program Login;
    {$DEFINE SMART}
    {$i srl/srl.simba}
    {$i sps/sps.simba}


    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;
    Players[0].Name := '';
    Players[0].Pass := '';
    Players[0].Active := True;
    Players[0].Pin := '';
    end;

    begin
    Smart_Server := 72;
    Smart_Members := False;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SRL_SixHourFix := True;
    Smart_FixSpeed := True;

    ClearDebug;
    SetupSRL;
    DeclarePlayers;
    LoginPlayer;
    end.
    Last edited by chineseman1992; 03-05-2013 at 05:51 AM.

  2. #2
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Simba Code:
    Smart_Server := 72;
    Smart_Members := False;
    Smart_Signed := True;
    Smart_SuperDetail := False;

    They are un-used. Try removing them and try again.

    Forum account issues? Please send me a PM

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
  •