• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Advanced Nova Skill

Status
Not open for further replies.
Level 2
Joined
Sep 14, 2007
Messages
15
I have seen i much maps a nova-like spell. So the caster creates many waves where each of them attacks in other directory like a ring .
Example: like death Nova in TBR 1.32

PLs give an example of triggers or skill

Dennis-pol
 
Level 29
Joined
Jul 29, 2007
Messages
5,174
  • ABC
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to yourAbility
    • Actions
      • Set PointCaster = (Position of (Triggering unit))
      • For each (Integer A) from 1 to 36, do (Actions)
        • Loop - Actions
          • Unit - Create 1 dummyUnit for (Owner of (Triggering unit)) at PointCaster facing Default building facing degrees
          • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
          • Set Point = (PointCaster offset by 100.00 towards ((Real((Integer A))) x 10.00) degrees)
          • Unit - Order (Last created unit) to Orc Tauren Chieftain - Shockwave Point
          • Custom script: call RemoveLocation(udg_Point)
      • Custom script: call RemoveLocation(udg_PointCaster)
 
Last edited:
Level 5
Joined
Aug 23, 2007
Messages
141
Hehe. This post helped me as well. I used to trigger novas by creating a unit at my point offstet by x and y, ordering it to shockwave me, so the wave overshoots, then repeating the entire process a total of 36 times. So that's what the "For every integer" thing is for.
 
Status
Not open for further replies.
Top