Results 1 to 2 of 2

Thread: Help with Ultimate abilities

  1. #1
    Join Date
    Sep 2014
    Posts
    55
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default Help with Ultimate abilities

    Hello, I've been working on a minotaur bot for combat training of noob accounts in rs3 and so far it is going good but one problem is I have no idea how to make the script do ultimate abilities and thresholds. If its possible I would like my script to send key>5 when adrenaline is more then %50 and send key>6 when adrenaline is %100.

  2. #2
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Simba Code:
    procedure doAbilities();
    begin
      if (actionBar.getAdrenalinePercent() = 100) then
       begin
         writeLn('Adrenaline is maxed, time for an ultimate');
         sendKeys('6');
         exit;
       end;

      if (actionBar.getAdrenalinePercent() > 50) then
       begin
         writeLn('Adrenaline is not maxed but is over 50, time for a threshold');
         sendKeys('5');
         exit;
       end;
    end;

    Something like that?
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

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
  •