Home   Help Search Login Register  

Author Topic: Ending Triggers  (Read 1463 times)

0 Members and 2 Guests are viewing this topic.

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Ending Triggers
« on: 21 Sep 2005, 05:32:49 »
I need to make a trigger for when all the Zombies are killed. I tried using east at first, but the mission ended as soon as it loaded. Any ideas?

The Zombie groups are in "East", but they are actually civilians. Also, If a general trigger can't be done, maybe a specific trigger perhaps?

Trash Can Man

Uldics

  • Guest
Re:Ending Triggers
« Reply #1 on: 21 Sep 2005, 07:10:02 »
Havent you answered it yourself - civilians? That should be possible to set a trigger to civilians, unless I have missed something in all those years.

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #2 on: 21 Sep 2005, 19:21:42 »
you don't understand. They are civilian zombies, but they are located in groups by pressing -East- Zombies. That's what is so troubling.

Trash Can Man

bored_onion

  • Guest
Re:Ending Triggers
« Reply #3 on: 21 Sep 2005, 19:42:01 »
are they in a group? if they are then you can syncrhonise them with the trigger. if they aren't, then use:

Code: [Select]
zombie in thislist OR zombie2 in thislist OR zombie3 in thislist
as the condition for the trigger. (obviously change the name of your zombie etc).
« Last Edit: 21 Sep 2005, 19:42:18 by bored_onion »

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #4 on: 21 Sep 2005, 20:15:13 »
are they in a group? if they are then you can syncrhonise them with the trigger. if they aren't, then use:

Code: [Select]
zombie in thislist OR zombie2 in thislist OR zombie3 in thislist
as the condition for the trigger. (obviously change the name of your zombie etc).

what goes in the condition field if they are a group of Zombies?

Kyle Sarnik

  • Guest
Re:Ending Triggers
« Reply #5 on: 21 Sep 2005, 21:00:42 »
I need to make a trigger for when all the Zombies are killed. I tried using east at first, but the mission ended as soon as it loaded. Any ideas?

The Zombie groups are in "East", but they are actually civilians. Also, If a general trigger can't be done, maybe a specific trigger perhaps?

Trash Can Man

Did you set the trigger to "Not Present" rather than the default "Present" setting?

bored_onion

  • Guest
Re:Ending Triggers
« Reply #6 on: 21 Sep 2005, 21:06:44 »
Quote
what goes in the condition field if they are a group of Zombies?

if its simply one group, then group (F2) the group leader with the trigger. this will give options in the activation drop down menu. choose "Any Group Member" and then whenever a zombie from that group hits the trigger it will activate. the condition field should read simply "this" like any ordinary trigger would. of course, if you've got more than one zombie group then its best to use the other way.

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #7 on: 21 Sep 2005, 21:30:54 »
Did you set the trigger to "Not Present" rather than the default "Present" setting?

Yes I did that but still didn't end   :(

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #8 on: 21 Sep 2005, 21:43:01 »
if its simply one group, then group (F2) the group leader with the trigger. this will give options in the activation drop down menu. choose "Any Group Member" and then whenever a zombie from that group hits the trigger it will activate. the condition field should read simply "this" like any ordinary trigger would. of course, if you've got more than one zombie group then its best to use the other way.

I'm sorry.... I still don't quite follow what you are saying.  ??? this is how my mission is:

a group of american soldiers are trapped in a military compound and there are at least 12 groups of Zombies scattered throughout the area.

What I would like to see is when the furthermost group is dead, the mission will end.

bored_onion

  • Guest
Re:Ending Triggers
« Reply #9 on: 21 Sep 2005, 22:30:08 »
right, gotcha - i was on the wrong track

Code: [Select]
!alive group lastzombieleader

this will, i think, check if the last zombie group is alive if you put it in the condition field of the end trigger. the name "lastzombieleader" refers to the name of the leader of the last zombie group. im not sure if the group command works with the alive command but give it a go.
« Last Edit: 21 Sep 2005, 22:31:55 by bored_onion »

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #10 on: 22 Sep 2005, 18:16:52 »
do I need to name the zombie leader in order for this to work?

nevermind, It doesn't work. Maybe, in order for it to end it might have to be scripted. I have no idea.  ???   ???
« Last Edit: 22 Sep 2005, 18:36:59 by Trash Can Man »

Offline Pilot

  • Contributing Member
  • **
Re:Ending Triggers
« Reply #11 on: 22 Sep 2005, 19:42:08 »
Ok, here is what you do.
1. Create a trigger, set the size to x 5000   y 5000
2. Select Groups (F2) and group the trigger to any member of the zombie group
3. Double click the trigger and set it to Any Group Member Not Present
4. Select the end type you want.

Now the mission will end when that group is killed

-Student Pilot

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #12 on: 24 Sep 2005, 01:05:38 »
Ok, here is what you do.
1. Create a trigger, set the size to x 5000   y 5000
2. Select Groups (F2) and group the trigger to any member of the zombie group
3. Double click the trigger and set it to Any Group Member Not Present
4. Select the end type you want.

Now the mission will end when that group is killed

-Student Pilot


how exactly do you "group" a trigger to a group of zombies? explain please.  
I tried to synchronize them but it doesn't work like that.

Offline Planck

  • Honoured
  • Former Staff
  • ****
  • I'm never wrong ....I'm just not always right !
Re:Ending Triggers
« Reply #13 on: 24 Sep 2005, 02:09:46 »
Quote
how exactly do you "group" a trigger to a group of zombies?

Hmmmmmm.......the same way you would group a unit to a group (F2).   ;D


Planck
I know a little about a lot, and a lot about a little.

Offline Trash Can Man

  • Members
  • *
  • We are no longer the knights who say "Ni!"
Re:Ending Triggers
« Reply #14 on: 24 Sep 2005, 02:17:32 »
ok, I think I might have found the problem. I noticed when I read the cpp file, the creator used east, west, civilian. BUT. it appears that that they are all the same. Weird. I want to post that file here but it seemed HUGE to me. So, I guess there is no way to make a mission with zombies. I've emailed the person who created this mod and got no response.  :(  I was hoping that since you guys haved been so helpful in the past, you might come up with a solution.



Trash Can Man