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

[SOLVED] Banker and Mail

Status
Not open for further replies.

Lstm

Respected Member
I am wanting to make a gossip menu to open the bank and email

I'm using

player->SendShowBank(player->GetGUID()); // Bank

player->HandleGetMailList(); // Mail

but encountered problems .. someone could tell me how would it be?
 

Rochet2

Moderator / Eluna Dev
The functions are
SendShowMailBox
SendShowBank

And they need a valid mailbox and banker guid to work.
You cant just feed it some player guid and expect it to work.

To make them work with player guid you need to do core edits.
By default the core prevents simply using player guid because it is not blizzlike and allowing any guid may result to cheating, like accessing bank without a banker.
 

Lstm

Respected Member
I am creating a VIP item and wanted these e-mail functions and bank along with it
 

Lstm

Respected Member
player->SendShowMailBox(player, item);
player->SendShowBank();
i using

-----
EDIT

OK TRANKS Rochet
 
Status
Not open for further replies.
Top