Would it be possible that you can fix that panel a bit in the new update?
Code:
stock SkipHalePanelNotify(client, bool:newchoice = true)
{
if (!Enabled || !IsValidClient(client) || IsVoteInProgress())
{
return;
}
new Handle:panel = CreatePanel();
decl String:s[256];
SetPanelTitle(panel, "[VSH] You're Hale next!");
Format(s, sizeof(s), "%t\nAlternatively, use !resetq.", "vsh_to0_near");
CRemoveTags(s, sizeof(s));
ReplaceString(s, sizeof(s), "{olive}", "");
ReplaceString(s, sizeof(s), "{default}", "");
DrawPanelItem(panel, s);
SendPanelToClient(panel, client, SkipHalePanelH, 30);
CloseHandle(panel);
return;
}
public SkipHalePanelH(Handle:menu, MenuAction:action, param1, param2)
{
return;
}
I'll remove that shit of code in my saxtonhale.sp becuase that panel looks so ugly.
A menu with a yes/no option would be awesome, no will automatically open the !resetq option.
Thanks!
__________________