SphereCommunity
how to disable bandageself - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: how to disable bandageself (/Thread-how-to-disable-bandageself)



how to disable bandageself - WRWR - 05-21-2017 10:45 AM

how to disable bandageself from client hotkeys?
im using custom healing with t_bandage
but client macros hotkey "bandageself" starting default healing skill Lol


RE: how to disable bandageself - Coruja - 05-21-2017 12:23 PM

I don't remember exactly how the bandageself internal macro works, but if it works using an specific extended macro like openspellbook/opendoor/etc you can check ARGN1 on trigger @UserExtCmd (return 1 will block the action). Or if the macro call directly the healing skill, you can use @PreStart -> return 1 on healing skill (since you're using an custom healing engine instead the default healing skill, there's no problem if you disable the default healing action)


RE: how to disable bandageself - aserehe - 05-23-2017 06:37 PM

Sphere.ini
PACKET191=F_PACKET191 // Bottom AGREE=1

another.scp
[FUNCTION F_PACKET191]
IF (<LOCAL.4> == 02c)
RETURN 1
ENDIF