• 🏆 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!

Closed vertical iron gate letting units trough...

Status
Not open for further replies.
Level 8
Joined
Mar 2, 2014
Messages
132
At start of the game is my vertical iron gate closed, but when I open and close it with trigger, units can get trough closed gate.... why?

The trigger is just most basic:
  • north1 gate open
    • Events
      • Player - Player 7 (Green) types a chat message containing -open as An exact match
      • Player - Player 6 (Orange) types a chat message containing -open as An exact match
    • Conditions
    • Actions
      • Set Gate1 = (Current life of Iron Gate (Vertical) 0082 <gen>)
      • Set Gate2 = (Current life of Iron Gate (Vertical) 0079 <gen>)
      • Destructible - Open Iron Gate (Vertical) 0082 <gen>
      • Destructible - Open Iron Gate (Vertical) 0079 <gen>
      • Destructible - Set life of Iron Gate (Vertical) 0082 <gen> to Gate1
      • Destructible - Set life of Iron Gate (Vertical) 0079 <gen> to Gate2
  • north1 gate close
    • Events
      • Player - Player 7 (Green) types a chat message containing -close as An exact match
      • Player - Player 6 (Orange) types a chat message containing -close as An exact match
    • Conditions
    • Actions
      • Set Gate1 = (Current life of Iron Gate (Vertical) 0082 <gen>)
      • Set Gate2 = (Current life of Iron Gate (Vertical) 0079 <gen>)
      • Destructible - Close Iron Gate (Vertical) 0082 <gen>
      • Destructible - Close Iron Gate (Vertical) 0079 <gen>
      • Destructible - Set life of Iron Gate (Vertical) 0082 <gen> to Gate1
      • Destructible - Set life of Iron Gate (Vertical) 0079 <gen> to Gate2
And I am not using it in any special way:
three_walls.jpg

And I changed only HP of gate, nothing else!

I am uploading map too, but I belive I did not make anything coliding with gate....

I tried google this issiue and was surprised nobody had this problem yet? :O

Edit:
errm seems this solved it :X
solution.jpg
 

Attachments

  • Battle of Constantinopole 108.w3x
    1 MB · Views: 29
Last edited:
Level 21
Joined
Dec 4, 2007
Messages
1,478
carefully check your events:

  • north2 gate open
    • Events
      • Player - Player 7 (Green) types a chat message containing -open as An exact match
      • Player - Player 6 (Orange) types a chat message containing -open as An exact match
    • Conditions
    • Actions
      • Destructible - Open Iron Gate (Vertical) 0665 <gen>
      • Destructible - Open Iron Gate (Vertical) 0666 <gen>
  • north2 gate close
    • Events
      • Player - Player 7 (Green) types a chat message containing -close as An exact match
      • Player - Player 6 (Orange) types a chat message containing -close as An exact match
    • Conditions
    • Actions
      • Destructible - Close Iron Gate (Vertical) 0665 <gen>
      • Destructible - Close Iron Gate (Vertical) 0666 <gen>
  • south2 gate open
    • Events
      • Player - Player 8 (Pink) types a chat message containing -open as An exact match
      • Player - Player 9 (Gray) types a chat message containing -open as An exact match
    • Conditions
    • Actions
      • Destructible - Open Iron Gate (Vertical) 2153 <gen>
      • Destructible - Open Iron Gate (Vertical) 2137 <gen>
  • south2 gate close
    • Events
      • Player - Player 8 (Pink) types a chat message containing -open as An exact match
      • Player - Player 9 (Gray) types a chat message containing -open as An exact match
    • Conditions
    • Actions
      • Destructible - Close Iron Gate (Vertical) 2153 <gen>
      • Destructible - Close Iron Gate (Vertical) 2137 <gen>
 
Status
Not open for further replies.
Top