- Joined
- Nov 11, 2006
- Messages
- 7,591
I'm just learning JASS, I'm a beginner of a beginner, and I'm trying to see if I can do a spell in it. Anywayz, I was wondering how to detect the level of an ability. I wasn't sure, so I converted a GUI script to JASS to see it, but it gives this:
It won't work. Do I have to specify the return area or something like that? Plz help! Also, I have another problem:
It says that there is a syntax error in JASS craft and in WE for the:
What did I do wrong there? Plz help! :emote_smile:
JASS:
function Trig_Illusion_Strike_Actions takes nothing returns nothing
if ( Trig_Illusion_Strike_Func001C() ) then
else
endif
JASS:
function Trig_Illusion_Strike_Actions takes nothing returns nothing
if ( Trig_Illusion_Strike_Func001C() ) then
local unit a = GetTriggerUnit()
local location b = GetUnitLoc(a)
local group c = GetUnitsInRangeOfLocAll(500.00, (b))
JASS:
local unit a = GetTriggerUnit()