SphereCommunity

Full Version: how to disable bandageself
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to disable bandageself from client hotkeys?
im using custom healing with t_bandage
but client macros hotkey "bandageself" starting default healing skill Lol
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)
Sphere.ini
PACKET191=F_PACKET191 // Bottom AGREE=1

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