Jump to content

Search the Community

Showing results for tags 'player markers'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • Mercurious Brotherhood +2347063372861's +2347063372861>> I WANT TO JOIN OCCULT FOR MONEY RITUAL
  • 123betcasino01's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. Just a code snippet to display continually updating map markers for all units and uav's on the player's side. A result of me messing about with the functionality of the select command. If a unit is in a vehicle, the vehicle's driver (or the first player in the vehicle) followed by the crew count will be shown. For example "HallyG + 3". First argument toggles whether or not marker should be displayed for AI. Default behaviour, only show AI markers in singleplayer. Marker colour changes according to the player's side; The side used is the player's starting. http://imgur.com/a/LTgbk /* Author: HallyG Displays map markers for all friendly units on the map. Argument(s): 0: Show AI: <BOOLEAN> (default: Show AI in singleplayer only) Returns: <NOTHING> Example: [true] spawn FUNCTIONNAME; [true] execVM SCRIPTLOCATION; __________________________________________________________________*/ if (isDedicated || missionNamespace getVariable ["HGF_unitMarkers_running", false]) exitWith {}; HGF_unitMarkers_running = true; params [ ["_showAI", !isMultiplayer, [false]] ]; private _fnc_updtMkr = { params ["_marker", "_pos", "_dir", "_type", "_name"]; _marker setMarkerPosLocal _pos; _marker setMarkerDirLocal _dir; _marker setMarkerTypeLocal _type; _marker setMarkerTextLocal _name; }; private _markers = []; private _units = [[],[]]; private _colour = [playerSide, true] call BIS_fnc_sideColor; while {true} do { allUnitsUav select { if (isUAVConnected _x) then { (_units select 1) pushBackUnique _x; true }; }; allUnits select { if (isPlayer _x || _showAI) then { if (side _x isEqualto playerSide) then { private _unit = _x; if (({{_x isEqualTo _unit} count crew _x > 0} count allUnitsUav) isEqualTo 0) then { (_units select 0) pushBackUnique _x; true }; }; }; }; if (visibleGPS || visibleMap) then { { private _marker = format ["Unit%1", _x]; private _veh = {isPlayer _x || _showAI} count crew vehicle _x; if !(_marker in _markers) then { _markers pushBack (createMarkerLocal [_marker, visiblePositionASL _x]); _marker setMarkerAlphaLocal 0.75; _marker setMarkerSizeLocal [0.8, 0.8]; _marker setMarkerColorLocal _colour; }; [ [ _marker, (visiblePositionASL _x), (getDirVisual _x), [ ["Empty", "b_motor_inf"] select ((((crew vehicle _x) select {isPlayer _x || _showAI}) select 0) isEqualTo _x), "mil_triangle" ] select (isNull objectParent _x || {(objectParent _x isKindOf "ParachuteBase")}), [ format ["%1: %2 %3", getText (configFile >> "cfgVehicles" >> typeOf vehicle _x >> "displayname"), name _x, format [["+%1",""] select (_veh < 2), _veh -1]], name _x ] select (isNull objectParent _x || {(objectParent _x isKindOf "ParachuteBase")}) ], [ _marker, (visiblePositionASL _x), 0, "Empty", name _x ] ] select !(alive _x) call _fnc_updtMkr; if !(alive _x) then { (_units select 0) set [_forEachIndex, objNull] }; } forEach ((_units select 0) select {!isNull _x}); { private _unit = (uavControl _x) select 0; if (isPlayer _unit || _showAI) then { if (side _unit isEqualto playerSide) then { private _marker = format ["Uav%1", _x]; if !(_marker in _markers) then { _markers pushBack (createMarkerLocal [_marker, visiblePositionASL _x]); _marker setMarkerAlphaLocal 0.75; _marker setMarkerSizeLocal [0.8, 0.8]; _marker setMarkerColorLocal _colour; }; [ [ _marker, (visiblePositionASL _x), (getDirVisual _x), "b_uav", format ["%1: %2", getText (configFile >> "cfgVehicles" >> typeOf vehicle _x >> "displayName"), name _unit] ], [ _marker, (visiblePositionASL _x), (getDirVisual _x), "Empty", //"KIA" format ["%1: %2", getText (configFile >> "cfgVehicles" >> typeOf vehicle _x >> "displayName"), name _unit] ] ] select !(alive _x) call _fnc_updtMkr; if !(alive _x) then { (_units select 1) set [_forEachIndex, objNull] }; }; }; } forEach ((_units select 1) select {!isNull _x}); } else { {deleteMarkerLocal _x; true} count _markers; _markers = []; }; uiSleep 0.025; }; I guess, to improve this further, I could use the map mission event handler instead of a looped if then statement.
×