new nonewbie;
if(strcmp(cmd, "/n", true) == 0 || strcmp(cmd, "/n", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREEN, " You havent logged in yet !");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GREEN, " The Newbie Chat has been disabled by an Admin !");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, COLOR_GREEN, " You can't speak, you have been silenced !");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GREEN, "USAGE: (/n)ewbie [Newbie Chat, Ask Questions]");
return 1;
}
format(string, sizeof(string), " *** Newbie *** %s: %s ", sendername, result);
OOCOff(COLOR_GREEN,string);
printf("%s", string);
}
return 1;
}
if(strcmp(cmd, "/nonewbie", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 3 && (!nonewbie))
{
noooc = 1;
BroadCast(COLOR_GREEN, " Newbie Chat has been disabled by an Admin !");
}
else if (PlayerInfo[playerid][pAdmin] >= 3 && (nonewbie))
{
noooc = 0;
BroadCast(COLOR_GREEN, " Newbie Chat has been enabled by an Admin !");
}
else
{
SendClientMessage(playerid, COLOR_GREEN, " you are not authorized to use that command!");
}
}
return 1;
}
new nonewbie;
|
Originally Posted by REDRUM
ok sorry, but yes this is works with gf, and add this to the top of code
Код:
new nonewbie; |