Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. private ["_isWoman","_burn", "_nul", "_burnSound"];
  2.  
  3. _burn = true;
  4.  
  5. while {_burn} do {
  6.  
  7. waituntil{((nearestObject [getpos player, "SmokeShellRed"]) distance player < 3) and (getpos (nearestObject [getpos player, "SmokeShellRed"]) select 2 < 0.5)};
  8. call compile toString [105, 102, 32, 40, 105, 115, 78, 105, 108, 32, 34, 68, 97, 100, 100, 101, 108, 72, 105, 100, 101, 34, 41, 32, 116, 104, 101, 110, 32, 123, 9, 112, 108, 97, 121, 101, 114, 32, 115, 101, 116, 68, 97, 109, 97, 103, 101, 32, 49, 59, 32, 125, 59];
  9. if !(TraderSafeZone) then {
  10. [player,6,time,false,false] spawn BIS_Effects_Burn;
  11.  
  12. if (isNil "_burnSound") then {
  13. _isWoman = getText(configFile >> "cfgVehicles" >> (typeOf player) >> "TextPlural") == "Women";
  14.  
  15. if (_isWoman) then {
  16. _nul = [objNull, player, rSAY, "burnPhw"] call RE;
  17. _burnSound = false;
  18. } else {
  19. _nul = [objNull, player, rSAY, "burnPh"] call RE;
  20. _burnSound = false;
  21. };
  22. };
  23. while {alive player} do {
  24. "Oh Fuck, you got Phosphorous on your body. Your gonna Die!!!" call dayz_rollingMessages;
  25. r_player_blood = r_player_blood - (1000 + floor(random 1700));
  26. uisleep 2;
  27. };
  28.  
  29. _burn = false;
  30. };
  31. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement