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

Purging Ray - Spell

This bundle is marked as awaiting update. A staff member has requested changes to it before it can be approved.
I am not good at this but.
Please leave some candies for me.

(This ability is kinda alike with Karma's W which is from League of Legends.)

= v0.9 =
Contents

Purging Ray - Spell (Map)

Reviews
MyPad
Spell Review: Notes: The spell is not multi-instanceable. This means that multiple units cannot cast the spell at the same time, as it might bug out. (Multi-instanceability is required for a spell submitted here.) In trigger PR3, a wait action...

Spell Review:

Notes:

  • The spell is not multi-instanceable. This means that multiple units cannot cast the spell at the same time, as it might bug out. (Multi-instanceability is required for a spell submitted here.)

  • In trigger PR3, a wait action has been spotted. This can cause clients to desync (as invoking a wait action is asynchronous). The wait action must be omitted from the trigger.

  • In trigger PR2, a direct trigger execute to PR3 would suffice, instead of having to rely on a real event. (The real event in this case creates unnecessary overhead)
    • In addition, it appears that the spell leaks a group handle in the if-then statement.
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (PurgingRay_Target is in (Units within 700.00 of PurgingRay_TempLoc01)) Equal to True
      This can be optimized further, not requiring the creation of a group.

    • In most cases, the location handles PurgingRay__TempLoc00 and PurgingRay__TempLoc01 are not cleaned up. This can be optimized by adding RemoveLocation at the appropriate section/s.

  • Configurability of the spell would be greatly appreciated. Such configurable variables are the following:

    • Damage type
    • Attack type
    • Intelligence point percentage
    • Damage delay
    • Link distance

Suggestions:

  • Try adding an effect to the target when the link breaks. (This can make the spell appear a bit more pleasing to the eye).

Status:

  • Awaiting Update
 
Last edited:
Top