Results 1 to 4 of 4

Thread: Invalid Opcode Parameter

  1. #1
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Invalid Opcode Parameter

    "Error: Invalid Opcode Parameter at line 162"
    Line 162 is:
    Simba Code:
    MarkTime(T);

    The error happens every so often. It does not do this every time MarkTime(T); is used, which might indicate something.

    Thanks in advance for any help on this error, I really appreciate it!

  2. #2
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Posting a bit more of the script might help, since that alone does not tell anything.

  3. #3
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Thats odd.
    An alternative is:
    Simba Code:
    Timeout := GetSystemTime + WaitLength;
      while (GetSystemTime < Timeout) do
      begin
        stuff;
      end;

  4. #4
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    This is the only segment of my script that uses it. If more is needed, just say so.

    Simba Code:
    if (DidRedClick) then
      begin
        MarkTime(T);

        repeat
          Wait(RandomRange(531, 780));
          FindNormalRandoms;
          Antiban;
          newExp := GetXPBarTotal;
          FromMark := TimeFromMark(T);
        until((FromMark >= RandomRange(10522, 13677)) or (InvFull) or
               (newExp > expAmount) or (not(LoggedIn)));

        Result := True;
      end;

    Quote Originally Posted by KingKong View Post
    Posting a bit more of the script might help, since that alone does not tell anything.
    @ Mormonman :
    Thanks, I'll try it. I appreciate the alternative.

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
  •