* @param pl_name
* @param pl_pwd
* @return the player UUID
*/
public synchronized Message newAccount(String pl_name, String pl_pwd) {
Message response = null;
try {
// Try to create a new player acount
response = game.newAccount(pl_name, pl_pwd);
if (response == null) {
throw new GameException(GameException.typeErr.SYSKO);