Burn % of current mana

Archideas

Active Member
Reaction score
32
Always something simple that bypasses me. xP Also, how do I set so that all units within that 375 area have -50% ms, as and damage and if they leave the area it'll go back to normal.
 

Ayanami

칼리
Reaction score
288
Always something simple that bypasses me. xP Also, how do I set so that all units within that 375 area have -50% ms, as and damage and if they leave the area it'll go back to normal.

You can create a dummy unit with no model and locust. Then you can add negative command aura and endurance aura with enemy targets. Simply create the dummy unit at the middle of the area. Remove it after the duration is over.
 

Archideas

Active Member
Reaction score
32
You can create a dummy unit with no model and locust. Then you can add negative command aura and endurance aura with enemy targets. Simply create the dummy unit at the middle of the area. Remove it after the duration is over.

Problem is, the buff for them will be in green text as if it was a positive buff. D:
 

Ayanami

칼리
Reaction score
288
Can be easily resolved. Use color codes for the buff name. So for example:

|cffff0000My Aura|r
 

Archideas

Active Member
Reaction score
32
I tried using this color code on the buff but no luck.

|c00FF0303Grand Cross|

It was still green. :<
 

Archideas

Active Member
Reaction score
32
Lo and behold! I got yet another spell I could use some help with.

This time, it's set so that every time the hero loses 20%/15%10% of his max health, he performs a kinda Counter Helix-ish attack. Meaning; he deals damage to all nearby enemy units. So the formula for this spell is kinda like this, I just can't figure out how to make it work.

Level 1 - Every time he loses 20% of his max health, he performs an attack that deals damage to nearby enemy units.

Level 2 - Every time he loses 15% of his max health, he performs an attack that deals damage to nearby enemy units.

Level 3 - Every time he loses 10% of his max health, he performs an attack that deals damage to nearby enemy units.

So when this ability is level 3, he'll perform this attack automatically once he reaches 90%, 80%, 70%, 60% etc health. Help for this is appreciated.

*EDIT*

Shit, forgot to hit the edit button on my previous post. >.<
 

X.Terror.X

New Member
Reaction score
10
you want to be able to make it MUI?


edit*
i am making this monsterious big trigger for you
but i need to know how i can calculate a number
i need a number rounding to down

For some examples:


if you got 4.24 it will be 4.00
if you got 4.98 it go 4.00
if you got 1.32 it go 1.00
if you got 0.02 it goes 0

any one can help me with this?


SOLVED
 

X.Terror.X

New Member
Reaction score
10
ive been working much on it but i got some results =p

there still some bugs and leaks but it works actualy

i thought i couldnt trigger it every 10% of max health so instead i did something else but the results are actualy what u wanted to be it

please dont ask me to much about it cuz i have no clue why it works for most part


the text that is shown when it works comes twice with diffrent values

it is MUI!


Trigger 1
Trigger:
  • Group
    • Events
      • Unit - A unit Learns a skill
    • Conditions
    • Actions
      • Unit Group - Add (Triggering unit) to TargetableUnits


Trigger 2
Trigger:
  • Helix
    • Events
      • Time - Every 0.10 seconds of game time
    • Conditions
      • (Number of units in TargetableUnits) Not equal to 0
    • Actions
      • -------- Changeable --------
      • Set UsedAbility = Helix
      • -------- Data --------
      • Set Unitingroup = (Number of units in TargetableUnits)
      • -------- ------------------------------------------------ --------
      • -------- Gettin Max hp per unit --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set HpMax[MUI_Counter] = (Max life of (Picked unit))
      • -------- ------------------------------------------------ --------
      • -------- Get unit out Group --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set EaUnit[MUI_Counter] = (Picked unit)
      • -------- ------------------------------------------------ --------
      • -------- Getting original hp --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set HpNew[MUI_Counter] = (Percentage life of (Picked unit))
      • -------- ------------------------------------------------ --------
      • -------- Ability level % --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set AbilityLevel[MUI_Counter] = (Level of UsedAbility for EaUnit[MUI_Counter])
          • Set AbilityCount[MUI_Counter] = (25 - (AbilityLevel[MUI_Counter] x 5))
      • -------- ------------------------------------------------ --------
      • -------- Ability Prev Multiple Search --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • For each (Integer A) from 1 to Unitingroup, do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set AbilityMultiple[MUI_Counter] = (HpPrev[MUI_Counter] / (Real(AbilityCount[MUI_Counter])))
          • Set AbilityMulipleRoundedPrev[MUI_Counter] = (Max((Integer(AbilityMultiple[MUI_Counter])), (Integer(AbilityMultiple[Unitingroup]))))
      • Wait 0.01 seconds
      • -------- ------------------------------------------------ --------
      • -------- Ability New Multiple Search --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • For each (Integer A) from 1 to Unitingroup, do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set AbilityMultiple[MUI_Counter] = (HpNew[MUI_Counter] / (Real(AbilityCount[(Integer A)])))
          • Set AbilityMulipleRoundedNew[MUI_Counter] = (Max((Integer(AbilityMultiple[MUI_Counter])), (Integer(AbilityMultiple[Unitingroup]))))
      • -------- ------------------------------------------------ --------
      • -------- Helix Strike? --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • AbilityMulipleRoundedNew[MUI_Counter] Less than AbilityMulipleRoundedPrev[MUI_Counter]
            • Then - Actions
              • Game - Display to (All players) the text: (% life left + (String(HpPrev[MUI_Counter])))
            • Else - Actions
      • -------- ------------------------------------------------ --------
      • -------- Savin the hp --------
      • -------- ------------------------------------------------ --------
      • Set MUI_Counter = 0
      • Unit Group - Pick every unit in TargetableUnits and do (Actions)
        • Loop - Actions
          • Set MUI_Counter = (MUI_Counter + 1)
          • Set HpPrev[MUI_Counter] = HpNew[MUI_Counter]



Varibles:
AbilityCount: Integer (array)
AbilityLevel: Interger (array)
Abilitymult... new: Integer (array)
Abilitymult... prev: Integer (array)
AbilityMultiple: Real (array)
DamageGained: Real
DamageTotal: Real
EaUnit: Unit (array)
HpMax: Real (array)
HpNew: Real (array)
HpPrev: Real (array)
MuiCounter: Integer (used this to make it mui)
TargetableUnits: Unit group
UnitinGroup: Integer
Used Ability: Ability

my trigger can be shortend just remember that its some experimenting for me :p
 

Bogrim

y hello thar
Reaction score
154
Archideas, you should use a damage detection system. You can find a GUI friendly version here. Then, whenever the hero takes damage, add the amount in a variable. Whenever that amount is greater than or equal to your percentage of max health, you perform the attack, and reset the variable.
 

X.Terror.X

New Member
Reaction score
10
that' s what i tried in this trigger but somehow it didn´t worked
as long this is asked i am not gonna change it yet
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • 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!
  • 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

      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