Jass Help

Status
Not open for further replies.
It will be hard to help you unless you post your error. However I can try.
This is how to the use the add skill thingy in jass propperly
  • Actions
    • Set ability = Acid Bomb
    • Set unit = (Triggering unit)
    • Custom script: call UnitAddAbility(udg_unit, udg_ability)
JASS:
function X takes unit u, integer i returns nothing
    call UnitAddAbility(u, i)
endfunction

//OR

function Y takes nothing returns nothing
    local unit u = GetTriggerUnit()
    local integer i = 'A000'
        call UnitAddAbility(u, i)
endfunction


If none of those work in your case then describe how you want it. And if those gives you some error something is wrong with your JNGP.
 
I didin't get it, and how to update the jass helper?

Hi panda. I'm sure you remember me.

Do you mind going into the editor and replying to me me these things:

>What features in your editor do you have checkmarked.
>What version of Editor
>Which Script Helper you have on


ty.
 
Status
Not open for further replies.
Back
Top