I have 2 vehicles, and I want to give the commander of each, through a common script file, the ability to display a hint containing the magazine, weapon, and personel carried in a vehicle, how do I do this ? This is for multiplayer games, and I believe the hint shows to both parties (its only a 2 player script im working on atm).
Here is my AddAction I am using to call it.
CusActView = _Crew1 AddAction["View Inventories", "Inventories.sqs"];
CusActView = _Crew2 AddAction["View Inventories", "Inventories.sqs"];
_Crew1 is the first vehicle commander.
_Crew2 is the second vehicle commander.
Some code along similar lines for a vehicles own weapons and ammo state wouldnt go amiss either, and neither would some formatting advice for Hints, such as can I show more than one at once, if so, how do I do it, and position them ? And can I change the text colour of hints ?
Thanks.