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

xDsss Spell pack (0.1)

This bundle is marked as useful / simple. Simplicity is bliss, low effort and/or may contain minor bugs.
there are some spells of me... just simple and free to edit if you want to =D
I fixed all what i have seen so enjoy or shit on it xP

Keywords:
Death, dark, energy, ball, GUI, easy
Contents

SpellPack of xDsss (Map)

Reviews
18:02, 5th Dec 2009 The_Reborn_Devil: An in-game screenshot is required for this spell to be approved. Status: Rejected until updated Rating: N/A Contact me or another mod once you've added an in-game screenshot to get the spell reviewed.

Moderator

M

Moderator

18:02, 5th Dec 2009
The_Reborn_Devil:
An in-game screenshot is required for this spell to be approved.

Status: Rejected until updated
Rating: N/A

Contact me or another mod once you've added an in-game screenshot to get the spell reviewed.
 
Level 37
Joined
Mar 6, 2006
Messages
9,240
Doomwalk:

  • (Real((Level of DoomWalk for Caster))) Equal to 1.00
Use integer comparison.

  • Unit - Create 1 Dummy(Lightning Level 1) for Player 1 (Red) at (Position of Caster) facing (Facing of Caster) degrees
Create the unit for owner of triggering unit. Position of caster causes a memory leak, as do all "position of something". Fix all those.

  • Unit - Add a 1.99 second Generic expiration timer to Dummy[1]
Why is that value different than on lvl 1 and lvl 3?

  • Set Dummy[1] = (Last created unit)
  • Unit - Move Dummy[1] instantly to (Position of Caster)
  • Unit - Order Dummy[1] to Attack (Random unit from (Units within 1200.00 of (Position of Dummy[1])))
  • Unit - Add a 1.50 second Generic expiration timer to Dummy[1]
  • Set Dummy[1] = No unit
Since these lines are the same in every branch, move them to at the end of the trigger.

  • Unit - Order Dummy[1] to Attack (Random unit from (Units within 1200.00 of (Position of Dummy[1])))
Unit group leak.

Shadow Death:

The wait is bad, there's unit group leak, and the call RemoveLocation should be at then end of the trigger.

Shadow death fix:

It runs all the time, turn it on/off when needed. It also creates memory leaks.

Shadow death fix 2:

Target equal to (Dying Unit) = fail. You need to use indexes or hashtable or something.

Energy balls:

Wait is still bad. Location leak removing calls are in wrong place.

Energy balls loop:

Runs all the time, turn on/off when needed. Creates shitload of memory lekas.

Overall the tooltips are not that good.

"You will hide you"
"20sec"
"Cooldown"
"emeny"
"the skull explode"
"when the skull reached"
"Lasts 15 Sec"
"60sec Cooldown"

Bad screenshot and terrible description.


Verdict: F as in fail. I don't want to sound too harsh, but these spell are not good in their current state. Fix the things I mentioned and I'll have a look at them again for more possible fixes.
 
Level 1
Joined
Feb 16, 2009
Messages
3
If you use doomwalk while having the energy balls on they stop moving...
 
Top