[Ideas Section] Heroes, Abilities, and More!

Daicos

New Member
Reaction score
25
Wat bass move should i use for Burst Burn, if u dont no wat it is then take a look at the first page in my hero.

Should i use crit. str. ?
 

Daicos

New Member
Reaction score
25
ok well pulverize is usualy used with a melee unit... plus how can i make it so that when the ability is used there is an explosion where the enemy was hit, and so it does Aoe damage?

EDIT: ok it kinda worked but it only did it once
 

LightChaosma

New Member
Reaction score
60
pulverise will also work with ranged, for the explosion change the effects in the ability, or buff, dunno wich one you need for pulverize.. (that is if there is a buff:p)
 

Daicos

New Member
Reaction score
25
ok yeah i got the explosion and stuff... but it only ever did it once... and i even set it to 100% chance to do it and it still didnt work
 

LightChaosma

New Member
Reaction score
60
i see the problem, made the skill myself... the AOE damage is done around the target, not at the impact zone. will have to think a bit on how to do this...

i see:
make a passive skill that does nothing

trigger:
Code:
e
unit takes damage (make sure every unit in game has an event for this(wont lag))
c
unittype of damagsource = urunit
a
if random integer between 1 and 100 is less then or equal to %% then do multiple actions
set point = location of trigering unit
create a special effect at point
destroy last created special effect
cause damage source to deal area damage after 0.00 of 100 radius at point dealing 40 damage of type hero and damage type fire
 

Daicos

New Member
Reaction score
25
u think maybe u could ummm... well i hate making people do i cause like i feel helpless, but u think u could write out the trigger easier?
 

Expelliarmus

Where to change the sig?
Reaction score
48
1) It was... I forgot, but I'll change it. :D

2) Er, no, as of right now, I"m not making the spells right now, but perhaps we could work something out.
If anyone wants to work on these ideas, so that this is almost like a request page, except with the maker having the ideas.
I'll speak with some of those people with those request threads.

--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---

SEARCHING FOR PEOPLE WILLING TO MAKE ABILITIES AS LISTED IN THE FIRST POST!
If you wish to help, just send me a Private Message or post here!

I can do the Heroes if you want?
However I can only do vJASS (not GUI or JASS :()
 

Daicos

New Member
Reaction score
25
if u did the heroes i would be over the moon... i would love you to make my hero!!! but thewrongvine forgot to change a few things
 

LightChaosma

New Member
Reaction score
60
this would be it:
Code:
Untitled Trigger 001
    Events
    Conditions
        (Unit-type of (Damage source)) Equal to Death Knight
        ((Owner of (Triggering unit)) is an enemy of (Owner of (Damage source))) Equal to True
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Random integer number between 1 and 100) Less than or equal to 33
            Then - Actions
                Set temppoint[1] = (Position of (Triggering unit))
                Set caster[1] = (Damage source)
                Set tempunitg = (Units within 125.00 of temppoint[1] matching ((((Matching unit) is alive) Equal to True) and (((Owner of (Matching unit)) is an enemy of (Owner of caster[1])) Equal to True)))
                Special Effect - Create a special effect at temppoint[1] using Abilities\Weapons\CannonTowerMissile\CannonTowerMissile.mdl
                Special Effect - Destroy (Last created special effect)
                Unit Group - Pick every unit in tempunitg and do (Actions)
                    Loop - Actions
                        Unit - Cause caster[1] to damage (Picked unit), dealing 40.00 damage of attack type Hero and damage type Normal
                Custom script:    call RemoveLocation (udg_temppoint[1])
                Custom script:    call DestroyGroup (udg_tempunitg)
            Else - Actions

and

Code:
Untitled Trigger 002
    Events
        Unit - A unit enters (Playable map area)
        Time - Elapsed game time is 0.00 seconds
    Conditions
        (Custom value of (Triggering unit)) Not equal to 1
    Actions
        Trigger - Add to Untitled Trigger 001 <gen> the event (Unit - (Triggering unit) Takes damage)
        Unit - Set the custom value of (Picked unit) to 1
        Set tempunitg = (Units in (Playable map area) matching ((Custom value of (Matching unit)) Not equal to 1))
        Unit Group - Pick every unit in tempunitg and do (Actions)
            Loop - Actions
                Trigger - Add to Untitled Trigger 001 <gen> the event (Unit - (Picked unit) Takes damage)
                Unit - Set the custom value of (Picked unit) to 1
        Custom script:    call DestroyGroup (udg_tempunitg)
 

Daicos

New Member
Reaction score
25
crap man u really thought about this... mmm... ok i might work on it... geez talk about confusing
 

LightChaosma

New Member
Reaction score
60
easy, 1 minute think, 10 minute write, done:p

the 2nd trigger is just an examle of how you could do this, it will require the custom value of every unit in your map, so try using an iconless skill for that ;)
 

Daicos

New Member
Reaction score
25
i want to work on him but i cant at the moment... im working on an RPG and thats taking up a lot of my time...
 

thewrongvine

The Evolved Panda Commandant
Reaction score
506
I can do the Heroes if you want?
However I can only do vJASS (not GUI or JASS :()

Feel free to do that. Do whatever you want with the ideas, they are public. ;)

Sorry that I haven't add everything yet, I've been very busy and I still can't get WCIII available so that I can add the map. I will do it ASAP.

To Daicos, LightChaosma, this is more of ideas than discussion of triggers. :D
Don't stop your conversations, but I'm just saying.
 

LightChaosma

New Member
Reaction score
60
kk

its about how to make one of the ideas ;) << ironic, sont take it too serius:p

i'm gonna make vorpal winds... mind if i change the idea a bit, it looks kinda unspectacular to me... i was thinking of when the torando reaches its location, it splits in 3, each traveling linke 500 in difrent directions, and these 3 explode in a fan of knives effect...
 

Daicos

New Member
Reaction score
25
Thewrongvine are u going to put in the new stuff on my hero? cause u gave me some ideas for his ultimate... and i said that was fine... even better... so if u want to change it u can
 

D.V.D

Make a wish
Reaction score
73
Ability Name: Lightning Dash

Insert Description: The caster dashes at his opponents creating beams of lightning hit every unit within 400 of the caster.
Level 1: 30 damage per lightning, dashes 1 second
Level 2: 60 damage per lightning, dashes 1.7 second
Level 3: 120 damage per lightning, dashes 2.5 second

Effect: Insert Effect. Chain Lightning
 

Deviruchi

New Member
Reaction score
5
Ability 1: Storm Gust

Brews a snowstorm in a target area for 5 seconds, enemies caught inside it will get knockbacked in random directions every second, dealing damage per knockback, also, knocked units have a 14% chance of being frozen for 3 seconds, rendering it immobile and deal 30 damage per second for 3 seconds. Note: This spell has a casting time of 6 seconds, however, every 15 points of the heroes agility reduces the casting time by 1second.
Level 1: 45 damage per knockbacked unit
Level 2: 90 damage per knockbacked unit
Level 3: 135 damage per knockbacked unit
Level 4: 180 damage per knockbacked unit

Ability 2: Jupiter Thunder

Hurls a rolling ball of thunder at a target unit, damaging the target 3-6 times in 2 seconds, the target also gets knockbacked 100 distance per hit, deals 2x damage if the target is frozen from Storm Gust. Note: This spell has a casting time of 5 seconds, however, every 18 points of the heroes agility reduces the casting time by 1 second.
Level 1: 3 hits, 60 damage each
Level 2: 4 hits, 60 damage each
Level 3: 5 hits, 60 damage each
Level 4: 6 hits, 60 damage each
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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