public void Seconomy_TransferToWorld(string playerName, Money amount, string journalMsg, string transactionMsg)
        {
            SEconomy seconomy = this.Seconomy_Instance();

            IBankAccount account = seconomy.GetPlayerBankAccount(playerName);

            account.TransferTo(seconomy.WorldAccount, amount, BankAccountTransferOptions.AnnounceToSender, journalMsg, transactionMsg);
        }