ummm, i need help with a "type mismatch". ive tried everythying and kind of cant find it.... plzz help
SCAR Code:
Const
Col1=1;//Set Color Numbers 1, 2, and 3
Col2=1;
col3=1;
Tole=30;//Anywhere From 5 To 50
WhatDir='';//The Direction To Run If U Get Attacked
Axe=True;// ax equipped?
Time=True;//If You Want Your Character To Run On A Time
HowLong=90000;//Self Explanatory, in minutes
Logz=False;//If You Want Your Character To Chop An Amount Of Trees
HowMany=1;//Self Explanatory
MMouseSpeed=11;//Obvious, Set anywhere From 7-14
RandomMouseSpeed=15;//Adds Extra Random Speed
Skill='WoodCutting';//Skill To Updrade If You Find A Lamp
Tries=10;//How Many Times To Try And Find The Tree
TreeName='illow';// all the lowercase letters in the tree's name
Var
Loads: Integer;
Exp: Integer;
NumTrees: Integer;
Tried: Integer;
NumLogs: Integer;
this is where it messes up in the If Time Then;
SCAR Code:
Procedure MeasureTime;
Begin;
If Time Then//If Time Is Set To True Then....
Begin;
If TimeRunning>HowLong then
Begin;
LogOut; TerminateScript;
end;
end;
end;