Nyyrazzilyss / NyyLIB

Mudlet client script for Torilmud
http://www.torilmud.com/phpBB3/viewtopic.php?f=4&t=27194
GNU General Public License v2.0
7 stars 4 forks source link

Enhancement: Rescue Button for Ranger/Hex #283

Open saerian opened 4 years ago

saerian commented 4 years ago

The rescue button was taken off the xp bar for rangers/hexes ... how about adding a small circular button to do this functionality ? Could probably use the autotank button/position (it looks like there's space), and clicking it would cycle through the options (to include the previous suggested option for casters only).

i982 commented 4 years ago

if this is something you would like to do until Nyy does an update you can easily do the following:)

as in the screenshot you search rescue which will bring up the little buttons over on the right there.

-- non-class specific buttons at far right

if checkMask("fighter") and not checkMask("rangerhex") then
    addbutton("autotank", 0, 16, 0, "2.4%")
end

change this ^ to:

-- non-class specific buttons at far right

if checkMask("fighter") then
    addbutton("autotank", 0, 16, 0, "2.4%")
end

this will give you the option to turn it on and off as you need and wont auto turn on in xp groups or whatever.

hex rng rescue button