I get the errormessage "List index out of bounds" when executing this:
type tattribute = record
base,modify,modlvl,minmax: integer;
end;
var warmth:array[1..3] of tattribute;
.
.
.
warmth[1].base :=strtoint(ReadINI(config,'HEAL_WARMTH','Healed_Base','20'));
why? -.-