Spell Panda Hook

Andrewgosu

The Silent Pandaren Helper
Reaction score
716
Panda Hook

Unleashes a fiery chain of lightning from the Brewmaster, which pulls random targeted units towards the panda. When collided, the lightning chain breaks and stuns, deals damage to the targets.

I shall add more details later and better screenshots soon. Meanwhile, check it out.

122223.gif


12222.gif
 

Attachments

  • Panda_Hook_MadeByAndregosu_ver1.1.w3x
    30.4 KB · Views: 965

gref

New Member
Reaction score
33
Very nice. (+rep)

Note: It bugged a bit when a unit got netted behind two others -> it kept trying to pull that unit through.
 
Reaction score
65
Let me quess, this is for Pandamonium? ;)
Nice idea, by the way, maybe add a maxinum time it can last? (To prevent the bug gref pointed out)
 

gref

New Member
Reaction score
33
I had a dragging spell of some kind in an older map, I think I added a local variable that stored the previous location or coords and checked to see if the unit had moved a minimum distance on each move.
And if it didn't it meant it was stuck, so the ability triggered/cancelled.
 

Sooda

Diversity enchants
Reaction score
318
It' s really fun when they get stuck behind eachother so you can run away and then drag them where you want. Looks so natural. Only bug what I discovered was that its hotkey was "p" what is well also patrol hotkey, Andrew how you made so simple flaw :D Also "p" for hotkey isn' t wonderful I can' t reach from one keyboard end to another and it' s easier to just click on ability button. If it would be a really hotkey it would be Panda Hook. Good work still may you post your JASS also ? I forgot to mention that it is very smooth what is good.
 

Andrewgosu

The Silent Pandaren Helper
Reaction score
716
I know about the "units get stuck" bug. It can be avoided by turning the collision off for the unit and then on...It just looks so silly, when they get stuck, so I left it in.:p I think I'll add an option to toggle the collision on/off.

Yeh, sorry about the tooltip. I'll fix that asap.
 

Sim

Forum Administrator
Staff member
Reaction score
534
Great spell, although the name is ugly :p
 

Tom Jones

N/A
Reaction score
437
Heh, this one is funny :D

I got some small notes though. Why are you using so many arrays? Your not using the arrays to anything at all, and overwritting the variable doesn't mean anything as long as you store it everytime. And when your using arrays, the used indexes has to be nulles. Anyways here it's a example of what I mean:

Code:
[B]    local unit tmpUnits
    local lightning tmpLightning
    local timer tmpTimer[/B]

    call GroupEnumUnitsInRange( g, xPos, yPos, PandaHook_TargetRadius(), filter )    
    loop
[B]        set tmpUnits = FirstOfGroup() [/B]
        exitwhen ( ([B]tempUnits[/B]== null) or (nIndex > level) )
        set tmpTimer = CreateTimer() 
        call SetHandleHandle( [B]tmpTimer[/B], "tmpUnit", [B]tmpUnits[/B])
        call SetHandleHandle( [B]tmpTimer[/B], "a", a ) 
        set xPos                 = GetUnitX([B]tmpUnits[/B])
        set yPos                 = GetUnitY([B]tmpUnits[/B])
[B]        set tmpLightning [/B]= AddLightning( PandaHook_LightingId(), true, x, y, xPos, yPos )
        call SetHandleHandle([B] tmpTime[/B], "tmpLightning", [B]tmpLightning[/B])
        call TimerStart([B] tmpTimer[/B], 0.03, true, function PandaHook_MoveTargets )
        call GroupRemoveUnit( g,[B] tmpUnits[/B])
    endloop

//  This is how arrays are nulled:
//  set nIndex = 1
//  loop
//      exithwen tmpTimer == null
//      set tmpUnits[nIndex] = null     
//      set tmpTimer[nIndex] = null
//      set tmpLightning[nIndex] = null
//      set nIndex = nIndex+1
//  endloop

[B]    set tmpUnits = null
    set tmpLightning = null
    set tmpTimer = null[/B]
Also the JESP standard requires you to have the spells name in all stored values name, etc. call SetHandleHandle(*SomeHandle*,"PandaHook_u",u), but since your storing on a local created object, it doesn't matter much in my opinion (Which is one of the reasons why I don't support the standard). However if you were storing on a unit, it suddenly becomes important to distinct between the stored values, so you don't accidently overwrite a value stored from another function (Which has nothing to do with the standard, it's common sense).
 

Sim

Forum Administrator
Staff member
Reaction score
534
Great spell!

I once heard Vex mention the fact that the Configuration header must contain formulaes that include a "level" factor. Yours only include raw numbers.

Also,

Code:
constant function PandaHook_TargetUnits takes integer level returns integer
    //The maximum amount of targets the lightning can pull depending on level of the "Panda Hook". Change to your needs or add even more levels.
    if     ( level == 1 ) then
        return 3
    elseif ( level == 2 ) then
        return 6
    elseif ( level == 3 ) then
        return 9
    endif
    return 0
endfunction

Should be simply

Code:
constant function PandaHook_TargetUnits takes integer level returns integer
    //The maximum amount of targets the lightning can pull depending on level of the "Panda Hook". Change to your needs or add even more levels.
    return 3 * level
endfunction

Same with every other configuration constant function you have below. Add a " * level" formulae.

Other than that... Thumb up!
 

pheonixashes

Those who misplace trust in gods learn their fate.
Reaction score
65
w00t! Pandas!!!

Anyway, cool spell, seems smooth an such.

+reppity rep.
 

PurgeandFire

zxcvmkgdfg
Reaction score
509
JASS? or GUI?

even if JASS or GUI it is still nice +rep if i can?

Lol... You can look. :p It is JASS though btw. :D

Anyways, this is a great spell, but still, the stuck effect, but it is great. I kinda like the stuck effect, it is funny. If you turned off collision, wouldn't the units kind of run through eachother, or? +reppy, rep, reputation... :D
 

Andrewgosu

The Silent Pandaren Helper
Reaction score
716
Thanks for the massive feedback!

I had to configure the spell a little bit, the real version I am using needs arrays. I'll udate this version not use arrays, thanks for pointing that out. ;) (+ the JESP standard naming)


Daxtreme, the "switch" function for the levels is there for readability and easier configuration. Maybe someone wants to change the targets for level 1 to 4, level 2 for 13 and 24 for level 3. ;)

Oh, I realized the name resembles Meat Hook. It was unintantionally. :p
 

Sim

Forum Administrator
Staff member
Reaction score
534
Yes, but Vex clearly stated that a JESP spell must be able to hold any number of levels, using formulas. I wouldn't like to add 17 * 2 lines of JASS code just so my spell can have 20 levels!
 

Sim

Forum Administrator
Staff member
Reaction score
534
Don't worry, as long as they're in the Spells awaiting approval thread you don't need to bump the spells ;)

Approved.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top