Results 1 to 3 of 3

Thread: SMART closes

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

    Default SMART closes

    Every time I stop, and then restart my script while SMART is still opens, it closes after starting the script again, and launches a new one. It causes Simba to crash often.

    I'm assuming it has to do with the loop and all, so here's this:
    Simba Code:
    begin
      SetupSRL;
      DeclarePlayers;
      LogInPlayer;
      ClearDebug;
      DeclareVars;
      players[CurrentPlayer].loc := 'Walking to Bank';
      proggy(players[CurrentPlayer].loc);
    repeat
      NextStep;
      AntiBan;
      if PrayerPoints < 150 then
        Eat('Prayer');
      if HPPercent < 50 then
        Eat('Food');
    until(false);
    end.

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Yeah I'm familiar with that happen, all you need to do is put
    Simba Code:
    Smart_Server := 30;
      SMART_Signed:=True;
      SMART_Members:=False;

    BEFORE SetupSRL; and problem solved!
    Don't worry it doesn't load server 30 actually, just the lowest ping server for you.

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

    Default

    Well that was a simple fix. Thanks!

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
  •