9 lines
284 B
Plaintext
9 lines
284 B
Plaintext
void main()
|
|
{
|
|
object oGun = GetNearestObjectByTag("ZEP_CANNON002");
|
|
object oGuard = GetNearestObjectByTag("PaerunGuard");
|
|
AssignCommand(oGuard,ActionSpeakString("FIRE!", TALKVOLUME_TALK));
|
|
ExecuteScript("zep_onoff", oGun);
|
|
DelayCommand(1.0, ExecuteScript("killself", OBJECT_SELF));
|
|
}
|