you mean from willow to yew?
SCAR Code:
{======================================================================================================]
this uses getskill out of the srl include by: mat_the_b and me(its not so big so it doesnt matter)
[======================================================================================================}
function GetSkillStartEnd(Skill: string; Option: boolean): integer;
begin
if not LoggedIn then Exit;
if (Option = True) then
begin
GameTab(2);
StartSkill := GetSkillLevel(Skill);
end else
begin
GameTab(2);
EndSkill := GetSkillLevel(Skill);
end;
end;
then you got
the begin
SCAR Code:
GetSkillStartEnd('crafting',True);
the end
SCAR Code:
GetSkillStartEnd('crafting',False);
if you call the 'the begin' 1 time in the start of the script and directly after that 'the end' then it will say in a proggy(i will show below) *look down!*
SCAR Code:
WriteLn('// You started with crafting level : ' + inttostr(startskill) + '');
WriteLn('// You ended with crafting level : ' + inttostr(startskill) + '');//you can choose wcing
it will say that now back on topic if you take the start level like 59
then evry load before you bank you do 'the end' after few times it is
level 60(integer=60)
then
SCAR Code:
procedure walking;
begin
if endskill>59 then
begin
walktoyews;
end else
walktowillows;
end;
if you dont get this then i am sorry
i hope i helped ya
hermpie