Lightning Effects in Loop

Seannny

Why GUI when you can Jass?
Reaction score
46
So ive got a spell where the hero slams the ground, causing damage to all units within a certain range take damage, get a lightning effect on them, then have chain lightning (using the Lightning) to go from the hero to the target

Everything is fine but i want to know how to get the chain lightning to go from the hero to the target, and then be destroyed so it doesnt stay all game, keep in mind that im trying to make this MUI and it is in a loop, so waits wont work.

When i try and create and destroy the lightning effect, it doesnt even appear.

any ideas?
 

WolfieeifloW

WEHZ Helper
Reaction score
372
You'll have to customize it a little.
waitTime - Real
Trigger:
  • Lite Init
    • Events
    • Conditions
    • Actions
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Set lastEffect[intA] = (Last created lightning effect)
          • Set intA = (intA + 1)
      • Trigger - Turn on Lite Destroy <gen>

Trigger:
  • Lite Destroy
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • Set waitTime = (waitTime + 0.01)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • waitTime Greater than or equal to (>=) 3.00
        • Then - Actions
          • For each (Integer A) from 1 to 10, do (Actions)
            • Loop - Actions
              • Lightning - Destroy lastEffect[(Integer A)]
        • Else - Actions
 

Seannny

Why GUI when you can Jass?
Reaction score
46
You'll have to customize it a little.
waitTime - Real
Trigger:
  • Lite Init
    • Events
    • Conditions
    • Actions
      • Do Multiple ActionsFor each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Set lastEffect[intA] = (Last created lightning effect)
          • Set intA = (intA + 1)
      • Trigger - Turn on Lite Destroy <gen>

Trigger:
  • Lite Destroy
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • Set waitTime = (waitTime + 0.01)
        • Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
          • If - Conditions
            • waitTime Greater than or equal to (>=) 3.00
          • Then - Actions
            • Do Multiple ActionsFor each (Integer A) from 1 to 10, do (Actions)
              • Loop - Actions
                • Lightning - Destroy lastEffect[(Integer A)]
          • Else - Actions


Cool +rep
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
You'll have to customize it a little.
waitTime - Real
Trigger:
  • Lite Init
    • Events
    • Conditions
    • Actions
      • Do Multiple ActionsFor each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Set lastEffect[intA] = (Last created lightning effect)
          • Set intA = (intA + 1)
      • Trigger - Turn on Lite Destroy &lt;gen&gt;

Trigger:
  • Lite Destroy
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • Set waitTime = (waitTime + 0.01)
        • Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
          • If - Conditions
            • waitTime Greater than or equal to (&gt;=) 3.00
          • Then - Actions
            • Do Multiple ActionsFor each (Integer A) from 1 to 10, do (Actions)
              • Loop - Actions
                • Lightning - Destroy lastEffect[(Integer A)]
          • Else - Actions
i dont think you ever made any special effects in the first place
and what's intA for? you can just to from integer A from zero to 10(i think)
also note that the trigger is never turned off, and the wait time is never nulled
 

WolfieeifloW

WEHZ Helper
Reaction score
372
I don't know what his trigger looks like.
He seems competent enough to know to place this at the end of his trigger.
[del]And yeah actually, you can just use Integer A.[/del]

EDIT: Wait, intA is to make it MUI.
Integer A could get overwritten.
But you have to change this I just realized:
Trigger:
  • Lite Init
    • Events
    • Conditions
    • Actions
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Set lastEffect[intA] = (Last created lightning effect)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • intA Less than (&lt;) 1000
            • Then - Actions
              • Set intA = (intA + 1)
            • Else - Actions
              • Set intA = 0
      • Trigger - Turn on Lite Destroy &lt;gen&gt;

I'll post the not freehand version in a sec.
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
read my edits lol god this must be considered a double post

also waittime is not mui, it just suits the loop

if 2 people use it, then the second person will have to wait 1 second or 1.5 seconds, rather than 3 ( according to the time they use it)
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Eh,
That's why I learned JASS instead of learning GUI -> MUI.
Anyways, the first trigger still works perfectly (in my edit) .

EDIT: I'm Italian :( :p .
 

YourFace

<span style="color:#9C9C9C;"><strong>Runner Up - T
Reaction score
91
jass is easy, im just lazy xD i should learn more html too can't let italian's in my class beat asian pride :p
 

Flare

Stops copies me!
Reaction score
662
What Wolfie posted (assuming that the latest 'Lite Destroy' trigger he posted is meant to be used) will not be MUI. Once waitTime exceeds 3 seconds, all existing lightning effects created through that initialization trigger will be destroyed. You will need waitTime to be unique to each instance (i.e. give it an array, index it like lastEffect is being indexed, and loop through all instances from 0 to NumberOfLightningEffectsPresent)

Alternatively, if you have NewGen WE and want an easy solution, TimedLightning may be of use :D

Integer A could get overwritten.
If you added waits, or added an integer A loop within the existing one, then yes, it could get overwritten. But, as it is, no, it won't get overwritten. The only thing that could happen is that other triggers using Integer A with waits may mess up, but people should know not to use Integer A with loops anyway :p
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top