• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[Arcemu][Lua](Open bank window)

DarkAngel

Wiki Author
Hey mate, nice script. You might want to add the ":lower()" method to the message, which would make messages such as Bank or BANK available to the player.

Code:
function BanksOnChat(event, player, message, type, language)
            message = message:lower()
            if(message == MSG_BANK) then
                     player:SendBankWindow(player)
            end
end
 
Last edited:
Top