no i have no problem in saving the game
just loading
my real code:
if file exist ("Data.Outscape")
open to read 1, "Data.Outscape"
Read String 1, level$
Read String 1, clubmen$
Read String 1, gold$
Read String 1, AI$
Read String 1, clubattack$
Read String 1, clubdefence$
close file 1
level = Val(level$)
clubmen# = Val(clubmen$)
gold = Val(gold$)
AI# = Val(AI$)
clubattack = Val(clubattack$)
clubdefence = Val(clubdefence$)
Open To Write 1, "Data.Outscape"
write string 1,"level:"
Write String 1,str$(level)
write string 1,"Clubmen Amount:"
Write String 1,str$(clubmen#)
write string 1,"Gold Amount:"
Write String 1,str$(gold)
write string 1,"AI level:"
Write String 1,str$(AI#)
write string 1,"Your Clubmens Attack Power."
Write String 1,str$(clubattack)
write string 1,"Your Clubmens Defensive Power."
Write String 1,str$(clubdefence)
Close File 1
Creators of Outscape