2 Passive-Aura Spell Requests

RodyisGod

New Member
Reaction score
5
Well, ive been looking around to make this spell, which sounds very easy in my ears. But i just couldn't find a solution.

I just need a simple Aura Spell that gives the unit Health and armor bonus.
NO idea how to do both. Thanks =]

Then i need another aura spell.
It should give: ..% more Damage, [Trueshot Aura] and ..% more chance to Critical strike. [Critical Strike].

At both spells the problem is, that i dont know how to combine 2 spells with triggers :S

Thank you very much
 

Whisky

New Member
Reaction score
45
For the first one make three non-hero liferegen/unholy auras auras, one spellbook and one devotion aura. Put the regen auras to the spellbook, give it to your hero when he learns devotion aura and disable it. Then just level the book with triggers as the hero levels the devotion aura.

Second one is a little more complicated, since you need a trigger to check every 1-2 seconds the units affected by the trueshot aura.

Trigger:
  • Critical Aura Loop
    • Events
      • Time - Every 1.50 seconds of game time
    • Conditions
    • Actions
      • Unit Group - Pick every unit in (Units in (Playable map area)) and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Picked unit) has buff Trueshot Aura) Equal to True
            • Then - Actions
              • Unit - Add (Spellbook containing critical strike) to (Picked unit)
              • Player - Disable (Spellbook containing critical strike) for (Picked player)
            • Else - Actions
              • Unit - Remove (Spellbook containing critical) from (Picked unit)


Well it is probably simplest possible way to do it, and if you want it to have levels and be MUI or MPI I need to think a bit..
 

RodyisGod

New Member
Reaction score
5
For the first one make three non-hero liferegen/unholy auras auras, one spellbook and one devotion aura. Put the regen auras to the spellbook, give it to your hero when he learns devotion aura and disable it. Then just level the book with triggers as the hero levels the devotion aura.

Second one is a little more complicated, since you need a trigger to check every 1-2 seconds the units affected by the trueshot aura.

Trigger:
  • Critical Aura Loop
    • Events
      • Time - Every 1.50 seconds of game time
    • Conditions
    • Actions
      • Unit Group - Pick every unit in (Units in (Playable map area)) and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Picked unit) has buff Trueshot Aura) Equal to True
            • Then - Actions
              • Unit - Add (Spellbook containing critical strike) to (Picked unit)
              • Player - Disable (Spellbook containing critical strike) for (Picked player)
            • Else - Actions
              • Unit - Remove (Spellbook containing critical) from (Picked unit)


Well it is probably simplest possible way to do it, and if you want it to have levels and be MUI or MPI I need to think a bit..

yes i need ;p for orpg
 

Whisky

New Member
Reaction score
45
Right right... Just give different buffs for each level of trueshot aura.

Trigger:
  • Critical Aura
    • Events
      • Time - Every 1.50 seconds of game time
    • Conditions
    • Actions
      • Unit Group - Pick every unit in (Units in (Playable map area)) and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Or - Any (Conditions) are true
                • Conditions
                  • ((Picked unit) has buff Trueshot Aura 1) Equal to True
                  • ((Picked unit) has buff Trueshot Aura 2) Equal to True
                  • ((Picked unit) has buff Trueshot Aura 3) Equal to True
            • Then - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • ((Picked unit) has buff Trueshot Aura 1) Equal to True
                • Then - Actions
                  • Unit - Add Critical spellbook 1 to (Picked unit)
                  • Player - Disable Critical spellbook 1 for (Picked player)
                  • Unit - Remove Critical spellbook 2 from (Picked unit)
                  • Unit - Remove Critical spellbook 3 from (Picked unit)
                • Else - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • ((Picked unit) has buff Trueshot Aura 2) Equal to True
                    • Then - Actions
                      • Unit - Add Critical spellbook 2 to (Picked unit)
                      • Player - Disable Critical spellbook 2 for (Picked player)
                      • Unit - Remove Critical spellbook 1 from (Picked unit)
                      • Unit - Remove Critical spellbook 3 from (Picked unit)
                    • Else - Actions
                      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                        • If - Conditions
                          • ((Picked unit) has buff Trueshot Aura 3) Equal to True
                        • Then - Actions
                          • Unit - Add Critical spellbook 3 to (Picked unit)
                          • Player - Disable spellbook 3 for (Picked player)
                          • Unit - Remove spellbook 1 from (Picked unit)
                          • Unit - Remove spellbook 2 from (Picked unit)
                        • Else - Actions
            • Else - Actions
              • Unit - Remove spellbook 1 from (Picked unit)
              • Unit - Remove spellbook 2 from (Picked unit)
              • Unit - Remove spellbook 3 from (Picked unit)


The middle of the trigger are just to prevent a unit from having two different critical strikes if there are two different level aura sources nearby..

Edit: Added my testmap; I didn't make any abilities so just import the trigger.
 

Attachments

  • auratrigger.w3x
    17.1 KB · Views: 105

RodyisGod

New Member
Reaction score
5
thanks +rep i think if i can figure out how to do it =]

Edit: Can u explain what to do with the trigger, what objects to make etc.

And how does that trigger reconise which level it is? by buff? i dont get it ;D
 

Slapshot136

Divide et impera
Reaction score
471
The middle of the trigger are just to prevent a unit from having two different critical strikes if there are two different level aura sources nearby..

i dont think that's necessary as aura's dont stack anyways
 

Whisky

New Member
Reaction score
45
@ Slapshot: Okay you are right.. I just thought that those auras would stack since they have different buffs (at different levels)

@ RodyIsGod: Yes, the buff does the trick: You need to create X amount of buffs, X being the number of levels your ability has.
The other abilities require some work if the X is large number, but since copy-paste is there to help you it shouldn't be to hard. Just make X unit ability criticals, X unit spellbooks - and, the most important, your trueshot aura.
Then look at that trigger I posted before and think how to put them in.

Good luck with your orpg :)
 

RodyisGod

New Member
Reaction score
5
@ Slapshot: Okay you are right.. I just thought that those auras would stack since they have different buffs (at different levels)

@ RodyIsGod: Yes, the buff does the trick: You need to create X amount of buffs, X being the number of levels your ability has.
The other abilities require some work if the X is large number, but since copy-paste is there to help you it shouldn't be to hard. Just make X unit ability criticals, X unit spellbooks - and, the most important, your trueshot aura.
Then look at that trigger I posted before and think how to put them in.

Good luck with your orpg :)

Ill do it tomorrow, im exhausted. :D.

30 Spells coming up!, and i sure post some other threads where i need help, as this were not really amazing spells :D
 
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

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top