Code: Alles auswählen
InitSprite()
InitKeyboard()
InitSound()
;Save File
highscore1 = 100
highscore2 = 50
highscore3 = 10
CreateFile(0, "Highscores.save")
WriteStringN( Str(highscore1))
CloseFile(0)
;load File
OpenFile(0,"Highscores.save")
OpenScreen(1024,768,32,"Load")
Repeat
FlipBuffers()
ExamineKeyboard()
StartDrawing(ScreenOutput())
Locate(100,100)
DrawingMode(1)
FrontColor(250,250,250)
DrawText(ReadString())
StopDrawing()
CloseFile(0)
If KeyboardPushed(#PB_Key_Escape)
End
EndIf
ForEver
Der string wird bei mir nur sehr kurz und so flackernd angezeigt!!
Bitte um Hilfe
