Advertisement
Guest User

Untitled

a guest
Jul 14th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.56 KB | None | 0 0
  1. private["_target","_message"];  
  2.  
  3. _target = cursorTarget;  
  4.  
  5. if(!license_civ_taxilicense) exitWith  
  6. {  
  7.     titleText ["Du hast die Taxi Lizenz nicht", "PLAIN"];
  8. };  
  9.  
  10. if( isNull _target) then {_target = player;};  
  11.  
  12. if( !(_target isKindOf "Man") ) then {_target = player;};  
  13.  
  14. if( !(alive _target) ) then {_target = player;};  
  15.  
  16. _message = format["<img size='10' color='#FFFFFF' image='core\papiere\scheine\taxi.paa'/><br/><br/><t size='2.5'>%1</t><br/><t size='1'>Taxi Lizenz</t>", name player];  
  17.  
  18. [player, _message] remoteExec ["life_fnc_frame",_target];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement