RionKillikus

fn_hudSetup

May 12th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include "..\..\script_macros.hpp"
  2.  
  3. disableSerialization;
  4.  
  5. 2 cutRsc ["playerHUD","PLAIN"];
  6. [] call life_fnc_hudUpdate;
  7.  
  8. [] spawn
  9. {
  10. private["_dam"];
  11. while {true} do
  12. {
  13. _dam = damage player;
  14. waitUntil {(damage player) != _dam};
  15. [] call life_fnc_hudUpdate;
  16. };
  17. };
Add Comment
Please, Sign In to add comment