Hi, When I export my game as a application, the high scores don't work anymore. They do when I open the game with greenfoot. Please help :(


1 2 3 4 5 6 7 8 9 10 | if (UserInfo.isStorageAvailable()) { UserInfo Order_score = UserInfo.getMyInfo(); if (punten > Order_score.getInt( 0 )) { Order_score.setInt( 0 , punten); Order_score.store(); } high_score = Order_score.getInt( 0 ); } |