Hi everyone,
im currently making a little draynor willowcutter, and im trying to get the srl function 'findaxe' working, I got the following:
SCAR Code:
program DraynorWillowerXL;
{.include SRL/SRL/Misc/Smart.scar}
{.include SRL/SRL.scar}
{.include SRL/SRL/Skill/Woodcutting.scar}
var
x, y: integer;
EquipAxe: boolean;
procedure CheckAxe;
begin
if (EquipAxe) then
begin
writeln('Axe is found, script will continue!')
end
end;
now when i run the script (axe in inventory AND one wielded) I do not get my "axe found" message...anyone who's able to help me?
Quipeace