HoS_PRC8/_mod/_module/nss/wizard_warning.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

9 lines
330 B
Plaintext

///// Real Time Strategy - NWN - Wizard Warning
void main()
{
object oPC=GetEnteringObject();
object oWiz=GetNearestObjectByTag("Wizard",oPC);
AssignCommand(oWiz,ActionSpeakString("I wouldn't go up there if I were you. That is my private area and I'd be forced to stop you."));
PlayVoiceChat(VOICE_CHAT_HOLD,oWiz);
}