#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());
}
}