It seems that I'm getting an error here but I see this in many tutorials. Please help!
Line 16: [Error] (15348:12): Unknown identifier 'INTEGER1' in script C:\Program Files\SCAR 3.12\Scripts\Power Miner.scar
SCAR Code:
program New;
{.include SRL/SRL.scar}
{.include SRL/SRL/Skill/Mining.scar}
var
DidRandomHappen: Boolean;
procedure DeclarePlayers;
begin
HowManyPlayers := 2; //Only three right now.
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := 'User';
Players[0].Pass := 'Pass';
Players[0].Nick := 'Nick';
Players[0].Active := True;
Players[0].Integer1 := 0; //How many loads for this player to do
Players[0].Boolean1 := True; //True for equipped, false for not.
Players[1].Name := 'User';
Players[1].Pass := 'Pass';
Players[1].Nick := '3-4 letters of user';
Players[1].Active := True;
Players[1].Integer1 := 0; //How many loads for this person to do.
Players[1].Boolean1 := True; //True for equipped, false for not.
Players[2].Name := 'User';
Players[2].Pass := 'Pass';
Players[2].Nick := '3-4 letters of user';
Players[2].Active := True;
Players[2].Integer1 := 0; //How many loads for this character to do.
Players[2].Boolean1 := True; //True for equipped, false for not.
NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpCharsc);
end;