Page 1 of 1

Gunner, skill level 68

Posted: Sun Apr 09, 2017 5:46 pm
by pawelgbw
Why is the skill "Concentrated Cannon Shot" not functioning?
Example:

Code: Select all

if CheckAvailable("Concentrated Cannon Shot")
	then
	CheckExecute("Concentrated Cannon Shot")
	return true
end

if CheckAvailable("Frost Cannon")
	then
	CheckExecute("Frost Cannon")
	return true
end
The second skill never performs

Re: Gunner, skill level 68

Posted: Tue Apr 11, 2017 12:53 pm
by locatelli
You should try with ID

Code: Select all

if Helper:CheckAvailable( 4786 ) then
	Helper:CheckExecute( 4786 );
	return false;
end

Re: Gunner, skill level 68

Posted: Tue Apr 11, 2017 1:44 pm
by nucular
Check this Thread, maybe it's the problem:

viewtopic.php?f=7&t=127