Results 1 to 4 of 4

Thread: Help!

  1. #1
    Join Date
    Nov 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help!

    I am trying to use Wizzup?'s rune essence miner and as you may have guessed, I am not having any luck.

    When I click run I get this error.
    Line 345: [Error] (4572:1): Identifier expected in script C:\Program Files\SCAR 3.13\includes\SRL/SRL/Core/Login.scar

    I do not know what that means or how to fix it so if you do please tell me.
    SCAR Code:
    {*******************************************************************************
    procedure RandomNextPlayer(Active: Boolean);
    By: Dankness based on WT-Fawki's NextPlayer and modified by Ron
    Description: Picks Random Player that is Active and Logs in
    *******************************************************************************}


    procedure RandomNextPlayer(Active: Boolean);
    var
      LastPlayer: Integer;
    begin
      WriteLn('NextPlayer');
      LastPlayer := CurrentPlayer;
      if not Active then
        Players[CurrentPlayer].Active := False;
      Logout;
      PlayerCurTime := (GetSystemTime div 1000);
      Players[CurrentPlayer].Worked := Players[CurrentPlayer].Worked +
        ((PlayerCurTime - PlayerStartTime) / 60);
      repeat
        CurrentPlayer := Random(HowManyPlayers);
        Wait(100);
      until (Players[CurrentPlayer].Active) and (CurrentPlayer <> LastPlayer);
      SRL_Logs := SRL_Logs + 1;
      LoginPlayer;
    end;

  2. #2
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hard to say, but maybe try rechecking your DeclarePlayers?

  3. #3
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Do You have Srl 4 Rev #3?

    clearly states in Title
    Essential Essence 1.16,
    for SRL 4 #3

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

    Default

    it's probably what gamer said. and for future times, problems with someone else's scripts go in that scripts thread. This Section of the forum is more to ask for help with getting something right in your script.

    ~RM

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

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
  •