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

Problem with same ability based spells

Status
Not open for further replies.
Level 3
Joined
Jul 20, 2008
Messages
41
I just noticed this annoying thing. Lets say you have two spells based on the same ability, for example acid bomb, and you cast them on the same target. What you'll get is the effect of the last spell that was casted but with duration equal to the longer one of the two spells. So you can first cast a spell that has a long duration but little damage and afterwards cast a spell with small duration but a lot of damage. The result will be a spell with a lot of damage and long duration...Any solutions on this? :sad:
 
Level 3
Joined
Jul 20, 2008
Messages
41
Its not so easy to base every spell on other spell especially when you have many spells. I hate blizzard :thumbs_down:
Any other ideas?
 
Level 16
Joined
Jul 21, 2008
Messages
1,121
Base your abilities on:

1. Acid Bomb
2. Negative Rejuvenation
3. Soul Burn (also adds silince effect)
3. Channel (with differend ''Base Order ID'')

Learn more about channel here.

If you base it on channel, create dummy unit that casts ''Acid Bomb'' Spell on target. Don't forgot to change buff on Acid Bomb.

  • Acid Bomb Fix
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to <Acid Bomb (Channel)>
    • Actions
      • Set TempPoint = (Position of (Triggering unit))
      • Unit - Create 1 <Dummy> for (Owner of (Triggering unit)) at TempPoint facing Default building facing degrees
      • Custom script: call RemoveLocation(udg_TempPoint)
      • Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
      • Unit - Order (Last created unit) to Neutral Alchemist - Acid Bomb (Target unit of ability being cast)
 
Status
Not open for further replies.
Top