Request your GUI spells here!

Status
Not open for further replies.
I don't understand, you kill any unit you cast the spell on, and it's auto-cast?
 
ill try to explain it better,


Basically i have this frog hero in my map, that can summon frogs as a spell . one of the spells is devour , now since my map got ALOT of unitsss (footmen frenzy) and the average guy that plays has barely any micro , i would like too simplify this by letting the public choose to have devour as an AUTOcast ability .. so there will be no micro needed.


you know how shamens have bloodlust on autocast? it is something like that, meaning instead of manualy having to click the target to devour, the trigger will Seek and automatically devour the closest unit within lets say 250 range of the caster.

:shades:
 
So you will kill a unit of the type of a frog minion within 250 Feet then gain x health?

How much health?
 
well i did not ask for gain health but that is a good idea :p .. , any value will do, ill change the values if anything :p


think of it like this, basically all i want is an orc kodo beast too have the devour ability on autocast.

dont worry about making the summons etc.. ill do that part :) .. just the ability im having troubles with
 
JASS:
//////////////////////////////////
//                              //
//             Devour           //
//         By ToolTipError      //
//                              //
//  How to Import: Create a     //
//  trigger called 'Devour'     //
//  then import this script,    //
//  also import the spell       //
//  devour.  Enjoy!             //
//                              //
//////////////////////////////////

function Trig_Devour_Conditions takes nothing returns boolean 
    return GetSpellAbilityId() == 'A000' 
endfunction

function Trig_Devour_Actions takes nothing returns nothing
    call KillUnit( GetSpellTargetUnit() )
    call SetUnitLifeBJ( GetTriggerUnit(), ( GetUnitStateSwap(UNIT_STATE_LIFE, GetTriggerUnit()) + 250.00 ) )
endfunction

function InitTrig_Devour takes nothing returns nothing
    set gg_trg_Devour = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( gg_trg_Devour, EVENT_PLAYER_UNIT_SPELL_EFFECT )
    call TriggerAddCondition( gg_trg_Devour, Condition( function Trig_Devour_Conditions ) )
    call TriggerAddAction( gg_trg_Devour, function Trig_Devour_Actions )
endfunction


I'm not sure if it works or not.

Devour
 
okay i tried it, but it not working, it does seem to devour after a bit of wait, but as it eats it instantly kills the devourer.


just to clarify how a kodo beast abilities work

there's 2 abilities needed on the kodo, The devour, and the devour cargo ability . the devour ability is standard and never changed . however the cargo ability is what determines how fast the unit should be eaten till its killed. i care not for the devour cargo ability, only the devour ability im concerned about.

i do not have much time, cause i got to go now , but thanks for trying :) +cred for it
 
You can try something simple like:

Trigger:
  • Devour
    • Events
      • A Unit is attacked
    • Conditions
      • Level of Devour (custom) for Attacking Unit is Greater than 0
    • Actions
      • Unit - Order Attacking Unit to Orc Kodo ? - Devour Triggering Unit
 
I figured I made a mistake in there. I'll rewrite it soon.
 
Disease Nova:
Vile Tower (building) automatically casts a nova spell (Like Diablo I/II) that damages adjacent units initially and also over time for a short period while expanding outward a little before finally ending.

This is for a TD.
Nova Art = Disease Cloud if possible.
 
Disease Nova:
Vile Tower (building) automatically casts a nova spell (Like Diablo I/II) that damages adjacent units initially and also over time for a short period while expanding outward a little before finally ending.

This is for a TD.
Nova Art = Disease Cloud if possible.

I have made a demo map with the spell in it. But, really sadly, it's not MUI. I know it's really retarded for a skill meant for a TD to be not made MUI, but I've tried making it MUI and failed miserably. Maybe someone else can modify it to become MUI. :eek:

P.S: If you wouldn't mind for the idea, I am gonna use this ability for 1 of the Bosses in my RPG map. :)
 

Attachments

  • Disease Nova.w3x
    19 KB · Views: 244
Mr.Glenphir, can you help me to make some DotA skills like: Sand Storm and Dream Coil ? (in GUI please, I'm suck at Jass)

I've found a link to these spells on thehelper.net to wc3sear.ch, but unluckily that website has been downed a year ago. Thanks in advance.
 
Completed the spell Disease Nova requested by ZelNaga. It is in MUI. The damage over time isn't by a custom DoT spell, it's by trigger. This was to prevent no-bounty kills.

Mr.Glenphir, can you help me to make some DotA skills like: Sand Storm and Dream Coil ? (in GUI please, I'm suck at Jass)

I've found a link to these spells on thehelper.net to wc3sear.ch, but unluckily that website has been downed a year ago. Thanks in advance.

If you read my first post, you would find out that once again, I do not accept spell packs anymore. Please request for one spell at a time. And please post the details of the spell. Don't just post "from DoTA". You can give the link to the hero abilities from DoTA Heroes, or a screen shot of it. Anything is fine, just give us the information. Not everyone in the crew plays DoTA.
 
Ah I'm sorry. Then please help me to make the Sand Storm ability of Sand King from DotA.

Sand Storm

Sand King creates a fearsome Sand Storm. The storm blinds his enemies and he becomes invisible to them. The storm also causes his opponents to take damage.

Level 1- 20 damage per second, 300 AOE, invisibility lasts 20 seconds. 0.3 second delay before revealed.
Level 2- 40 damage per second, 350 AOE, invisibility lasts 40 seconds. 0.6 second delay before revealed.
Level 3- 60 damage per second, 400 AOE, invisibility lasts 60 seconds. 0.9 second delay before revealed.
Level 4- 80 damage per second, 550 AOE, invisibility lasts 80 seconds. 1.5 second delay before revealed.

Channeling

Cooldown: 40/35/30/25

Thanks in advance.
 
If you read my first post, you would find out that once again, I do not accept spell packs anymore. Please request for one spell at a time. And please post the details of the spell. Don't just post "from DoTA". You can give the link to the hero abilities from DoTA Heroes, or a screen shot of it. Anything is fine, just give us the information. Not everyone in the crew plays DoTA.

sand storm - crixalis
picture.php


death coil - abaddon

just helping :D

EDIT: update with screen but can't found a screen with death coil..
 
Dream Coil, not Death Coil.

Dream Coil is Puck's ulti that stuns and deals damage to enemies in an area, then if they move more than 300 range from the center, they will take extra damage and be stunned for a longer time (than the first stun).
 
Puck you!

okay, that joke's old.
I'm gonna' sift through these 50pages and see what awesome spells have been requested and completed, lol.

Bored.
And I need a rest

[Edit[
Woah, no need for me to sift..
It's all on the front page xD

AWESOME!!!!
 
Dream Coil, not Death Coil.

Dream Coil is Puck's ulti that stuns and deals damage to enemies in an area, then if they move more than 300 range from the center, they will take extra damage and be stunned for a longer time (than the first stun).

oh sorry D: i fail :(

PuckgankLich4.jpg


basically this, but with a lightning effect in each enemy affected
 
I have a request.

only 1 level. :D

Varimathras lets lose a terrifying roar that increases his damage by 10% for each structure and unit in a 1200 range for 15 seconds.
 
Status
Not open for further replies.
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good
  • The Helper The Helper:
    I would like to see it again like Ghan had it the first time with pagination though - without the pagination that view will not work but with pagination it just might...
  • The Helper The Helper:
    This drink recipe I have had more than a few times back in the day! Mind Eraser https://www.thehelper.net/threads/cocktail-mind-eraser.194720/

      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