Snippet Abusing the Orb of Lightning (New)

vypur85

Hibernate
Reaction score
803
Abusing the Orb of Lightning (New)

Orb of Lightning (OoL) is an ability which allows you to add a second target-acquired ability. Whenever the unit with this ability attacks another unit, as soon as the target gets the attack damage, the target-acquired ability will be casted onto that unit.

Tip 1 - Double attack
Orb of Lightning combined with Searing Arrows. This allows a ranged unit to cast Searing Arrows to the target unit whenever its attack missile hits the target. This makes it as if the unit attacks twice. This is what is used on Nerubian Weaver's Germinate Attack in DotA.


Tip 2 - Creating a cooldown passive ability

There are 2 ways. Direct method and Indirect method.

Direct method:
Combine OoL with any target-acquiring ability which deals the effects you want. An example is to create a passive cooldown Bash. Just combine OoL with StormBolt.

Indirect method (Triggers required):
This can be done by combining OoL with an instant damage targeting ability like Unholy Frenzy. This allows you to detect when the attack missile hits the target. Target unit will be buffed by the Unholy Frenzy ability and damage taken can be detected. We can abuse the damage taken value for our desired ability. An example is by creating cooldown Critical Strike.

attachment.php


Triggers for Critical Strike:
Code:
Critical Strike Init
    Events
        Map initialization
    Conditions
    Actions
        Set B_Abi_CriticalStrike = Critical Strike (Base: Orb of Lightning) 
        Set B_Buff_UnholyFrenzy_Buff = (CUSTOM) Critical Strike 
        Set B_Real_Multiplier_Initial = 1.00
        Set B_Real_Multiplier_PerLevel = 1.00

Code:
Critical Strike
    Events
        Unit - A unit Is attacked
    Conditions
        (Level of B_Abi_CriticalStrike for (Attacking unit)) Greater than 0
        ((Triggering unit) is in B_Unitgp_Store) Equal to False
    Actions
        Unit Group - Add (Triggering unit) to B_Unitgp_Store
        Trigger - Add to Critical Strike Damage Taken <gen> the event (Unit - (Triggering unit) Takes damage)

Code:
Critical Strike Damage Taken
    Events
    Conditions
        ((Triggering unit) has buff B_Buff_UnholyFrenzy_Buff) Equal to True
        (Life of (Triggering unit)) Greater than or equal to (Damage taken)
    Actions
        Set Real1 = ((Damage taken) x (B_Real_Multiplier_Initial + (B_Real_Multiplier_PerLevel x ((Real((Level of B_Abi_CriticalStrike for (Damage source)))) - 1.00))))
        Trigger - Turn off (This trigger)
        Unit - Cause (Damage source) to damage (Triggering unit), dealing Real1 damage of attack type Normal and damage type Normal
        Trigger - Turn on (This trigger)
        Floating Text - Create floating text that reads ((String((Integer((Real1 + (Damage taken)))))) + !) above (Triggering unit) with Z offset 0.00, using font size 10.00, color (100.00%, 0.00%, 0.00%), and 0.00% transparency
        Floating Text - Set the velocity of (Last created floating text) to 64.00 towards 90.00 degrees
        Floating Text - Change (Last created floating text): Disable permanence
        Floating Text - Change the lifespan of (Last created floating text) to 2.00 seconds
        Unit - Remove B_Buff_UnholyFrenzy_Buff buff from (Triggering unit)

Other examples include Timed Life Steal, Timed Bouncing Attacks etc. Use your own creativity to think of something possible.


Tip 3 - Eliminating auto-attack bug
OoL has a bug in that it only activates if the player manually order the unit to attack its target (or attack move). Without the attack order, units which auto-acquire a target will not activate the OoL at all. (If you notice, this is a flaw in DotA. Weaver, S&Y, Mjolnir etc will never activate when the hero auto-attacks.)

To fix this, we can use the event 'Unit Acquires a target'. This is only available in 'Specific Unit Event'. 'Triggering unit' will be your unit/hero while 'Targeted unit' is the target who alerted your unit/hero. All we need to do is just ordering the unit to attack ground when the event fires.

Trigger:
Code:
Bug Init
    Events
        Map initialization
    Conditions
    Actions
        Set Group1 = (Units in (Playable map area) matching ((Level of Orb of Lightning (new) for (Matching unit)) Greater than 0))
        Unit Group - Pick every unit in Group1 and do (Actions)
            Loop - Actions
                Trigger - Add to Bug <gen> the event (Unit - (Picked unit) Acquires a target)
        Custom script:   call DestroyGroup (udg_Group1)

Code:
Bug Enter
    Events
        Unit - A unit enters (Playable map area)
    Conditions
        (Level of Orb of Lightning (new) for (Triggering unit)) Greater than 0
    Actions
        Trigger - Add to Bug <gen> the event (Unit - (Triggering unit) Acquires a target)

Code:
Bug
    Events
    Conditions
    Actions
        Set Point1 = (Position of (Triggering unit))
        Unit - Order (Triggering unit) to Attack-Move To Point1
        Custom script:   call RemoveLocation (udg_Point1)

Some suggest to use this:
Code:
Attack
    Events
        Unit - A unit Is attacked
    Conditions
        (Level of Orb of Lightning (new) for (Attacking unit)) Greater than 0
    Actions
        Trigger - Turn off (This trigger)
        Unit - Order (Attacking unit) to Attack (Triggering unit)
        Trigger - Turn on (This trigger)
The attack trigger has a flaw. It usually activates the Orb of Lightning only after the first attack. Meaning the first attack will not have the Orb effect.

Note: Please report any bug related to the 'Unit Acquires a target' trigger.


Attached along is the map containing some examples of abilities (eg. Critical Strike (MUI), Multiple Attacks (MPI), etc.)


Comment: Made this because I realise a lot of people asking about this. And just to share the cooldown and bug thing with you guys.
 

Attachments

  • Orb of Lightning.w3x
    26.5 KB · Views: 938
  • Critical Strike.jpg
    Critical Strike.jpg
    62 KB · Views: 3,928

Tru_Power22

You can change this now in User CP.
Reaction score
144
Some cool things that I did not know about the orb of lightning. Thanks!
 

vypur85

Hibernate
Reaction score
803
> don't make an OoL have itself for an effect. Infinite loop when the abil preloads

Explain? I don't really get you here. :p


> tutorial

It doesn't matter. It's something short...
 

vypur85

Hibernate
Reaction score
803
> He definitely needs to include that in his info.

Done :).


> Make an orb of lightning where the bonus effect is the orb of lightning ability itself

Wtf. Never thought of that :p.


> Does that apply to all orb attacks

I'm not sure. Haven't tried before. It's easy to identify. Create a test map, order your unit to move nearby creeps. Don't press anything else. When your unit auto acquire attack the creep, the OoL won't activate itself. (If you want to use my test map, you will need to disable the Bug triggers for respective ability).
 

Tom_Kazansky

--- wraith it ! ---
Reaction score
157
Note: Please report any bug related to the 'Unit Acquires a target' trigger

use event "Notices a target in range" instead, this event occurs before "is attacked" a bit.
 

vypur85

Hibernate
Reaction score
803
> Graveyard ?

I think because I didn't update the thread much. Nothing much to update actually. The mods (Ghan?) were cleaning up the section, and direct all outdated threads to Graveyard.


> use event "Notices a target in range" instead....

Not sure about that. I think I tried that myself too. Ended up with bug I think. Can't really remember the reason why.
 

luorax

Invasion in Duskwood
Reaction score
67
Fortunately he's not working on LoL - one of the most important reasons why LoL is actually enjoyable.
 
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

      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