Results 1 to 3 of 3

Thread: New here, need a little help V2! (I've learned alot since last post! :D)

  1. #1
    Join Date
    Jul 2012
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default New here, need a little help V2! (I've learned alot since last post! :D)

    So sorry if this is spam(?) but I have managed to get my script to attack revenants the same or lower cb level as me, but I can't figure out the right clicking -> attack.
    I would greatly appreciate any help I can get!
    What I would like to learn to do/achieve with this script is that is does the procedure "FillPrayer;" every minute or so, and also a way to detect if it actually attacked the monster, if currently attacking is false, click again. can anyone send me to a video/thread with this info, or help me in this thread?
    Code:
    program AutoRevsV2;
    
    procedure FillPrayer;
    begin
      MoveMouse(1908, 255);
      ClickMouse(1908, 255, 1);
      Wait(500);
    End;
    
    procedure AutoRevs;
    var
      x, y:Integer;
    begin
      if FindColorSpiralTolerance (x, y, 4535348, 8, 36, 1914, 1040, 1) or
         FindColorSpiralTolerance (x, y, 9610924, 8, 36, 1914, 1040, 1) then
      begin
      MoveMouse(x, y);
      Wait(500);
      ClickMouse(x, y, 1);
      Wait(10000);
      end;
    end;
    
    begin
      FillPrayer;
      repeat
      AutoRevs;
      until(false);
    end.

  2. #2
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    use clickMouse with a right click option parameter.
    more useful information here: http://docs.villavu.com/simba/script...dkeyboard.html

  3. #3
    Join Date
    Jul 2012
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you, but how would I go about using a bitmap for it to find the "attack option" as the colour of examine and attack are the same? also, and the most important to be honest, how would I go about setting my simba up properly for an RSPS? I am currently playing SpawnPk. Looking at the setting up for Rs3/Osrs I should have Java runtime enviroment 7, 32 bit. Right now I'm using Java 8 Update 111(64-bit) I really appreciate any help I can get!

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
  •