PDA

View Full Version : [SHARD] Player Saving



Justin
June 17th, 2010, 23:06
If your developing a server using Shard Revolutions, then you may have noticed when you logout, your data does not save. This is how to fix that:

Go into PlayerManager.java and find:


String file = "./savedGames/" + tempSave.playerName + ".txt";

replace that with:


String file = "./savedGames/" + tempSave.playerName + ".dat";

Done.