Results 1 to 6 of 6

Thread: Identifier Expected...already read other threads b4 this one...

  1. #1
    Join Date
    Apr 2007
    Location
    Doha, Qatar
    Posts
    216
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Identifier Expected...already read other threads b4 this one...

    SCAR Code:
    procedure Depositing;
     begin
      if not LoggedIn then Exit;
      if DoWeNeedAnotherPick = True then
      begin
        Deposit(1, 28, 2);
        PickToGet;
        DoWeNeedAnotherPick := False;
        Exit;
      end;

    this is the procedure...it says Identifier expected and the arrow moves back to procedure...whats wrong with it?

    someone help...that wd be awesome...thnx,

    issamawan

  2. #2
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    procedure Depositing;
    begin
    if not LoggedIn then Exit;
    if DoWeNeedAnotherPick = True then
    begin
    Deposit(1, 28, 2);
    PickToGet;
    DoWeNeedAnotherPick := False;
    Exit;
    end;
    end;

    end missing./
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  3. #3
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    fixed one is:
    SCAR Code:
    procedure Depositing;
     begin
      if not LoggedIn then Exit;
      if DoWeNeedAnotherPick = True then
      begin
        Deposit(1, 28, 2);
        PickToGet;
        DoWeNeedAnotherPick := False;
        Exit;
      end;
    end;
    hope I helped

  4. #4
    Join Date
    Apr 2007
    Location
    Doha, Qatar
    Posts
    216
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thnx...rep+ fpr both of u...bt stil isnt working...:P

  5. #5
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    copy and paste the error please?

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  6. #6
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i already helped him on msn
    so it is fixed now
    the problem was in the procedure above

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Need help ~ Identifier Expected
    By Baked0420 in forum OSR Help
    Replies: 11
    Last Post: 12-07-2008, 10:11 PM
  2. Identifier expected? I need help with this
    By xminimanx in forum OSR Help
    Replies: 10
    Last Post: 04-25-2008, 04:03 PM
  3. Identifier Expected
    By Torrent of Flame in forum OSR Help
    Replies: 9
    Last Post: 02-23-2008, 01:21 PM
  4. identifier expected?
    By lilboy543 in forum OSR Help
    Replies: 2
    Last Post: 04-26-2007, 12:43 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •