Quote: --- Original message by: OrangeJuice
are there any object lists besides (players)? And if so, how do I find out the names of them ?
(ai_actors <ai>)
You can also use global variables to create your own, although it'll only have one object in it.
Quote: --- Original message by: OrangeJuice
Ohh! ! And is there a way to get the unit names (or just interact. period.) with un-named objects, like the cheat_spawn_warthog warthog ?
They don't have names, so you most certainly cannot obtain a name that doesn't exist. With stock halo, there isn't anything you can do about those objects. With Opensauce, you can use
(player_data_get_object <short> "nearest_object")
to return any object that has an interaction prompt on that player's screen (vehicles, devices, weapons), as well as store that in global variables. You can store it in any object type variable, although none of the object_name type variables (since its not a name; its an actual object).