Spellpack D.V.D Passive Spells

D.V.D

Make a wish
Reaction score
73
Hey guys, i made some passive spells for fun. First one is from my tutorial Passive Mirror Image. Second one is passive explosion. Codes are below and please give me credit if you use these in your map! Enjoy :)!

Passive Mirror Image
Code:
Passive Mirror Image
    Events
        Unit - A unit Is attacked
    Conditions
    Actions
        Set Caster = (Triggering unit)
        Set Point[0] = (Position of Caster)
        Set Player = (Owner of Caster)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Level of Passive Mirror Image for Caster) Equal to 1
            Then - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Random integer number between 1 and 100) Less than or equal to 10
                    Then - Actions
                        Unit - Create 1 Dummy for Player at Point[0] facing Point[0]
                        Set Dummy = (Last created unit)
                        Unit - Add Inventory (Hero) to Dummy
                        Hero - Create Wand of Illusion and give it to Dummy
                        Set Item = (Last created item)
                        Hero - Order Dummy to use Item on Caster
                        Unit - Add a 1.00 second Generic expiration timer to Dummy
                    Else - Actions
            Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of Passive Mirror Image for Caster) Equal to 2
                    Then - Actions
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Random integer number between 1 and 100) Less than or equal to 12
                            Then - Actions
                                Unit - Create 1 Dummy for Player at Point[0] facing Point[0]
                                Set Dummy = (Last created unit)
                                Unit - Add Inventory (Hero) to Dummy
                                Hero - Create Wand of Illusion and give it to Dummy
                                Set Item = (Last created item)
                                Hero - Order Dummy to use Item on Caster
                                Unit - Add a 1.00 second Generic expiration timer to Dummy
                            Else - Actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of Passive Mirror Image for Caster) Equal to 3
                    Then - Actions
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Random integer number between 1 and 100) Less than or equal to 15
                            Then - Actions
                                Unit - Create 1 Dummy for Player at Point[0] facing Point[0]
                                Set Dummy = (Last created unit)
                                Unit - Add Inventory (Hero) to Dummy
                                Hero - Create Wand of Illusion and give it to Dummy
                                Set Item = (Last created item)
                                Hero - Order Dummy to use Item on Caster
                                Unit - Add a 1.00 second Generic expiration timer to Dummy
                            Else - Actions
                    Else - Actions
        Custom script:   call RemoveLocation (udg_Point[0])
        Custom script:   set udg_Caster = null
        Custom script:   set udg_Dummy = null
        Custom script:   set udg_Target = null

Passive Explosion
Code:
Passive Explosion
    Events
        Unit - A unit Is attacked
    Conditions
    Actions
        Set Caster = (Triggering unit)
        Set Target = (Attacking unit)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Level of Passive Explosion for Caster) Equal to 1
            Then - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Random integer number between 1 and 100) Less than or equal to 12
                    Then - Actions
                        Special Effect - Create a special effect at (Position of (Attacking unit)) using Objects\Spawnmodels\Human\FragmentationShards\FragBoomSpawn.mdl
                        Set SpecialEffect = (Last created special effect)
                        Unit - Cause Caster to damage Target, dealing 50.00 damage of attack type Spells and damage type Normal
                        Special Effect - Destroy SpecialEffect
                    Else - Actions
            Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of Passive Explosion for Caster) Equal to 2
                    Then - Actions
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Random integer number between 1 and 100) Less than or equal to 15
                            Then - Actions
                                Special Effect - Create a special effect at (Position of (Attacking unit)) using Objects\Spawnmodels\Human\FragmentationShards\FragBoomSpawn.mdl
                                Set SpecialEffect = (Last created special effect)
                                Unit - Cause Caster to damage Target, dealing 60.00 damage of attack type Spells and damage type Normal
                                Special Effect - Destroy SpecialEffect
                            Else - Actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of Passive Explosion for (Triggering unit)) Equal to 3
                    Then - Actions
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Random integer number between 1 and 100) Less than or equal to 20
                            Then - Actions
                                Special Effect - Create a special effect at (Position of (Attacking unit)) using Objects\Spawnmodels\Human\FragmentationShards\FragBoomSpawn.mdl
                                Set SpecialEffect = (Last created special effect)
                                Unit - Cause Caster to damage Target, dealing 80.00 damage of attack type Spells and damage type Normal
                                Special Effect - Destroy SpecialEffect
                            Else - Actions
                    Else - Actions
        Custom script:   set udg_Caster = null
        Custom script:   set udg_Target = null
 

Jagan

New Member
Reaction score
30
Screenshots? And your code is not efficient. You're setting ifs for every level of the ability instead of setting them accordingly in one.
 

Kazuga

Let the game begin...
Reaction score
110
The spells are bad coded and extremely simple. You should just use a loop so it works for all levels, and demanding credits for a spell is a bit rude.

How you can improve the spells:
Add special effects, it gives more eye candy.
Make it more unique, these spells can be found in other maps as well, try to add something more to the spells. For instance, add extra attack/move speed for x seconds to the passive mirror image.
 

D.V.D

Make a wish
Reaction score
73
First of all, im not demanding credit, second of all, I'll make them better and I'll make more during the weekend when I have time.
 

Sevion

The DIY Ninja
Reaction score
413
"please give me credit if you use these in your map!"

Yes you are.

You should try learning JASS and optimizing it.

The spells seem a little bland IMHO.
 

Jagan

New Member
Reaction score
30
Oh and I forgot to mention the Positions of Attacking Units in your Passive Explosion trigger leaks. Clean 'em up.
 

Flare

Stops copies me!
Reaction score
662
You could do alot of improvement for the If's (taking Mirror Image as the example) - instead of 3 if's, you could do
Code:
Random integer between 1 and 100 is less than or equal to R2I (7.5 + 2.5x I2R (Level of Ability for Unit))

(R2I = Real 2 Integer, I2R = Integer 2 Real)
That way, you'd have 10/12.5/15% chance, but when the R2I conversion is done, it'll end up as 10/12/15, which is what you have there

There's no need to null globals

And the leaks, they must be sorted

"please give me credit if you use these in your map!"

Yes you are.
Sounds more like he is just requesting credits (nothing very demanding about the way he said it IMO)
 

D.V.D

Make a wish
Reaction score
73
Ok, I will make the spells better. its just a start. Im going to keep improving. Also, I can't attach another file by editing the post. it doesn't let me. Suggestions on what to do will help. And like I said before, I'm going to make the abilities better once the weekend comes because of school.
 

Sevion

The DIY Ninja
Reaction score
413
Does rep really matter that much? If it does to you, all you have to do is be helpful and follow the rules and rep will come with time.
 

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
I used to have really low rep, even at 1k posts. But after helping I'm up to 203. All you have to do is help. :D
 

D.V.D

Make a wish
Reaction score
73
I do and it pisses me off when romek minuses my rep for replying to coments on my post 3 times and he thinks there bumps.
 

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
All right, all right... We're getting off track here. Can we go back to the topic this thread was made for. :D

Your skills as far as functioning are fine, but provide leakless examples...
 

BRUTAL

I'm working
Reaction score
118
try fixing up the tooltips
why do you think theres different tooltips for each level in object editor
dont put level 1-w.e level 2 w.e all the same tooltips.
 

Charapanga

New Member
Reaction score
46
Hey!

I like the spells and if you let me i will use them in my upcoming map, oh and A Missle art for the Passive explosion would be great! You get +rep my friend :)

Chara
 

D.V.D

Make a wish
Reaction score
73
Thanks for the rep. I don`t mind if you use the spells and Im going to make them better. The mirror image will cast the spells that the hero casts and the explosion will have a missle art and made bigger.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top