Alangara_PRC8/_module/nss/v_name_spawn.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

13 lines
556 B
Plaintext

void main()
{
//Gimp the listener for less chance of it going nuts
ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY),OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectCutsceneParalyze(),OBJECT_SELF);
//make sure it's listening. Anything after rename (not case sensitive)
//will be picked up, and passed to the container if the shouter is the
//PC currently permitted at the station
SetListening(OBJECT_SELF,TRUE);
SetListenPattern(OBJECT_SELF,"Rename **",2001);
}