Results 1 to 5 of 5

Thread: Major SMART problems...

  1. #1
    Join Date
    Feb 2012
    Posts
    168
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Major SMART problems...

    So the other day, SMART was running just fine. Now, I get one of three problems, depending on which script I try to run it with.

    http://support.microsoft.com/kb/125749
    ^That problem happens randomly, about 1 time every 10 times I run either of the scripts.

    Simba Code:
    program new;
    {$i SRL/SRL/MISC/SMART.simba}
    {$i SRL/SRL.simba}



    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer  := 0;

      with Players[0] do
      begin
        Name := '';
        Pass := '';

        Active := True;
      end;
    end;

    procedure Setup;
    begin
      SMART_Server := WORLD;
      SMART_Members:= MEMBERS;

      SetupSRL;
      DeclarePlayers;
      LoginPlayer;
      SetAngle(SRL_ANGLE_HIGH);
      ClearDebug;

      WriteLn('Line.');
    end;

    begin
      Setup;
    end.

    This one will not write 'Line.' to the debug box. (As in, it won't write anything other than the standard SMART lines).

    Simba Code:
    Problem here Fix'd.

    There, SMART restarts every time I restart the script...
    Last edited by Imagine; 02-28-2012 at 07:59 PM.

  2. #2
    Join Date
    Dec 2011
    Location
    P2P :)
    Posts
    561
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    What operating system do you have and is it 32 or 64 bit in regards to the SMART issues. I will edit this as I get feedback.
    I wear my scars like the rings on a pimp
    I live life like the captain of a sinking ship
    Always sell your product for ATLEAST mid to ensure that the market doesn't drop.

  3. #3
    Join Date
    Feb 2012
    Posts
    168
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm on a Windows 7 Enterprise, on a 32 bit operating system.

  4. #4
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Simba Code:
    procedure SetupLogin; // Credits to Sin
    begin
      ClearDebug;
      Smart_Server := 39;
      Smart_Members := False;
      Smart_Signed := False;
      Smart_SuperDetail := False;
      NumberofCasts := 0;
      SetupSRL;
    end;

    will fix the restarting
    Working on: Tithe Farmer

  5. #5
    Join Date
    Feb 2012
    Posts
    168
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Okay, thank you - This fixed the Restarting problems

    Time to see if I'm still having the other problems though.

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
  •