HUD objective icon not appearing
Posted: Mon Oct 26, 2015 8:48 pm
The map icon is appearing, but not the hud yellow arrow icon. Here's the section of my script:
I pulled the values for MapAddEntityMarker straight from the stock geo script. The objective is a goto, so I attached the marker to a crate ("crate_standin"). I've commented out the other OnStart stuff just so I can focus on getting the arrow to show up.
Code: Select all
Objective1.OnStart = function(self)
ScriptCB_EnableCommandPostVO(0)
--Objective1.CAM_CP4Goal1 = AddAIGoal(ATT, "Defend", 100, "CAM_CP4")
--Objective1.CAM_CP4Goal2 = AddAIGoal(DEF, "Defend", 20, "CAM_CP4")
MapAddEntityMarker("crate_standin", "hud_objective_icon", 3.0, 1, "YELLOW", true)
end