Results 1 to 3 of 3

Thread: need help

  1. #1
    Join Date
    Dec 2011
    Location
    florida
    Posts
    72
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default need help

    Simba Code:
    program rocktailfisher;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}
    {$i SRL/SRL/misc/paintsmart.scar}



     var
      X, Y, FishSpot, Bank, rod, Rocktail, A, B: Integer;


    procedure DeclarePlayers;
    begin

      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Nick := '';
      Players[0].Active := True;
      Players[0].Pin := '';
      Players[0].BoxRewards := ['Xp', 'emote', 'costume', 'coins', 'saphire', 'essence'];
    end;

    procedure SmartSet;
    begin
      Smart_Server := 60;
      Smart_Members := True;
      Smart_Signed := True;
      Smart_SuperDetail := False;
    end;

    procedure AntiRandoms;
    begin
      FindNormalRandoms;
      LampSkill := 'fishing';
      LevelUp;
    end;
    procedure SetDTM;
    begin
      FishSpot := DTMFromString('mWAAAAHicY2FgYEhlZGBoAOIwIC4F4h9AsQdA/B2I7wJxfe8ahob+tQwT5mxgqOxYwoAOGNEwCAAAo5AMXg==');
      Bank := DTMFromString('mbQAAAHicY2VgYDgPxPuA+BYQHwTiy0AsxsjAwA7E6kAsDcSCQJwR7cYQG2TP4OlswRDu78yQEuHMgA0wYsFgAACshgke');
      Rocktail := DTMFromString('mbQAAAHicY2VgYAhjZGBIAGJ/II4BYl8g1gViRSA2A2JDINYB0ZoyDOZ68gz+0f4MvpG+DNJiIgzYACMWDAYAnnEFzw==');
      A
      B

    procedure FrDTM;
    begin
      FreeDTM(FishSpot);
      FreeDTM(Bank);
      FreeDTM(Rocktail);
      FreeDTM(A);
      FreeDTM(B);
    end;


    [Error] (1:1): Unexpected end of file at line 0
    Compiling failed.

  2. #2
    Join Date
    Jan 2012
    Location
    Minneapolis, Mn
    Posts
    185
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your forgot to end the SetDTM procedure.

    E: Also, you are missing code at the end.

    Simba Code:
    begin
    end.

  3. #3
    Join Date
    Dec 2011
    Posts
    353
    Mentioned
    3 Post(s)
    Quoted
    8 Post(s)

    Default

    You need to add your main loop
    Simba Code:
    begin
    end.//notice the . instead of ;

    Place it at the bottom of your script I suggest you learn some more basics.

    http://villavu.com/forum/showthread.php?t=49089

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
  •