How can I save my high scores so no one can change them. I'm saving them in a text file at the mo using this code ,but would like something better. Any ideas?
success=CreateFile("high.txt") If Not success RuntimeError "error creating file" file=WriteFile("high.txt") If Not file RuntimeError "failed to open test.txt file" For i=0 To 9 For j=0 To 1 WriteLine file,highscores$[i,j] Next Next CloseStream file