NO not Again!(Takes Damage)

Laiev

Hey Listen!!
Reaction score
188
What do you mean?

A unit need to take damage to run the event... you can't calculate in "map initialize" a thing to calculate damage without the specific event
 

Exide

I am amazingly focused right now!
Reaction score
448
Yes and no.
You can only use specific unit events in the actual event.
Otherwise you need to add the event from another trigger.
 

Chaos_Knight

New Member
Reaction score
39
Sorry, but Laiev, when i use your code, it says: Undeclared Function Damage_RegisterEvent

//Chaos_Knight :cool:
 

Exide

I am amazingly focused right now!
Reaction score
448

Chaos_Knight

New Member
Reaction score
39
No, but Jasshelper says: Undeclared function Damage_RegisterEvent.

I got AIDS, EVENT and Damage, latest version.
 

Laiev

Hey Listen!!
Reaction score
188
are you sure you got the latest version of Damage?

get it from the link in the POST, not in the map (when i was getting it... the map are undated...)
 

Chaos_Knight

New Member
Reaction score
39
Yes, i updated, and now still doesnt work. Code:
AND YES LAIEV IM UPDATING MOVING STRIKES!

JASS:
library MovingStrike initializer InitTrigger
// +-------------------------------------------------------------------------------+
// |     Moving Strikes - Created by Chaos_Knight.  Requires a vJass preprocessor! |   
// +-------------------------------------------------------------------------------+
// | Gives a small chance to move the Attacker to the GetAttacker() and            |
// | deals damage to the GetTriggerUnit()                                          |
// +-------------------------------------------------------------------------------+
// | How to Import:                                                                |
// |  - Create a new trigger                                                       |
// |  - Convert it to Custom text (Edit > Convert to Custom Text)                  |
// |  - Replace everything there with this code                                    |
// |  - Change the constants to suit yourself                                      |
// |  - Enjoy!                                                                     |
// +-------------------------------------------------------------------------------+

// |-------------|
// | Constants:  |
// |-------------|
    globals
        // The effect created on the target when it is being possessed:
        private constant string EFFECT = "Abilities\\Weapons\\PhoenixMissile\\Phoenix_Missile_mini.mdl"
        private constant string EFFECT2 = "Abilities\\Weapons\\PhoenixMissile\\Phoenix_Missile.mdl"
        private constant string EFFECT3 = "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl"
        private constant string EFFECT4 = "Abilities\\Spells\\Other\\Doom\\DoomDeath.mdl"
        private constant string EFFECT6 = "Abilities\\Spells\\Other\\Monsoon\\MonsoonBoltTarget.mdl"
        // Which is attached to the targets:
        private constant string EFFECT_POSITION = "weapon,left"
        private unit TARGET
        private constant string EFFECTPOSITION = "hand,right"
        private constant string EFFECTPOS = "origin"
        private constant boolean SHOWEFFECT = true //Will Show the effects(6).
        private constant boolean IS_RANGED = true //If the damage is ranged
        private constant boolean IS_MEELE = true //If the damage is from meele combat(128 Warcraft metres).
        private constant integer RED = 90 //Red color.
        private constant integer GREEN = 0 //Green color.
        private constant integer BLUE = 110 //Blue color.
        private constant integer ALPHA = 255 //Alpha(how much the TextTag's visible).
        private constant boolean SHOWDAMAGE = true //Will create the TextTag, if true.
        private constant integer DAMAGE = 35
        private constant integer C = 100 // Testing Purposes.
        //I Reccomend having it 1% chance. setting beyond this value may make it unbalanced.
        private constant integer FROMTARGET = 128 //How Far you are moving
        private constant attacktype DmgType = ATTACK_TYPE_CHAOS //Selfexplaining
        private constant damagetype AtkType = DAMAGE_TYPE_FIRE//^ same
        private constant weapontype WepType = WEAPON_TYPE_WHOKNOWS//No idea...
        // The Raw code of the ability
        private constant integer ID = 'A008'
    endglobals
    
    private constant function CHANCE takes integer level returns integer
        return C * level
    endfunction
    
    private constant function DMG takes integer Lvl returns integer
        return DAMAGE * Lvl
    endfunction
// |------------------|
// | End of Constants |
// |------------------|
// DO NOT EDIT BELOW THIS LINE!
    
private function Cons takes nothing returns boolean
    return IsUnitEnemy(TARGET , GetOwningPlayer(GetAttacker())) and GetRandomInt(0, 100) <= CHANCE(GetUnitAbilityLevel(GetAttacker(), ID)) and not IsUnitType(TARGET, UNIT_TYPE_HERO) and GetUnitAbilityLevel(GetAttacker() , ID) > 0
endfunction    

        
        private function Moving takes nothing returns nothing
            local unit u = GetAttacker()
            local real x1 = GetUnitX( u )
            local real y1 = GetUnitY( u )
            local real x2 = GetUnitX( TARGET )
            local real y2 = GetUnitY( TARGET )
            local real angle = Atan2(y2 - y1, x2 - x1)
            local texttag TT = CreateTextTag()
            set TARGET = GetTriggerUnit()
            
            if SHOWEFFECT then
                call DestroyEffect(AddSpecialEffectTarget(EFFECT, u, EFFECT_POSITION))
                call DestroyEffect(AddSpecialEffectTarget(EFFECT2, u, EFFECTPOSITION))
                call DestroyEffect(AddSpecialEffectTarget(EFFECT3, TARGET, EFFECTPOS))
                call DestroyEffect(AddSpecialEffectTarget(EFFECT4, TARGET, EFFECTPOS))
                call DestroyEffect(AddSpecialEffectTarget(EFFECT6, TARGET, EFFECTPOS))
            endif
               if SHOWDAMAGE then
                    call SetTextTagText (TT,R2S(DMG(GetUnitAbilityLevel(u, ID))) + "!", 0.023)
                    call SetTextTagPosUnit (TT, u, 10 )
                    call SetTextTagColor (TT, RED, GREEN, BLUE, 255 )
                    call SetTextTagVelocity (TT, 0.0355 * Cos(90. * bj_DEGTORAD), 0.0355 * Sin(90. * bj_DEGTORAD))
                    call SetTextTagVisibility (TT, true)
                    call SetTextTagFadepoint (TT, 2.00)
                    call SetTextTagLifespan (TT, 2.00)
                    call SetTextTagPermanent (TT, false)
                endif
        
            call SetUnitX( u , x2 + FROMTARGET * Cos(angle))
            call SetUnitY( u , y2 + FROMTARGET * Sin(angle))
            call UnitDamageTarget( u , TARGET , DMG(GetUnitAbilityLevel(u, ID))  , IS_RANGED , IS_MEELE , DmgType , AtkType , WepType )
        
        set u = null
        set TT = null
    endfunction
  
  
//------------------------------------------------------------------  
function InitTrigger takes nothing returns nothing
    local trigger t = CreateTrigger()
    call Damage_RegisterEvent(t)
    call Moving()
endfunction

endlibrary


:p
 

Laiev

Hey Listen!!
Reaction score
188
I did. It's 1.0.3 right?

EDIT: It's 1.0.1 right?

wrong...

look at the link

Version 1.0.4 :p

copy the code from the post, not map

EDIT: (now i see the second page lol) hmm good but i think this is wrong place to show the updates :p

you got your topic...

also you can change this:

[ljass]UnitDamageTarget[/ljass]

to this

[ljass]Damage_Spell[/ljass] or [ljass]UnitDamageTargetEx[/ljass]

EDIT EDIT: function InitTrigger takes nothing returns nothing

make this private
 

Chaos_Knight

New Member
Reaction score
39
I know what i did wrong.

JASS:
library MovingStrikes initializer InitTrigger


JASS:
library MovingStrike initializer InitTrigger requires Damage
 

Jesus4Lyf

Good Idea™
Reaction score
397
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