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