8 lines
281 B
Plaintext
8 lines
281 B
Plaintext
void main()
|
|
{
|
|
location lTarget = GetLocation(OBJECT_SELF);
|
|
object oTarget = (GetNearestObjectByTag("Vax"));
|
|
AssignCommand(oTarget, ActionSpeakString("You are trespassing! Leave now! This is private property!"));
|
|
DelayCommand(4.0, DestroyObject(oTarget));
|
|
}
|