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

Splash Damage Help

Status
Not open for further replies.
Level 2
Joined
Sep 25, 2007
Messages
14
I made a Splash Tower which has a poison ability but I got a problem that it's ability won't work unless I remove the splash damage. And also I want to increase the level of the ability base on how many times I upgrade my tower.
i.e My poison tower is upgraded 3 times so it's ability would be level 3 also.
Thanks!
 
Level 2
Joined
Jun 2, 2008
Messages
4
If im not wrong the "Artillery" attack type prevents you from using most attack add-on abilities.(Posion etc.)

Try changing the attack type to "Missle Splash"
Or make a tower with "Missile" Type attack and give it an "Orb of Fire" ability.
the second method may not stack with Poison though.


For your second question.
Simply copy n paste the Posion skill 3 times, and give each tower the respective one.

Alternatively you can give the poison 3 levels and level it up via trigger.
 
Level 13
Joined
Nov 4, 2006
Messages
1,239
another way would be to use a trigger
  • Events
    • a Unit is being attacked
  • Conditions
    • unit type of attacking unit equal to poison tower level1
  • Actions
    • add ability to attacked unit
    • wait x seconds
    • remove ability from unit
the ability could be unholy aura with negative effects and no range/changed buffs etc., or any other you like
 
Level 11
Joined
Dec 31, 2007
Messages
780
they wont be taking damage per second unless you make a periodic trigger like

  • Event
    • Time - Every 1 seconds of game time
    • Conditions
    • Actions
      • Unit Group - pick every unit in playable map area matching ((matching unit has buff "tower poison") equal to true)
        • Loop
          • Order (Your tower) to damage picked unit for (the damage of the level of your poison) damage of attak type whatever and damage type whatever
 
Status
Not open for further replies.
Top