Results 1 to 6 of 6

Thread: Why am i getting mismatch errors?

  1. #1
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Why am i getting mismatch errors?

    SCAR Code:
    Procedure FightMonster;
    Var
    FightTime: integer;
    Begin
      FindRandoms;
      AntiBan;
      MarkTime(FightTime);
      Begin
      If FindColorTolerance(x, y, StrToInt(Color1.Text), MSX1, MSY1, MSX2, MSY2, 15) Or
      FindColorTolerance(x, y, StrToInt(Color2.Text), MSX1, MSY1, MSX2, MSY2, 15) Or
      FindColorTolerance(x, y, StrToInt(Color3.Text), MSX1, MSY1, MSX2, MSY2, 15) Then
        Begin
        IsUpText('tack')
        Repeat
        Mouse(x, y, 1, 1, False)
        ChooseOption('tack')
        Until Not(InFight) or (TimeFromMark(FightTime)) > (MaxKillTime);
        End;
      End;
    End;

    im sure time is an integer

  2. #2
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  3. #3
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you didnt set max time?

  4. #4
    Join Date
    May 2007
    Location
    Netherlands, Amersfoort
    Posts
    2,701
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    in what line?

    maybe couse you have:
    Until Not(InFight) or (TimeFromMark(FightTime)) > (MaxKillTime);
    and it might be:
    Until Not(InFight) or (TimeFromMark(FightTime) > MaxKillTime);

    idk, i can't test couse in that script part to many procedure's are missing

  5. #5
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks MK u was right

  6. #6
    Join Date
    May 2007
    Location
    Netherlands, Amersfoort
    Posts
    2,701
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    WOOT i like it to be right

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Type Mismatch
    By Torrent of Flame in forum OSR Help
    Replies: 4
    Last Post: 02-24-2008, 03:00 PM
  2. mismatch
    By Stevee in forum OSR Help
    Replies: 2
    Last Post: 07-27-2007, 04:55 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
  •