Any complex spell requests?

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
I just want it to save position, life, mana, and current buffs if possible.

Edit: The reason I don't want to use it is because that was made officially by someone whom I can't trust, but after seeing your work I feel you can do good on it. Oh and it doesn't really have to be MUI, because I don't think two people will cast it at once. XD
You can make it in any format you wish.
 

b_ray210

Active Member
Reaction score
1
Name: Nature's Empowerment
Preferred type of code: GUI, MUI
Description of the spell: It is a passive that raises the hero's damage for every tree in an area around the hero.
Point of the spell: Every .5 seconds the trigger should count the amount of trees (felwood non-canopy trees) and add damage according to how many there are around the hero.
Amount of Levels: 4
Changing factors in the level:
damage empowerment per level: 5/6/7/8
trees in an AOE of: 450/500/550/600
Additional Info: THANKS!

EDIT: Make the maximum damage adding for each level (25/36/49/64) Thanks :)
 

PooBucket

New Member
Reaction score
12
Might not be too hard... but certainly not for me.

Gushing Water
Every 0.5 seconds, water arises from the caster in an outward position of 150, and swirls (about 0.05 seconds wait between each new gushing water)around the caster, then stops (until it does a full circle), and then repeats it again, each gushing water damages units near it. Lasts for 5 seconds, damage gets higher every level.
The gushing water effect will be the NagaDeath, I think that's what it is, the Dota's waveform special effect.
MUI AND MPI please.

Edit: +rep! Goodjob on the Gush thingy, just finish damage please.

Also, the previous person who was gonna make this for me, wasn't gonna do it, cause he had heaps of other stuff to do, u think u can do it for me?

Water Rampage
Crushing waves are cast all around the caster (in a complete circle) every 1 second and lasts for 5 seconds.

Thanks in advance.
 

Leazy

You can change this now in User CP.
Reaction score
50
How would I do to calculate his damage? Both regular and bonus?
 

inevit4ble

Well-Known Member
Reaction score
38
Hey

Was wondering, u no the darkness spell that you made for me only works a number of times. Was hoping that maybe you could do it in Jass or something so it works always?

Thx
 

Jagan

New Member
Reaction score
30
Hi there. Was wondering if you mind making Scatter Shot (Sniper's skill in DotA) for me in GUI? I've only found JASS versions so far but I don't understand them. This request of mine has been rejected by squishy in another (GUI) spell request thread earlier so I'd really appreciate it if you can help me. Thanks. :)
 

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
Dude... That was a really delayed reply.

On a side note: Umm... Do you think you'll really be able to do the spell? If you can it would be really helpful.
 

Leazy

You can change this now in User CP.
Reaction score
50
No, not implent it to my map, just implent it to the map you made for the spell

Thanks in advance :)
 

b_ray210

Active Member
Reaction score
1
I was just wondering if you think there would be any way to complete my spell, i already posted it but im not sure if you saw it because you havent responded.
Name: Nature's Empowerment
Preferred type of code: GUI, MUI
Description of the spell: It is a passive that raises the hero's damage for every tree in an area around the hero.
Point of the spell: Every .5 seconds the trigger should count the amount of trees (felwood non-canopy trees) and add damage according to how many there are around the hero.
Amount of Levels: 4
Changing factors in the level:
damage empowerment per level: 5/6/7/8
trees in an AOE of: 450/500/550/600
Additional Info: THANKS!

EDIT: Make the maximum damage adding for each level (25/36/49/64) Thanks :)

Sorry if this bothers you i just wasnt sure :S
 
Reaction score
86
Sorry guys, have been busy today. Sorry for taking such a long time to fix the spell as well.

@ Renendaru: Sorry about not finishing the spell :( I will try to finish your spell, but that is the last spell for tonight. Also, I dunno if I can save buffs. If you tell me a few specific ones, I can do that.

Name: Darkness/Light
Coded in: GUI / Jass
MUI: Yes
Description of the spell: Darkness causes all units in 600 range to not be able to move or attack but still cast spells. Light cancels the effect of Darkness.

Code:
Trigger 1: Casts Darkness in Jass
Code:
function Trig_Casts_Darkness_Conditions takes nothing returns boolean
   return ( GetSpellAbilityId() == 'A000' )
endfunction

function Trig_Casts_Darkness_Actions takes nothing returns nothing
    local group g = CreateGroup()
    local group g2 = CreateGroup()
    local group g3 = CreateGroup()
    local boolean bool = false
    local integer count
    local unit u
    set udg_loc = GetSpellTargetLoc()
    set bj_lastCreatedUnit =  CreateUnitAtLoc( GetOwningPlayer(GetTriggerUnit()), 'u000' , udg_loc, bj_UNIT_FACING )
    call RemoveLocation(udg_loc)
    call GroupAddUnit( udg_DarknessGroup,bj_lastCreatedUnit )
    set udg_loc = GetUnitLoc(bj_lastCreatedUnit)
    call GroupEnumUnitsInRange(g,GetLocationX(udg_loc),GetLocationY(udg_loc),300,null)
    call GroupAddUnit( g,bj_lastCreatedUnit )
    call RemoveLocation(udg_loc)
    loop
    set u =FirstOfGroup(g)
    exitwhen u == null
        call GroupRemoveUnit(g,u)
        call GroupAddUnit(g2,u)
        if ( GetUnitTypeId(u) != 'u000' ) then
            call UnitAddAbility( u,'Sch3' )
            set udg_loc = GetUnitLoc(u)
            set bj_lastCreatedUnit = CreateUnitAtLoc(Player(PLAYER_NEUTRAL_AGGRESSIVE), 'u001' , udg_loc,0 )
            call RemoveLocation(udg_loc)
            call UnitAddAbility( bj_lastCreatedUnit,'AEer' )
            call IssueTargetOrder( bj_lastCreatedUnit, "entanglingroots", u )
            call UnitApplyTimedLifeBJ( 5.00, 'BTLF', bj_lastCreatedUnit)
        endif
    endloop
    call TriggerSleepAction( 0.50 )
    set bool = false
    set count = 1
    loop
    exitwhen count > 40
        call GroupAddGroup(g2,g3)
        call TriggerSleepAction( 0.50 )
        loop
        set u = FirstOfGroup(g3)
        exitwhen u == null
            call GroupRemoveUnit(g3,u)
            if ( UnitHasBuffBJ(u, 'BEer') == false and ( GetUnitTypeId(u) != 'u000' ) ) then
                set bool = true
            endif
        endloop
        set count = count + 1
    endloop
    loop
    set u = FirstOfGroup(g2)
    exitwhen u == null
        if ( ( GetUnitTypeId(u) != 'u000' ) ) then
            if ( ( bool == false ) and ( UnitHasBuffBJ(u, 'BEer') == true ) ) then
                call UnitRemoveAbility( u,'Sch3' )
                call UnitRemoveAbility( u,'BEer' )
            endif
        else
            call RemoveUnit( u )
        endif
        call GroupRemoveUnit(g2,u)
    endloop
    call DestroyGroup(g)
    call DestroyGroup(g2)
    call DestroyGroup(g3)
    set g = null
    set g2 = null
    set g3 = null
endfunction

//===========================================================================
function InitTrig_Casts_Darkness takes nothing returns nothing
    set gg_trg_Casts_Darkness = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( gg_trg_Casts_Darkness, EVENT_PLAYER_UNIT_SPELL_EFFECT )
    call TriggerAddCondition( gg_trg_Casts_Darkness, Condition( function Trig_Casts_Darkness_Conditions ) )
    call TriggerAddAction( gg_trg_Casts_Darkness, function Trig_Casts_Darkness_Actions )
endfunction

Trigger2: Casts Light
Code:
Casts Light
    Events
        Unit - A unit Starts the effect of an ability
    Conditions
        (Ability being cast) Equal to (==) Light 
    Actions
        Custom script:   set udg_UnitGroup = CreateGroup()
        Set loc = (Target point of ability being cast)
        Unit Group - Pick every unit in DarknessGroup and do (Actions)
            Loop - Actions
                Set loc2 = (Position of (Picked unit))
                 Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Distance between loc2 and loc) Less than (<) 600.00
                    Then - Actions
                        Unit Group - Add (Picked unit) to UnitGroup
                    Else - Actions
                Custom script:   call RemoveLocation(udg_loc2)
        Custom script:   call RemoveLocation(udg_loc)
        Unit Group - Pick every unit in UnitGroup and do (Actions)
            Loop - Actions
                 Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Unit-type of (Picked unit)) Equal to (==) Darkness
                    Then - Actions
                        Unit - Remove (Picked unit) from the game
                        Set loc = (Position of (Picked unit))
                        Set DarknessGroup = (Units within 600.00 of loc)
                        Custom script:   call RemoveLocation(udg_loc)
                        Unit Group - Pick every unit in DarknessGroup and do (Actions)
                            Loop - Actions
                                Unit - Remove Cargo Hold (Goblin Zeppelin) from (Picked unit)
                                Unit - Remove Entangling Roots buff from (Picked unit)
                    Else - Actions
        Custom script:   call DestroyGroup(udg_UnitGroup)
 

Attachments

  • Darkness.w3x
    19.4 KB · Views: 283

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
You can just put the common buffs such as: stunned, poisoned, frozen, paused, slowed, and such.
 
Reaction score
86
Ok, I *finished* the spell as it normally is suppose to be. I haven't added in the buffs part yet. Also, it's impossible for me to tell how how long the buff should be so averages for the buffs would be? Any spell you want to give me that I can base it off. The durations, and the dps, w/e. Also, I have it only save units within a range of the caster. If you want me to make it the entire map, it would require a MUCH larger array o_O...
 

Renendaru

(Evol)ution is nothing without love.
Reaction score
309
It should only store the buffs that units have around him when he uses time rupture. And I'm not going to mod the dps on any buffs. You don't have to change the duration either...
 

jig7c

Stop reading me...-statement
Reaction score
123
is my spell done yet, or you need more time.. just wanted to know :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • 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

      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