Amon_PRC8/_module/nss/vaxtrigger.nss

8 lines
281 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
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));
}