Results 1 to 4 of 4

Thread: [Error] (89:1): Identifier expected at line 88 Compiling failed.

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

    Default [Error] (89:1): Identifier expected at line 88 Compiling failed.

    Simba Code:
    begin
      SetupSRL;
      DeclarePlayers;
      SetupPlayer;
      SetupScript;
    repeat
      GoBank;
    end; //Line 88
    I need help with the main loop ^^
    Last edited by Chrome; 02-10-2012 at 02:56 PM.

  2. #2
    Join Date
    Nov 2011
    Location
    England
    Posts
    3,072
    Mentioned
    296 Post(s)
    Quoted
    1094 Post(s)

    Default

    You want to keep repeating gobank? if so;

    Simba Code:
    begin
      SetupSRL;
      DeclarePlayers;
      SetupPlayer;
      SetupScript;
    repeat
      GoBank;
    Until(false)
    end; //Line 88

    That will repeat GoBank untill you manually stop it.
    your repeat didn't have a until

  3. #3
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Simba Code:
    repeat
      GoBank
    until({condition});

    You forgot the until() for the repeat.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  4. #4
    Join Date
    Jan 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok thanks guys ^^ Im testing banking

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
  •