Any Tutorials?

junicobakura

Member
Reaction score
3
Are there any tutorials here on how to make a Triggered(GUI/MUI) Wave-Like(Shockwave,Carrion Swarm) Spells?
 

Ayanami

칼리
Reaction score
288
Try searching around? I don't think there's a specific tutorial. Perhaps you could look up custom made shockwave codes and learn from there?
 

junicobakura

Member
Reaction score
3
tried making 1 from looking on Spirit Lance you made

Trigger:
  • Sekai Ichi No Zangeki Cast
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Sekai Ichi No Zangeki
    • Actions
      • Set Sekai1ZangekiCastLoc = (Position of (Triggering unit))
      • Set Sekai1ZangekiTargLoc = (Target point of ability being cast)
      • Set Sekai1ZangekiAngle = (Angle from Sekai1ZangekiCastLoc to Sekai1ZangekiTargLoc)
      • Set Sekai1ZangekiDistance = (900.00 x 0.03)
      • Set Sekai1ZangekiTravelTime = 2.00
      • Unit - Create 1 Dummy Effect (Sekai Ichi No Zangeki) for (Owner of (Triggering unit)) at Sekai1ZangekiCastLoc facing Sekai1ZangekiAngle degrees
      • Hashtable - Save Sekai1ZangekiDistance as 0 of (Key (Last created unit)) in SekaiIchiNoHash
      • Hashtable - Save Sekai1ZangekiAngle as 1 of (Key (Last created unit)) in SekaiIchiNoHash
      • Hashtable - Save Sekai1ZangekiTravelTime as 2 of (Key (Last created unit)) in SekaiIchiNoHash
      • Unit Group - Add (Last created unit) to Sekai1ZangekiGroup
      • Set Sekai1ZangekiCount = (Sekai1ZangekiCount + 1)
      • Trigger - Turn on Sekai Ichi No Zangeki Move <gen>
      • Custom script: call RemoveLocation(udg_Sekai1ZangekiCastLoc)
      • Custom script: call RemoveLocation(udg_Sekai1ZangekiTargLoc)


Trigger:
  • Sekai Ichi No Zangeki Move
    • Events
      • Time - Every 0.03 seconds of game time
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Sekai1ZangekiCount Less than or equal to 0
        • Then - Actions
          • Trigger - Turn off (This trigger)
        • Else - Actions
          • Unit Group - Pick every unit in Sekai1ZangekiGroup and do (Actions)
            • Loop - Actions
              • Set Sekai1ZangekiDistance = (Load 0 of (Key (Picked unit)) from SekaiIchiNoHash)
              • Set Sekai1ZangekiAngle = (Load 1 of (Key (Picked unit)) from SekaiIchiNoHash)
              • Set Sekai1ZangekiTravelTime = (Load 2 of (Key (Picked unit)) from SekaiIchiNoHash)
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • Sekai1ZangekiTravelTime Greater than 0.00
                • Then - Actions
                  • Set Sekai1ZangekiArtPosi = (Position of (Picked unit))
                  • Set Sekai1ZangekiOffset = (Sekai1ZangekiArtPosi offset by (Load 0 of (Key (Picked unit)) from SekaiIchiNoHash) towards (Load 1 of (Key (Picked unit)) from SekaiIchiNoHash) degrees)
                  • Unit - Move (Picked unit) instantly to Sekai1ZangekiOffset
                  • Custom script: call RemoveLocation(udg_Sekai1ZangekiArtPosi)
                  • Custom script: call RemoveLocation(udg_Sekai1ZangekiOffset)
                  • Hashtable - Save (Sekai1ZangekiTravelTime - 0.03) as 2 of (Key (Picked unit)) in SekaiIchiNoHash
                • Else - Actions
                  • Hashtable - Clear all child hashtables of child (Key (Picked unit)) in SekaiIchiNoHash
                  • Unit Group - Remove (Picked unit) from Sekai1ZangekiGroup
                  • Unit - Remove (Picked unit) from the game
                  • Set Sekai1ZangekiCount = (Sekai1ZangekiCount - 1)


can you please teach me how to apply damage to units hit by the projectile?

and LEAK CHECK
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
Or maybe you could state what you want so we can find the right things/teach you how to make it. Right now... You're just telling us you want a shockwave kind of spell, and we're just guessing solutions. If you tell us the exact problem(Exactly how you want the spell to be) it'll be easier :)
 

Ayanami

칼리
Reaction score
288
Here's a custom shockwave spell that I made long ago. Hope it helps.
 

Attachments

  • Shockwave.w3x
    24 KB · Views: 151

junicobakura

Member
Reaction score
3
Or maybe you could state what you want so we can find the right things/teach you how to make it. Right now... You're just telling us you want a shockwave kind of spell, and we're just guessing solutions. If you tell us the exact problem(Exactly how you want the spell to be) it'll be easier :)

well, it just looks like the normal shockwave

though it can be done by just copying the base ability

i want to trigger it to manipulate the damage

and removing the missle ripple is a plus

Here's a custom shockwave spell that I made long ago. Hope it helps.

this should help.

but the hashtables are in custom script.:confused: im confused.
 

Ayanami

칼리
Reaction score
288
this should help.

but the hashtables are in custom script.:confused: im confused.

Yeah, because my hashtables are bugged in GUI. Well, the custom script is basically same as GUI. "SaveReal" basically saves a real value, "SaveBoolean" basically saves a Boolean value. As for the "0 of 1" thing in GUI, it's simply reversed. Meaning that "0 of 1" would be "SaveReal(udg_Hashtable, 1, 0....)". As for "Key(Triggering unit)", it basically becomes "GetHandleId(GetTriggerUnit())".
 

junicobakura

Member
Reaction score
3
Trigger:
  • Custom script: call SaveBoolean(udg_Hashtable, GetHandleId(udg_TempUnit), GetHandleId(GetEnumUnit()), false)


sorry to ask

but how do you insert a unit variable inside the Hande ID for the GUI
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
If I'm not wrong, using GUI you can't use unit variables. Not sure if you use custom script though, you can try replacing GetEnumUnit() with udg_VariableName.
 

junicobakura

Member
Reaction score
3
If I'm not wrong, using GUI you can't use unit variables. Not sure if you use custom script though, you can try replacing GetEnumUnit() with udg_VariableName.

oh crap

but its ok if i mix GUI hashtables and Custom Script Hashtables right?
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
Yeah. They are all converted to JASS in the end anyway.
 

Ayanami

칼리
Reaction score
288
Just insert the variable name in between the brackets (). Do note that all global variables (basically, ALL variables in GUI) need to have the "udg_" prefix. Thus, let's say you have a unit "TempUnit". You'll have to do "GetHandleId(udg_TempUnit)".
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
Save variables. Meaning you can only save picked unit, last created unit, triggering unit, but not say TempUnit(Unit var).

Edit: Sorry, I meant the handle. Like Key(Picked unit). You can save unit variables in the hashtable, but you can't "bind" it to the handle of variables. At least in GUI.
 

X-maul

AKA: Demtrod
Reaction score
201
thats because there is something leaking then, or dummy units not getting deleated.

Can also be because you summon too many units and special effects at the same time.

Try to check the trigger through for leaks and post it here if you fail :)
 

junicobakura

Member
Reaction score
3
thats because there is something leaking then, or dummy units not getting deleated.

Can also be because you summon too many units and special effects at the same time.

Try to check the trigger through for leaks and post it here if you fail :)

changed base ability from shockwave to channel. does not lag now

Here's a custom shockwave spell that I made long ago. Hope it helps.

does this kill all other shockwave orders?

cause when the skill is used

any other dummy skill that needs shockwave order cannot be used(ordered through triggers) anymore
 
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