_Brown_ 10 Posted July 2, 2015 Once the player has completed an AddAction how do I remove the AddAction so that they can only press it once, not multiple times Share this post Link to post Share on other sites
donelsarjo 60 Posted July 2, 2015 https://community.bistudio.com/wiki/removeAction the index will be 0, if it is the first addaction. Share this post Link to post Share on other sites
Greenfist 1863 Posted July 2, 2015 There's a removeAction command. Share this post Link to post Share on other sites
R3vo 2654 Posted July 2, 2015 In the script simply put: _unit = _this select 0; _action = _this select 2; _unit removeAction _action; Share this post Link to post Share on other sites