• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Jass Help

Status
Not open for further replies.

Chaosy

Tutorial Reviewer
Level 40
Joined
Jun 9, 2011
Messages
13,219
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.
 
Level 7
Joined
Jan 22, 2013
Messages
293
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.
Top