static bool HandleBuffCommand(ChatHandler * handler, const char * args)
{
Player * pl = handler->GetSession()->GetPlayer();
if(pl->InArena())
{
pl->GetSession()->SendNotification("You can't use that item in an arena match!");
return false;
}
pl->RemoveAurasByType(SPELL_AURA_MOUNTED);
for(int i = 0; i < 7; i++)
pl->AddAura(auras, pl);
handler->PSendSysMessage("|cffB400B4You have been buffed, enjoy!");
return true;