12.07.2016, 18:44
Vocк tem que cria uma variavel.
Exp Bбsico:
Exp Bбsico:
PHP код:
new bool:Logado[MAX_PLAYERS] = false;
public onPlayerSpawn(playerid)
{
if(Logado[playerid] == false)
{
Logado[playerid] = true;
}
}
public OnPlayerText(playerid, text[])
{
if(text[0] == '.')
{
if(Logado[playerid] == false) return SendClientMessage(playerid, -1, "[x] Vocк tem que estar logado para usar o chat do clг!");
format(pFile, sizeof(pFile), "clas/%s.ini", PlayerName(playerid));
if(dini_Exists(pFile))
{
if(strcmp(dini_Get(pFile, "cla"), "Nenhum", false))
{
new
tmp[128]
;
strmid(tmp, text, 1, strlen(text));
if(!strlen(tmp))
{
SendClientMessage(playerid, COR_BRANCO, "[ > ] Uso correto: . [texto]");
return 0;
}
else
{
for(new c = 0; c < MAX_PLAYERS; c++)
{
if(IsPlayerConnected(c))
{
format(gFile, sizeof(gFile), "clas/%s.ini", PlayerName(c));
if(strcmp(dini_Get(gFile, "cla"), "Nenhum", false))
{
if(strcmp(dini_Get(gFile, "cla"), dini_Get(pFile, "cla"), true) == 0)
{
format(gstring, sizeof(gstring), "( C/C ) %s: %s", PlayerName(playerid), tmp);
SendClientMessage(c, 0x00FF00AA, gstring);
}
}
}
}
return 0;
}
}
}
}
return 1;
}