Hello,
For some odd reason, the @listenbg command does not function properly, even when used I can still see the annoying Battleground Messages,
I was wondering if anyone can fix the following code:
/*================================================
* @mutebg - Mutes Battleground announcements.
*------------------------------------------------*/
ACMD_FUNC(mutebg)
{
if( sd->state.bg_listen )
{
sd->state.bg_listen = 0;
clif_displaymessage(fd, "Battleground announcements have been disabled.");
}
else
{
sd->state.bg_listen = 1;
clif_displaymessage(fd, "Battleground announcements have been enabled.");
}
return 0;
}
Any help would be greatly appreciated.
Cheers.