• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Is this impossible to make?

Status
Not open for further replies.
Level 16
Joined
Oct 30, 2004
Messages
1,277
My problem is that i want an event to be removed from a trigger while im playing the map. I'll explain, example: there is a trigger that has an event "every 1 sec of game time". When i type in game: -remove ,i want the event from the trigger to be removed, so it wouldnt be executed every 1 sec. And i cant put it "trigger - turn off trigger" because i still use the trigger but not just every 1 sec.

I came to the conclusion its impossible to make, but i dont know every detail about world editor so worth a shot to ask if anyone would know how to make that?
 
Level 3
Joined
Nov 21, 2004
Messages
73
I don't believe you can remove an event from a trigger, but, there is another way you could do things. When the person types -remove turn off the trigger that goes off every second and turn on another trigger that has the same conditions and actions, but just without that event. So it's essetionally removing the event but in a much more roundabout way.
 
Level 8
Joined
Jul 28, 2004
Messages
258
Mini-Me said:
My problem is that i want an event to be removed from a trigger while im playing the map. I'll explain, example: there is a trigger that has an event "every 1 sec of game time". When i type in game: -remove ,i want the event from the trigger to be removed, so it wouldnt be executed every 1 sec. And i cant put it "trigger - turn off trigger" because i still use the trigger but not just every 1 sec.

Code:
Trigger A
event-every 1 sec
action-run Trigger B

Code:
Trigger B
event-ur events without "every 1 sec" event
action-ur actions go here

Code:
Trigger C
event-player types -remove
action-turn off Trigger A
 
Status
Not open for further replies.
Top