30.04.2010, 21:14
Queria saber como fazer akele /ooc Fiz assim mais nao funcionou alguem pode me ajudar
if(strcmp(cmd, "/ooc", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 3 && (!noooc))
{
noooc = 1;
BroadCast(COLOR_GRAD2, " OOC Chat desativado pelo admin!");
}
else if (PlayerInfo[playerid][pAdmin] >= 3 && (noooc))
{
noooc = 0;
BroadCast(COLOR_GRAD2, " OOC Chat ativado pelo admin ! !");
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Voce nгo esta autorizado a usar este comando!");
}
}
return 1;
}
if(strcmp(cmd, "/ooc", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 3 && (!noooc))
{
noooc = 1;
BroadCast(COLOR_GRAD2, " OOC Chat desativado pelo admin!");
}
else if (PlayerInfo[playerid][pAdmin] >= 3 && (noooc))
{
noooc = 0;
BroadCast(COLOR_GRAD2, " OOC Chat ativado pelo admin ! !");
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Voce nгo esta autorizado a usar este comando!");
}
}
return 1;
}