HoS_PRC8/_mod/_module/nss/wizard_warning.nss

9 lines
330 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
///// 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);
}