Advertisement
Guest User

Untitled

a guest
Jun 17th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. (findDisplay 12 displayCtrl 51) ctrlAddEventHandler ["Draw", {
  2. if (isNull (findDisplay 12 displayCtrl 51)) exitWith {};
  3.  
  4. icon = getText (configFile >> "CfgVehicles" >> (typeOf player) >> "icon");
  5. title = "Armed Transport";
  6. color = [1.0, 0.20, 0.20, 0.9];
  7.  
  8. this select 0 drawIcon [
  9. icon,
  10. color,
  11. position player,
  12. 21,
  13. 21,
  14. direction player,
  15. title,
  16. 1,
  17. 0.030,
  18. "TahomaB",
  19. "right"
  20. ];
  21. }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement