private static void RecoveryAccount()
        {
            try
            {
                AccountRecovery recovery = GameEngine.AccountRecovery(9, "6777e4534f");

                Console.WriteLine("You are about to change password for account with username: "******", recovery is valid until " + recovery.ExpireDate.ToString("yyyy-MM-dd hh:mm"));
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }