The co-ords inside the Amount.scar is incorrect atm thats why it is only reading some of the numbers.
If you want to correct it to make it work then..
SCAR Code:
procedure AreaInfo(area: string; var startx, starty, rowsize, colsize,
colnumber, rownumber: Integer);
begin
case LowerCase(area) of
'inv', 'inventory':
begin
startx := 563;
starty := 212;
rowsize := 38;
colsize := 42;
colnumber := 4;
rownumber := 7;
end
'shop':
begin
startx := 79;
starty := 68;
rowsize := 47;
colsize := 47;
colnumber := 8;
rownumber := 5; //?
end;
'bank':
begin
startx := 78;
starty := 61;
rowsize := 38;
colsize := 47;
colnumber := 8;
rownumber := 6;
end;
'trade':
begin
startx := 324;
starty := 72;
rowsize := 33;
colsize := 42;
colnumber := 4;
rownumber := 7;
end;
'your trade':
begin
startx := 35;
starty := 74;
rowsize := 33;
colsize := 42;
colnumber := 4;
rownumber := 7;
end;
else InvalidOption(area);
end;
end;
Is what you need to replace in amount.scar located at SRL/SRL/Core/Amount.scar
Beware, if you change this and no1 else has it changed, the script wont work for the other person
Best solution is to wait until a update to SRL is made with the fix, or make yr own coinammount
.