14.04.2017, 12:45
(
Last edited by Loinal; 15/04/2017 at 12:33 PM.
)
Fixed
if(level > pData[lookupid][Admin])
{
new irc[130];
format(irc,sizeof(str),"8,3* Admin %s (ID: %d) granted level %d to %s (ID: %d)",GetName(playerid), playerid, level,GetName(lookupid),lookupid);
IRC_GroupSay(groupID, IRC_CHANNEL, irc);
format(str, sizeof(str), "Admin %s (ID:%d) has granted level %d to you",GetName(playerid), playerid, level);
SendClientMessage(lookupid, COLOR_YELLOW, str);
format(str, sizeof(str),"You have setted %s (ID:%d) to level %d",GetName(lookupid),lookupid,level);
SendClientMessage(playerid, COLOR_YELLOW, str);
if(level >= 3)
{
if(pData[lookupid][Admin] < 3){onlineadmins++;}//If not already an admin count ++
pData[lookupid][Admin] = level;//now set the level
new strings[100+1000];
format(strings, sizeof(strings), "Online Admins: %d",onlineadmins);
TextDrawSetString(oa, strings);
TextDrawShowForPlayer(playerid, oa);
}
}