Guest User

Untitled

a guest
Jun 11th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /*
  2. File: fn_medicRequest.sqf
  3. Author: Bryan "Tonic" Boardwine
  4.  
  5. Description:
  6. Notifies the medics that someone has requested emergency and prompts them
  7. if they want to take the request or not.
  8. */
  9. params [
  10. ["_caller",objNull,[objNull]],
  11. ["_callerName","Unknown Player",[""]]
  12. ];
  13.  
  14. if (isNull _caller) exitWith {}; //Bad data
  15.  
  16. ["MedicalRequestEmerg",[format [localize "STR_Medic_Request",_callerName]]] call BIS_fnc_showNotification;
Add Comment
Please, Sign In to add comment