it says i need to end this with a period but that will end the rest of the code and i don't know what else to do i looked a like 3 tut and i cant find out whats wrong
SCAR Code:type
player = record
name : string;
pass : string;
end;
var
current_player: array [0..1] of player;
begin
current_player[0].name:='players name';
current_player[0].pass:='players password';
current_player[1].name:='players name';
current_player[1].pass:='players password';
end;
//continuous code not important



Reply With Quote





