Quote: --- Original message by: EmmanuelCD
1 Supose i want to make an ai encounter (flood) including combat forms and infections, what i want is to place them and go around etc, but not to attack the player (the idea is to make them invisible but to apear in the radar) How is this posible without making them team up with the player?
(ai_disregard <object_list> <boolean>)
They wont care about the existance of any objects or object_lists supplied, so
(ai_disregard (players) true)
No AI will care about the players existence. Another way, would be remove any weapons they have, disable melee or even editing the AI tags.
Quote: --- Original message by: EmmanuelCD
2 its posible to make apear an image only for a moment in the field of view without modifing the fp model?
you can attach the item in question to the persons face for a moment, with two LODs, one of a nulled object, so it can only be viewed at point blank. you can also include it as a portion of the HUD you dont normally use. Depending on what exactly is being shown, you can also make it into a font and display it as a cinematic title, etc.
Quote: --- Original message by: EmmanuelCD
3 Its posible to set an unit or ai to be deathless? like to set the cheat deathless player? i whant to make an ai deathless, even with the cheat one shot kills or meduse of the dev mode on
(object_cannot_take_damage <object_list>)
(set cheat_omnipotent false)
(set cheat_medusa false)
Quote: --- Original message by: EmmanuelCD
4 How do i link a device control to a script?
(device_set_never_appears_locked <device> <boolean>)
(device_get_power <device>)
(device_set_power <device> <real>)
(device_set_position <device> <real>)
(device_get_position <device>)
(device_set_position_immediate <device> <real>)
(device_group_get <device_group>)
(device_group_set <device_group> <real>)
(device_group_set_immediate <device_group> <real>)
(device_one_sided_set <device> <boolean>)
(device_operates_automatically_set <device> <boolean>)
(device_group_change_only_once_more_set <device_group> <boolean>)