Results 1 to 3 of 3

Thread: Best way to Inc(Kills)?

  1. #1
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Best way to Inc(Kills)?

    How is the most accurate way to inc kills?

  2. #2
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Depends on your fighting method.
    Working on: Tithe Farmer

  3. #3
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is what i have rite now!

    Simba Code:
    Function FindGhoul(Var X,Y: Integer): Boolean;
      var
        CTS,I: Integer;
        TPA: TPointArray;
        begin
      repeat
        Result := False;
        CTS := GetColorToleranceSpeed;

        ColorToleranceSpeed(2);

        SetColorSpeed2Modifiers(0.20, 1.60);

         FindColorsSpiralTolerance(MSCX, MSCY, TPA,(11652298), MSX1, MSY1, MSX2, MSY2, 8);
        ColorToleranceSpeed(CTS);

        if (Length(TPA) < 1) then
          Exit;

        MMouse(TPA[0].X, TPA[0].Y, 5, 5);

        if WaitUpText('ck Gho', 50) then
        begin
          GetMousePos(X, Y);
          ClickMouse2(True);
          Result := True;
          If DidRedClick then
          wait(500 + Random(1050));
          If Infight Then
          Begin
          Inc(Kills);
          End;
          repeat
          DoThePainting;
          Writeln('Killing Ghoul, sorry for this spam!');
          until Not(InFight)or (not OthersInFight) or (not LoggedIn);
          Exit;
        end;
        Until(Result)
        end;

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
  •