one small change for those that couldn't get it to work in qbasic
(I kept getting a compile error dealing with the quantity string)
' ======================================
' slots 1-3 - Milk, bread cakes, tome of order and discord
' everyone gets these
' item #,quantity
' ======================================
DATA 9990,20
DATA 9991,20
DATA 18700,1
DATA -1,-1 ' end table
Change this last line to:
DATA -1,-1
'end table
|