14 lines
317 B
Plaintext
14 lines
317 B
Plaintext
#include "NW_I0_GENERIC"
|
|
void main()
|
|
{
|
|
object oDancer = GetObjectByTag("stripper");
|
|
object oTriggerer = GetEnteringObject();
|
|
|
|
if (GetIsPC(oTriggerer))
|
|
{
|
|
AssignCommand(oDancer,ClearAllActions());
|
|
AssignCommand(oDancer, SpeakOneLinerConversation("Hey get off the stage!"));
|
|
AssignCommand(oDancer,WalkWayPoints());
|
|
}
|
|
}
|