Spellpack Firey Wrath, Anti-Magic Magic, Charge & Pull

lh2705

Just another Helper
Reaction score
111
My second spellpack...
Consists of 4 abilities.

1. Firey Wrath - I would say this one is very similiar to DotA's Macropyre from the Twin-Headed Dragon.

kael1ml0.jpg


2. Anti-Magic Magic :p - AoE Magic Immunity & Rejuvenation

kael2gn5.jpg


3. Charge - Stores energy. The energy is released through another spell, dealing more damage if there is more stored energy

kael3lm4.jpg


4. Pull (I've run out of ideas on what to call this skill) - Basic drag/pull skill with damage

kael4hi2.jpg


Notes :
There might be leaks in the Pull trigger, I'm just not sure when to remove them.
Firey Wrath and Pull (and maybe Charge) are not MUI
Anti-Magic Magic Barrier does not affect units who already have the barrier

Give Me some feedback :D :p
 

Attachments

  • TheHelperSpellsSubmission-Kael-lh2705.w3x
    45.6 KB · Views: 963

Tom Jones

N/A
Reaction score
437
I would make these two triggers into one.
Code:
Charge
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        And - All (Conditions) are true
            Conditions
                (Ability being cast) Not equal to Unleash 
                (Unit-type of (Triggering unit)) Equal to Blood Mage
    Actions
        Set Caster = (Triggering unit)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Level of DummyCharge  for Caster) Greater than or equal to 1
            Then - Actions
                Set ChargesStored = (ChargesStored + 1)
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        ChargesStored Greater than ChargeLimit
                    Then - Actions
                        Set ChargesStored = ChargeLimit
                    Else - Actions
            Else - Actions
Code:
ChargesStored
    Events
        Time - Every 0.10 seconds of game time
    Conditions
    Actions
        Unit - Set level of Charge  for Caster to (1 + ChargesStored)
My version.
Code:
Charge
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        And - All (Conditions) are true
            Conditions
                (Ability being cast) Not equal to Unleash 
                (Unit-type of (Triggering unit)) Equal to Blood Mage
    Actions
        Set Caster = (Triggering unit)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ((Level of DummyCharge  for Caster) Greater than 0) and (ChargesStored Not equal to ChargeLimit)
            Then - Actions
                Unit - Set level of Charge  for Caster to (1 + ChargesStored)
                Set ChargesStored = (ChargesStored + 1)
            Else - Actions
Also, if i were you, i would use sphere as the special effects for this spell. I do not like the robotic moving special effect following the caster:) . I like the spell shield/rejev, only thing is that the rejuvination is way to strong. On pull, once again use one trigger. That can easily be done with a loop action. And maybe speed it up a bit.
*Edit*
Code:
call DestroyTextTag()
 

lh2705

Just another Helper
Reaction score
111
Well, I used those because there cant be 5 floating spheres. Anyways apart from that, Is there anything wrong with the triggers??

Anyways, doesn't matter if its too strong, its just a test map :p
 

Darius34

New Member
Reaction score
30
When I saw the Pull for the first time, I thought those numbers were bloodstains...looked sick. :) Nice spellpack by the way, I like the Pull the best, looks the coolest. And I was also thinking you could merge the two buffs in the spell immnuity thing into one.

Your spells are inspiring. :) I feel like making a few new ones myself.
 

lh2705

Just another Helper
Reaction score
111
Ok, I updated the Charge a little, following Tom_Jones's way, But I didn't change much. I made the Charge Effects slower so that you don't see many charges at once if you move..Anyways, I hope there are no bugs and SFilip could approve it :D

P.S. Tom_Jones, that trigger had a tiny problem, the charges stored would be stuck at 1 level below the max charge. I fixed it by swapping these two lines..
Code:
Unit - Set level of Charge  for Caster to (1 + ChargesStored)
Set ChargesStored = (ChargesStored + 1)
And thanks, for the optimization..
 

SFilip

Gone but not forgotten
Reaction score
633
Indexed...sorry for the long wait. :(
 

Ryuu

I am back with Chocolate (:
Reaction score
64
Hey, I wanted to ask a question. For Spell #4, how do I make it so that there is no target, and it pulls all heroes within a 3000 range?
 

PurgeandFire

zxcvmkgdfg
Reaction score
509
These are nice, but not too hard to make, but they are good and effectish. :D

Hey, I wanted to ask a question. For Spell #4, how do I make it so that there is no target, and it pulls all heroes within a 3000 range?

Base it off of an ability where there is no target, preferably channel and set it to "Instant (No Target)" then add the effects. Then, pick every unit within 3000 range, and then do an if/then/else to check if it is a hero (Boolean | Unit Classification (I think ))... It isn't too hard, but may take a while. :D
[*NOTE*: The unit group pick leaks, so you might want to set it as a variable, use it, then at the end of the trigger, delete it. ;) )
 

Hatebreeder

So many apples
Reaction score
380
I have noticed that the pillar doent resolve at level 3, Just the Burning ground is shown as it is being cast.... Anyway, i love that "Pull" Spell, just the animation of the healing beam isnt that nice :/ All in all the spell pack is really nice
 

X-maul

AKA: Demtrod
Reaction score
201
i wondered if it would be pissoble to give that Firey Wrath 7 levels - it works good the first 3 levels - but how do i make the last 4 levels work? (lvl 4,5,6,7)
- he just cast the spell but nothing happens if the lvl is more than 3...

you just get the code...
Code:
ChargesStored Efx
    Events
        Time - Every 1.50 seconds of game time
    Conditions
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ChargesStored_FW Greater than or equal to 1
            Then - Actions
                For each (Integer A) from 1 to ChargesStored_FW, do (Actions)
                    Loop - Actions
                        Set CasterLoc_FW = (Position of Caster_FW)
                        Set EffectPoint_FW = (CasterLoc_FW offset by 128.00 towards ((360.00 / (Real(ChargesStored_FW))) x (Real((Integer A)))) degrees)
                        Custom script: call RemoveLocation (udg_CasterLoc_FW)
                        Custom script: call RemoveLocation (udg_EffectPoint_FW)
            Else - Actions
Code:
Firey Wrath
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        (Ability being cast) Equal to Firey Wrath 
    Actions
        Trigger - Turn off ChargesStored Efx <gen>
        Set Caster_FW = (Triggering unit)
        Set CasterLoc_FW = (Position of Caster_FW)
        Set TargetPoint_FW = (Target point of ability being cast)
        Set Angle_FW = (Angle from CasterLoc_FW to TargetPoint_FW)
        For each (Integer B) from 1 to (4 + (1 x (Level of Firey Wrath  for Caster_FW))), do (Actions)
            Loop - Actions
                Set TempPoint_FW = (CasterLoc_FW offset by (200.00 x (Real((Integer B)))) towards Angle_FW degrees)
                Unit - Create 1 Dummy Caster (Fly) for (Owner of Caster_FW) at TempPoint_FW facing Default building facing (270.0) degrees
                Unit - Add a 3.00 second Generic expiration timer to (Last created unit)
                Unit - Add FireyWrathDummy  to (Last created unit)
                Unit - Set level of FireyWrathDummy  for (Last created unit) to (Level of Firey Wrath  for Caster_FW)
                Unit - Order (Last created unit) to Human Blood Mage - Flame Strike TempPoint_FW
                Custom script: call RemoveLocation (udg_TempPoint_FW)
                Wait 0.10 game-time seconds
        Custom script: call RemoveLocation (udg_CasterLoc_FW)
        Custom script: call RemoveLocation (udg_TargetPoint_FW)
        Trigger - Turn on ChargesStored Efx <gen>
the spells got 7 levels ech (the dummy and the hero spell got 7 levels)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top