In the program name, there can not be any spaces, so change this:
To this:
You can short this:
SCAR Code:
var
c,d:integer;
//globraw
globraw:integer;
//Bankcheck
banktrue:boolean;
//images
cookall:integer;
Howmanyfs:integer;
lvl:integer;
fire:integer;
//proggy vars
expstart:integer;
timestart:integer;
time:integer;
exp:integer;
loads:integer;
level:integer;
To this:
SCAR Code:
var
c, GlobRaw, CookAll, HowManyFS, Lvl, Fire, ExpStart, Exp, Loads, Level: Integer;
BankTrue: Boolean;
Some things like this:
Can be shortened to this:
Instead of this:
SCAR Code:
procedure Login;
begin
LoginPlayer;
end;
begin
Login;
end.
You could just do this:
You should really learn how to use standards.
4 post and 2 scripts, well done 
I fixed your standards.