Need help with this skill

KeresPup

Member
Reaction score
5
Ummm, hello, I kinda made this trigger for one of my custom hero's skills:

ParacideBomb.gif

Parasite Paracide
“Argh! Stupid fly got into my ea… *BOOM!*”

Description: After years of studies of chemicals and insects, the Biochemists were able to create mutated insects which emit a great amount of heat, causing themselves to be on fire. Since then the Biochemists have been using these mutated insects in battle, sending them out to infect enemy units. Each time the insects would then feel motion of the upper body, most likely when the infected unit attacks; they emit flames from their tiny bodies, causing damage to the unit from the inside and outside to the surrounding as well. As the heat is intense, the flies would then perish after emitting heat for a number of times. If their host body dies before they do, they would simply search for another body to infect until they themselves die.

Brief Details: Summons a number of Paracide Insects that infect random enemy units in a 1000 AoE. Each time the infected unit would attack, he will get damaged by the insect inside him and those surrounding enemy units will also be damaged by a small amount. The insects die upon damaging the unit for a number of times, if the unit dies before the insect dies, the insect will infect another random enemy.

Ability Type: "Summon"/Multi-Target/Debuff
Casting Time: 2 seconds
Mana Cost:100/125/150/175
Cooldown:45 seconds
Duration of Debuff/Insect Life Span: 60 Seconds
Splash Damage AoE: 200
Level 1: 2 Insects will be released
o Infected unit receives 40 explosive damage each time it attacks.
o Units near the infected unit will receive 20 damage.
o Insects detonate up to 3 Times.
Level 2: 3 Insects will be released
o Infected unit receives 45 explosive damage each time it attacks.
o Units near the infected unit will receive 25 damage.
o Insects detonate up to 4 Times.
Level 3: 4 Insects will be released
o Infected unit receives 50 explosive damage each time it attacks.
o Units near the infected unit will receive 30 damage.
o Insects detonate up to 5 Times.
Level 4: 5 Insects will be released
o Infected unit receives 55 explosive damage each time it attacks.
o Units near the infected unit will receive 35 damage.
o Insects detonate up to 6 Times.

NOTE: If the insect can't find a body to insert itself to, it will die right away.

Code:
Paracide Bomb Initialize
    Events
        Unit - A unit Spawns a summoned unit
    Conditions
        (Unit-type of (Summoned unit)) Equal to Paracide Bomb
    Actions
        Unit - Set the custom value of (Summoned unit) to 0
        Set PlayerNumber = (Player number of (Owner of (Triggering unit)))
        Set ParasitesAtEffect[(Player number of (Owner of (Summoning unit)))] = 0
        Set L[(Player number of (Owner of (Summoning unit)))] = (Position of (Triggering unit))
        Set TemporaryGroup1 = (Units within 1000.00 of L[PlayerNumber] matching (((((Matching unit) is A structure) Equal to False) and (((Matching unit) is alive) Equal to True)) and (((Matching unit) belongs to an enemy of (Player(PlayerNumber))) Equal to True)))
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Number of units in TemporaryGroup1) Greater than or equal to 1
            Then - Actions
                Unit - Order (Summoned unit) to Night Elf Warden - Shadow Strike (Random unit from TemporaryGroup1)
            Else - Actions
                Animation - Play (Summoned unit)'s death animation
                Unit - Kill (Summoned unit)
        Custom script:   call DestroyGroup(udg_TemporaryGroup1)
        Custom script:   call RemoveLocation(udg_L[GetConvertedPlayerId(GetOwningPlayer(GetSummoningUnit()))])

Code:
Paracide Bomb Infect
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        (Ability being cast) Equal to Infect 
    Actions
        Set ParasitesAtEffect[(Player number of (Owner of (Casting unit)))] = (ParasitesAtEffect[(Player number of (Owner of (Casting unit)))] + 1)
        Set InfectingParasite[(ParasitesAtEffect[(Player number of (Owner of (Casting unit)))] + (((Player number of (Owner of (Casting unit))) - 1) x 5))] = (Casting unit)
        Unit - Set the custom value of (Target unit of ability being cast) to (ParasitesAtEffect[(Player number of (Owner of (Casting unit)))] + (((Player number of (Owner of (Casting unit))) - 1) x 5))
        Unit Group - Add (Target unit of ability being cast) to InfectedUnits[(Player number of (Owner of (Casting unit)))]
        Unit - Hide (Casting unit)

Code:
Paracide Bomb Damage Effect
    Events
        Unit - A unit Is attacked
    Conditions
        ((Attacking unit) has buff Paracide Bomb ) Equal to True
    Actions
        For each (Integer A) from 1 to 12, do (Actions)
            Loop - Actions
                Set PlayerNumber = (Integer A)
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        ((Attacking unit) is in InfectedUnits[PlayerNumber]) Equal to True
                    Then - Actions
                        Set TemporaryGroup2 = (Units owned by (Player(PlayerNumber)) of type Biochemists)
                        Set BombSquad[PlayerNumber] = (Random unit from TemporaryGroup2)
                        Set Point_L = (Position of (Attacking unit))
                        Set TemporaryGroup1 = (Units within 200.00 of Point_L)
                        Unit Group - Pick every unit in TemporaryGroup1 and do (Actions)
                            Loop - Actions
                                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                                    If - Conditions
                                        ((Picked unit) is A structure) Equal to False
                                        ((Picked unit) belongs to an enemy of (Owner of BombSquad[PlayerNumber])) Equal to True
                                    Then - Actions
                                        Unit - Cause BombSquad[PlayerNumber] to damage (Picked unit), dealing (15.00 + (5.00 x (Real((Level of Paracide Bombs  for BombSquad[PlayerNumber]))))) damage of attack type Spells and damage type Fire
                                    Else - Actions
                        Unit - Cause BombSquad[PlayerNumber] to damage (Attacking unit), dealing (35.00 + (5.00 x (Real((Level of Paracide Bombs  for BombSquad[PlayerNumber]))))) damage of attack type Magic and damage type Normal
                        Unit - Set the custom value of InfectingParasite[(Custom value of (Attacking unit))] to ((Custom value of InfectingParasite[(Custom value of (Attacking unit))]) + 1)
                        Special Effect - Create a special effect attached to the origin of (Attacking unit) using Abilities\Spells\Other\Doom\DoomDeath.mdl
                        Special Effect - Destroy (Last created special effect)
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                And - All (Conditions) are true
                                    Conditions
                                        ((Attacking unit) is in InfectedUnits[PlayerNumber]) Equal to True
                                        (Custom value of InfectingParasite[(Custom value of (Attacking unit))]) Greater than or equal to (2 + (Level of Paracide Bombs  for BombSquad[PlayerNumber]))
                            Then - Actions
                                Unit - Remove InfectingParasite[(Custom value of (Attacking unit))] from the game
                                Unit Group - Remove (Attacking unit) from InfectedUnits[PlayerNumber]
                                Unit - Remove Paracide Bomb  buff from (Attacking unit)
                            Else - Actions
                        Custom script:   call DestroyGroup(udg_TemporaryGroup1)
                        Custom script:   call DestroyGroup(udg_TemporaryGroup2)
                    Else - Actions

Code:
Paracide Bomb Death Effect
    Events
        Unit - A unit Dies
    Conditions
    Actions
        For each (Integer A) from 1 to 16, do (Actions)
            Loop - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        ((Dying unit) is in InfectedUnits[(Integer A)]) Equal to True
                    Then - Actions
                        Set PlayerNumber = (Player number of (Owner of InfectingParasite[(Custom value of (Dying unit))]))
                        Set L[PlayerNumber] = (Position of (Dying unit))
                        Set ParasitesAtEffect[(Player number of (Owner of InfectingParasite[(Custom value of (Dying unit))]))] = (ParasitesAtEffect[(Player number of (Owner of InfectingParasite[(Custom value of (Dying unit))]))] - 1)
                        Unit - Unhide InfectingParasite[(Custom value of (Dying unit))]
                        Unit - Move InfectingParasite[(Custom value of (Dying unit))] instantly to L[(Player number of (Owner of InfectingParasite[(Custom value of (Dying unit))]))]
                        Set TemporaryGroup1 = (Units within 1000.00 of L[PlayerNumber] matching (((((Matching unit) is A structure) Equal to False) and (((Matching unit) is alive) Equal to True)) and (((Matching unit) belongs to an enemy of (Player(PlayerNumber))) Equal to True)))
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Number of units in TemporaryGroup1) Greater than or equal to 1
                            Then - Actions
                                Unit - Order InfectingParasite[(Custom value of (Dying unit))] to Night Elf Warden - Shadow Strike (Random unit from TemporaryGroup1)
                            Else - Actions
                                Animation - Play InfectingParasite[(Custom value of (Dying unit))]'s death animation
                                Unit - Kill InfectingParasite[(Custom value of (Dying unit))]
                        Unit Group - Remove (Dying unit) from InfectedUnits[(Integer A)]
                        Custom script:   call RemoveLocation(udg_L[GetConvertedPlayerId(GetOwningPlayer(udg_InfectingParasite[GetUnitUserData(GetDyingUnit())]))])
                        Custom script:   call DestroyGroup(udg_TemporaryGroup1)
                    Else - Actions

The problem is, each time I use the skill (especially when it's at Level 4) it becomes rather laggy. Can anyone tell me the leaks here? I know that the InfectedUnits Unit Group variable isn't destroyed. But I need it to stay since it's not like all of the insects would disappear all at once. :banghead:
 

Waaaaagh

I lost all my rep and my title being a jerk
Reaction score
70
Maybe you could explain what it is supposed to do?
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • 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 Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top