Paladin Spell Request 3 spells.

adeoin

Member
Reaction score
11
Hey guys I need these three spells for my champion hero. I would do these myself but the adding the buffs and the stacking isnt working for me.

Coding: GUI/JASS

Needs to be MUI


Code:
Divine Punishment: The paladin strikes his enemy dealing damage and adding a holy seal on the target. (Seals can stack.)

Level 1 - Deals 50 damage, adds 1 seal. (Each seal lasts 10 seconds.)

Level 2 - Deals 80 damage, adds 1 seal (Each seal lasts 15 seconds.)

Level 3 - Deals 110 damage, adds 1 seal. (Each seal lasts 20 seconds.)

Code:
Heaven's Mercy: The paladin releases the seals on a target and deals damage for every seal.

Level 1 - Deals 40 damage per seal.

Level 2 - Deals 60 damage per seal

Level 3 - Deals 80 damage per seal.
Code:
Angel Bash: The champion has a chance to deal double damage and every time he does he adds a seal.

Level 1 - 10% chance

Level 2 - 20 % chance

Level 3 - 30% chance

Thank you :D
 

RangerX

I am justice!
Reaction score
69
i think something like the things in Diablo Lod when the assassin use his charge skills then release the charges with another skill
 

Jotaro

New Member
Reaction score
0
Hey guys I need these three spells for my champion hero. I would do these myself but the adding the buffs and the stacking isnt working for me.

Coding: GUI/JASS

Needs to be MUI


Code:
Divine Punishment: The paladin strikes his enemy dealing damage and adding a holy seal on the target. (Seals can stack.)

Level 1 - Deals 50 damage, adds 1 seal. (Each seal lasts 10 seconds.)

Level 2 - Deals 80 damage, adds 1 seal (Each seal lasts 15 seconds.)

Level 3 - Deals 110 damage, adds 1 seal. (Each seal lasts 20 seconds.)

Code:
Heaven's Mercy: The paladin releases the seals on a target and deals damage for every seal.

Level 1 - Deals 40 damage per seal.

Level 2 - Deals 60 damage per seal

Level 3 - Deals 80 damage per seal.
Code:
Angel Bash: The champion has a chance to deal double damage and every time he does he adds a seal.

Level 1 - 10% chance

Level 2 - 20 % chance

Level 3 - 30% chance

Thank you :D

Well, I'm kind of new with this, but one thing you might want to try is looking into is the Firelord's incinerate skill. It also has a stacking status effect.

As far as activating the stacked buff, you'd need some kind of trigger.
 

adeoin

Member
Reaction score
11
the seal is just a buff and when u use Heaven's Mercy you remove the seals but do damage per seal.

And thanks Jotaro I check incernerate out.
 

BlueMirage

Trust, but doubt.
Reaction score
39
Do seals have independant duration, or is the duration refreshed when a new seal is applied?

Btw, you might want to consider adding another effect to skill 2. This type of forced synergy limits in what order you can pick your skills.
 

adeoin

Member
Reaction score
11
uhmmm no seals are not refresehed everytime another is added. So can anyone make these spells please
 

BlueMirage

Trust, but doubt.
Reaction score
39
I'll use an Index system for MUI.

Whenever you want to add a seal to a unit, do the following:
Trigger:
  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
      • Index Equal to 1000
    • Then - Actions
      • Set Index = 1
    • Else - Actions
      • Set Index = (Index + 1)

This'll be the index for your spells.

Create a dummy unit.
Set its custom value to "Index".
Give the dummy expiration timer to the dummy equal to the duration of the seal placed.
Add it into a unit group variable.

Increase the affected unit's custom value by 1.
Set the unit variable ID[Index] to the affected unit.

Create a second trigger.
Event: A unit dies.
Condition: Dying unit is in the Unit Group with the dummies.
Decrease the custom value of IdUnit[Custom Value of Dying Unit] by 1.

When you want to use the 2nd spell, simply make it deal damage depending on their custom value.

This system works, but you will only be able to use Custom Values for this one system.
 

adeoin

Member
Reaction score
11
@BlueMirage: Thanks, but I don't know how to add the buff in the first place.

@Bogrim:uh yeah i have no idea how to use custom values
 

BlueMirage

Trust, but doubt.
Reaction score
39
Adding the buff is easy. Create a dummy caster, give it a spell that does nothing but gives a buff (For example, a spell based on Slow, but it does not slow the unit).

Changing custom values is done through triggers.

Trigger:
  • Unit - Set the custom value of (Whatever Unit) to (Whatever Integer)
 

BlueMirage

Trust, but doubt.
Reaction score
39
If a skill slows by 0%, what's the point of the slow stacking?
The answer to your question is: No. If it slowed for 20% and I cast it twice, it would still only slow for 20%.
 

adeoin

Member
Reaction score
11
yeah thats a problem i need a stacking buff, or a system where if you have a level 1 buff and another of the same buff is added it levels up to a level 2 buff and so on
 

BlueMirage

Trust, but doubt.
Reaction score
39
No, the problem is that you are not listening.
I provided a system that works for what you need.
Please actually READ what other people are trying to say before you say something.
 

adeoin

Member
Reaction score
11
I'll use an Index system for MUI.

Whenever you want to add a seal to a unit, do the following:
Trigger:

Trigger:
  • * If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • o If - Conditions
      • + Index Equal to 1000
    • o Then - Actions
      • + Set Index = 1
    • o Else - Actions
      • + Set Index = (Index + 1)


This'll be the index for your spells.

Create a dummy unit.
Set its custom value to "Index".
Give the dummy expiration timer to the dummy equal to the duration of the seal placed.
Add it into a unit group variable.

Increase the affected unit's custom value by 1.
Set the unit variable ID[Index] to the affected unit.

Is that all in one trigger? If so in what order cause im trying right now and I dont know what order to put it in
 

BlueMirage

Trust, but doubt.
Reaction score
39
Make sure you create the dummy and do the indexing first. After that, the order does not matter.
 

adeoin

Member
Reaction score
11
uhh this is what i have so far and i think i did it wrong because i put it into 2 separate triggers.

Trigger:
  • Divine Punishment Activate
    • Events
      • Time - Elapsed game time is 1.00 seconds
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Index Equal to 1000
        • Then - Actions
          • Set Index = 1
        • Else - Actions
          • Set Index = (Index + 1)


Trigger:
  • Divine Punishment Seal
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Divine Punishment
    • Actions
      • Set TargetUnit = (Target unit of ability being cast)
      • Set Caster[2] = (Casting unit)
      • Unit - Create 1 Dummy Caster for (Owner of Caster[2]) at (Position of TargetUnit) facing Default building facing degrees
      • Set LCU = (Last created unit)
      • Unit - Set the custom value of LCU to Index
      • Unit Group - Add LCU to DummyUnitGroup[1]
      • Unit - Add Dummy Slow to LCU
      • Unit - Order LCU to Human Sorceress - Slow TargetUnit
      • Unit - Add a 10.00 second Generic expiration timer to LCU
 
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
    +1
  • 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