Advertisement
Veticus

Arma 3* Object Finder {Public}

May 11th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. // Created by νєтι¢υѕ. This is a public source to anyone who wishes to have it
  2. // This script allows you to face any object/vehicle/unit in-game and get their class name.
  3. //------------------------------------------------------------------------------------------------------------------------------
  4. // First create a .sqf file called "objectfinder.sqf". And place the script below into it.
  5. //------------------------------------------------------------------------------------------------------------------------------
  6. _ObjectSelect = cursorTarget;
  7. if (alive player) then {
  8. _Object = typeOf (vehicle _ObjectSelect);
  9. hintSilent parseText format ["<t color='#2E9AFE' size='1.3'>Object: </t><t color='#FFFFFF' size='1.3'>%1</t>", _Object];
  10. };
  11. //------------------------------------------------------------------------------------------------------------------------------
  12. // This is what you add to you "init.sqf" or whatever addAction array to execute the script above.
  13. //------------------------------------------------------------------------------------------------------------------------------
  14. player addAction ["<t size='1'>[Find Object]</t>", "objectfinder.sqf", [], 1, false, true, 'true'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement