9 lines
330 B
Plaintext
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);
|
||
|
}
|