mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
10 lines
327 B
Plaintext
10 lines
327 B
Plaintext
#include "script_component.hpp"
|
|
|
|
_onActionId = player getVariable[QGVAR(onActionId), -1];
|
|
_offActionId = player getVariable[QGVAR(offActionId), -1];
|
|
|
|
player removeAction _onActionId;
|
|
player removeAction _offActionId;
|
|
|
|
player setVariable[QGVAR(onActionId), -1, false];
|
|
player setVariable[QGVAR(offActionId), -1, false]; |