hi currently it cost 5gold and 30copper to send a mail, how can i cange this to just 30copper?
and when i hold my mouse over my lua scripted npc the moause dissepeards how can i fix this?
hi currently it cost 5gold and 30copper to send a mail, how can i cange this to just 30copper?
and when i hold my mouse over my lua scripted npc the moause dissepeards how can i fix this?
You have to make a core edit to change the mail price.
BattlegroundMgr.h (ArcEmu-world folder)
To change the levels that players can enter battlegrounds
/* get level grouping for player */
static inline uint32 GetLevelGrouping(uint32 level)
{
if(level < 10)
return 0;
else if(level < 20)
return 1;
else if(level < 30)
return 2;
else if(level < 40)
return 3;
else if(level < 50)
return 4;
else if(level < 60)
return 5;
else if(level < 70)