Spell Stomp Echo

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
Second spell presented by me >>

Features:
-GUI
-Maybe there are still some leaks there tat i didnt found
-Not mui (though i duno how make it mui)
-Lagless (testing on my 512 ram comp feels not lag)
-Maybe this is just a normal spell but i would like to share it here
-My second spell map
-Still not sure if it has any bug...but i have tested many times.
-Reposted...(OMG forgoten to add instruction...added now)
-Removed unwanted trigger

Stomp Encho
Hero stomps the ground producing multiple waves of encho dealing random damage to enemy around him.
Dealing level of skill x 1000 damage

stompenchogk1.jpg


--------------------------------------------------------------------------
Download here:
View attachment Stomp Echo fix.w3x

omg...my attachment are reaching his limit point...how to increase ???

[offtopic]Wat is reputation ???
 

Squll2

je'ne sais pas
Reaction score
76
nice spell mind posting if its GUI or JASS?

[offtopic] reputation is hmm how to put it, it is a thehelper.net attribute. That when you have alot of you gain certain things in the forum, people can either +rep or -rep you for things u have done.

100 rep = change little thing below your name (so instead of having <user: whats this little red button do?> you can have hi my name is jimmy)

500 rep = signature (every time you post a note you have made automatically comes up under your post.)

there are some other rewards but i cant remember them :p
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
nice spell mind posting if its GUI or JASS?

[offtopic] reputation is hmm how to put it, it is a thehelper.net attribute. That when you have alot of you gain certain things in the forum, people can either +rep or -rep you for things u have done.

100 rep = change little thing below your name (so instead of having <user: whats this little red button do?> you can have hi my name is jimmy)

500 rep = signature (every time you post a note you have made automatically comes up under your post.)

there are some other rewards but i cant remember them :p


i see....added specification to gui or jass...

sad my rep just 3 ><
 

Squll2

je'ne sais pas
Reaction score
76
> 500 rep = signature

I'm getting close :)

--

~Gals~, I'll take a look at the spell later (cool sfx btw), and notify you of any leaks, if there are any ;)

[offtopic] meh lucky.. i dont even have the 100 rep yet
 

Jazradel

Helping people do more by doing less.
Reaction score
102
You could just ask a mod, they should just give you one. They used to, but it might of changed since I was really active.
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
i am trying to get very active these days but only get 3 rep ><....sad
 

ZypHeRx™

New Member
Reaction score
17
hoo! Gals , i will check ur spells soon , and

[OFFTOPIC] how do i rep someone ?

*EDIT* Does your spell actually requries 3 triggers ?? hmmz.. about your spell . kinda cool looking , somewhat the same effect of thunder clap ,
but with random damages , can work as a template for other users

GJ
 

Arcane

You can change this now in User CP.
Reaction score
87
The scale at the top right of every post. Choose "I approve" for +rep, "I disapprove" for -rep.
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
hoo! Gals , i will check ur spells soon , and

[OFFTOPIC] how do i rep someone ?

*EDIT* Does your spell actually requries 3 triggers ?? hmmz.. about your spell . kinda cool looking , somewhat the same effect of thunder clap ,
but with random damages , can work as a template for other users

GJ


oh hi zypherx !!
template is wat ?? =.=
 

ZypHeRx™

New Member
Reaction score
17
template is a simple spell/map which can be easily edited by other not-as-good spell makers .

: )

I'll try submitting my spellpack soon .. all of them are simple made spells too.. =X
 

Omni

Ultra Cool Member
Reaction score
37
> actually ...wat is spell pack ?? @@

a couple of spells put in one map, a pack of spells :p
 

Tom Jones

N/A
Reaction score
437
Let me show you how to use the "For Each Integer a from x to y do (Actions)" action. This is from one of your triggers:
Code:
Actions
    Set skill_loca[0] = ((Position of (Casting unit)) offset by 100.00 towards 0.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[0] facing Default building facing degrees
    Set skill_loca[45] = ((Position of (Casting unit)) offset by 100.00 towards 45.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[45] facing Default building facing degrees
    Set skill_loca[90] = ((Position of (Casting unit)) offset by 100.00 towards 90.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[90] facing Default building facing degrees
    Set skill_loca[135] = ((Position of (Casting unit)) offset by 100.00 towards 135.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[135] facing Default building facing degrees
    Set skill_loca[180] = ((Position of (Casting unit)) offset by 100.00 towards 180.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[180] facing Default building facing degrees
    Set skill_loca[225] = ((Position of (Casting unit)) offset by 100.00 towards 225.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[225] facing Default building facing degrees
    Set skill_loca[270] = ((Position of (Casting unit)) offset by 100.00 towards 270.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[270] facing Default building facing degrees
    Set skill_loca[315] = ((Position of (Casting unit)) offset by 100.00 towards 315.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[315] facing Default building facing degrees
This is the same part with the "For each..." action:
Code:
For each (Integer A) from 0 to 8, do (Actions)
    Loop - Actions
        Set skill_loca[((Integer A) x 45)] = ((Position of (Casting unit)) offset by 100.00 towards ((Real((Integer A))) x 45.00) degrees)
        Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[((Integer A) x 45)] facing Default building facing degrees
And everytime you use Position of (Casting Unit), your creating a leak. Assign the position to a variable, and destroy it at the end of the trigger. Use Trigger Unit instead of Casting Unit, it's the same thing, but Trigger Unit is faster and more reliable. You should also change the player that get's the dummies to Owner of (Triggering Unit) to make it more dynamic.

Keep it up.
 

Sim

Forum Administrator
Staff member
Reaction score
534
Not bad, although it is odd.

First of all, the thunder clap AoE is bigger than the damage AoE, which results in some units being hit by the no-damage thunderclap and getting slowed but not receiving damage.

Also, this spell could have been done MUI easily, you don't need all that stuff!

> Wait 0.30 seconds


Why wait? Breaks MUI for nothing.

> Trigger - Run Special effects <gen> (ignoring conditions)
> Trigger - Run damage <gen> (ignoring conditions)

Why use 2 different triggers to do things that could have been done in one?
Just add their actions to the main trigger, remove all the waits and it's MUI. You don't need to wait before destroying effects. They destroy themselves after a minimum of 1 cycle.

The trigger "damage" should've really been in the main trigger. Useless there, alone.

You could also do what Tom_Jones said. Faster and better.

skill_hero shouldn't be array.

Overall nice, but you need to do all these things before I can consider it.
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
Let me show you how to use the "For Each Integer a from x to y do (Actions)" action. This is from one of your triggers:
Code:
Actions
    Set skill_loca[0] = ((Position of (Casting unit)) offset by 100.00 towards 0.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[0] facing Default building facing degrees
    Set skill_loca[45] = ((Position of (Casting unit)) offset by 100.00 towards 45.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[45] facing Default building facing degrees
    Set skill_loca[90] = ((Position of (Casting unit)) offset by 100.00 towards 90.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[90] facing Default building facing degrees
    Set skill_loca[135] = ((Position of (Casting unit)) offset by 100.00 towards 135.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[135] facing Default building facing degrees
    Set skill_loca[180] = ((Position of (Casting unit)) offset by 100.00 towards 180.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[180] facing Default building facing degrees
    Set skill_loca[225] = ((Position of (Casting unit)) offset by 100.00 towards 225.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[225] facing Default building facing degrees
    Set skill_loca[270] = ((Position of (Casting unit)) offset by 100.00 towards 270.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[270] facing Default building facing degrees
    Set skill_loca[315] = ((Position of (Casting unit)) offset by 100.00 towards 315.00 degrees)
    Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[315] facing Default building facing degrees
This is the same part with the "For each..." action:
Code:
For each (Integer A) from 0 to 8, do (Actions)
    Loop - Actions
        Set skill_loca[((Integer A) x 45)] = ((Position of (Casting unit)) offset by 100.00 towards ((Real((Integer A))) x 45.00) degrees)
        Unit - Create 1 dummy stomper for Player 1 (Red) at skill_loca[((Integer A) x 45)] facing Default building facing degrees
And everytime you use Position of (Casting Unit), your creating a leak. Assign the position to a variable, and destroy it at the end of the trigger. Use Trigger Unit instead of Casting Unit, it's the same thing, but Trigger Unit is faster and more reliable. You should also change the player that get's the dummies to Owner of (Triggering Unit) to make it more dynamic.

Keep it up.

so sad...u are too pro..i dun understand wat u are talking...:( :'(

Not bad, although it is odd.

First of all, the thunder clap AoE is bigger than the damage AoE, which results in some units being hit by the no-damage thunderclap and getting slowed but not receiving damage.

i will smaller the aoe at the objeck editor...

Also, this spell could have been done MUI easily, you don't need all that stuff!

> Wait 0.30 seconds


Why wait? Breaks MUI for nothing.

wow...though i duno how to make mui...so i add the wait 0.30 seconds...XD
so u means that if i delete the wait 0.30 then the triger will be mui already??

> Trigger - Run Special effects <gen> (ignoring conditions)
> Trigger - Run damage <gen> (ignoring conditions)

Why use 2 different triggers to do things that could have been done in one?
Just add their actions to the main trigger, remove all the waits and it's MUI. You don't need to wait before destroying effects. They destroy themselves after a minimum of 1 cycle.

The trigger "damage" should've really been in the main trigger. Useless there, alone.

u know...i am a noob mapper...i seperate them to 3 triger to let me not to mess up all the thing...i seen the effects doesn't work properly so i added the wait0.30 to it...(the effect destroyed before they show out all effects)

You could also do what Tom_Jones said. Faster and better.

skill_hero shouldn't be array.

Overall nice, but you need to do all these things before I can consider it.

i...duno wat tom_jones say in last post...
and...skill_hero variables shouldn't be array ?? y??
 

ZypHeRx™

New Member
Reaction score
17
Tom Jones said :


And everytime you use Position of (Casting Unit), your creating a leak. Assign the position to a variable, and destroy it at the end of the trigger. Use Trigger Unit instead of Casting Unit, it's the same thing, but Trigger Unit is faster and more reliable. You should also change the player that get's the dummies to Owner of (Triggering Unit) to make it more dynamic.

What he meant is , if u used a Position of (Casting Unit) trigger , u create a leak . U can clear this leak through simple JASS .
Like this - > Custom script: call RemoveLocation(udg_Caster_Position)

and . use Triggering Unit instead of Casting unit at it is faster and better .
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
EH !!! wait...i cant delete the Wait 0.30 second action !! bcoz i need the effects like:
hero cast (stomp once)
wait a little while
area around hero stomp again..(like an echo)

but if i del the wait action..
it will be :
hero cast..(hero and area around hero stomp together...)

[EDIT] New map updated
 
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