player2_dz

Untitled

Jul 21st, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.04 KB | None | 0 0
  1. if (_method == "pvp") then {
  2.     _methodStr = "it appears he died from a gun shot wound...";
  3. };
  4. if (_method == "zombie") then {
  5.     _methodStr = "it appears he died to zombies...";
  6. };
  7. if (_method == "suicide") then {
  8.     _methodStr = "it appears he by suicide...";
  9. };
  10. if (_method == "vehsuicide") then {
  11.     _methodStr = "it appears he by suicide in a vehicle...";
  12. };
  13. if (_method == "unknown") then {
  14.     _methodStr = "I can't tell how he died...";
  15. };
  16.  
  17. _bodyTempText = "The body is still very fresh.";
  18.  
  19. if (_timeDiff > 120) then {
  20.     _bodyTempText = "The body is still fresh.";
  21. };
  22. if (_timeDiff > 180) then {
  23.     _bodyTempText = "The body is still very warm.";
  24. };
  25. if (_timeDiff > 240) then {
  26.     _bodyTempText = "The body is still warm.";
  27. };
  28. if (_timeDiff > 300) then {
  29.     _bodyTempText = "The body is almost warm.";
  30. };
  31. if (_timeDiff > 420) then {
  32.     _bodyTempText = "The body is starting to get cold.";
  33. };
  34. if (_timeDiff > 600) then {
  35.     _bodyTempText = "The body is almost cold.";
  36. };
  37. if (_timeDiff > 1200) then {
  38.     _bodyTempText = "The body is cold.";
  39. };
Advertisement
Add Comment
Please, Sign In to add comment