You have to be wary that trying to load a file that doesn't exist will result in an error. To prevent this, you should check if the file exists with CHKFILE. This instruction returns a boolean value, so you can put it in an IF statement.
Your load block would look like this...
IF CHKFILE("DAT:RECORDS") THEN
DIM LOADARR[0]
LOAD "DAT:RECORDS",LOADARR,FALSE
MONEY=LOADARR[0]
ENDIF
0そうだね プレイ済み