I think this is a typo you may want to fix, Step 12 on standards:
// Bad
var
Logs: Integer;
Ores: Integer;
Fish: Integer;
function WalkToBank(i: Integer; j: Integer; l: string; k: string): Boolean;
// Good
var
Logs, Ores, Fish: Integer;
function WalkToBank(i, j: Integer; l, s: String): Boolean;
That should be a "k"
Sorry for being picky, Amazing guide, This is going to be my first step into proggraming. Learning so much right now xD
Typo 2: Again sorry for being anal, but that must mean i'm good at spotting mistakes, that should come in handy while writting scripts. (Step 13 in standards)
// Bad
var
b: Boolean;
// Good
var
DoesBank: Boolean <----- Missing ";"


Reply With Quote














please help ill +rep
