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: 152

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
  • 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 The Helper:
    I think we need to add something to the bottom of the front page that shows the Headline News forum that has a link to go to the News Forum Index so people can see there is more news. Do you guys see what I am saying, lets say you read all the articles on the front page and you get to the end and it just ends, no kind of link for MOAR!
  • The Helper The Helper:
    Happy Wednesday!
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    Sticking with the desserts for now the latest recipe is Fried Apple Pies - https://www.thehelper.net/threads/recipe-fried-apple-pies.194297/
  • The Helper The Helper:
    Finally finding about some of the bots that are flooding the users online - bytespider apparently is a huge offender here - ignores robots.txt and comes in from a ton of different IPs
  • Monovertex Monovertex:
    @The Helper I'm really not seeing the "Signature" link in the sidebar on that page. Here's a screenshot:
  • The Helper The Helper:
    I have reported it - I was wondering why nobody I have given sigs to over the last few years have used them
  • The Helper The Helper:
    Ghan has said he has fixed this. Monovertex please confirm this fix. This was only a problem with people that had signatures in the upper levels like not the special members but the respected members.
  • The Helper The Helper:
    Here is a better place to manage this stuff https://www.thehelper.net/account/account-details which I think should be way more visible
  • The Helper The Helper:
    I am hoping that online user count drop is finally that TikTok bot banned

      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