10.06.2013, 03:36
Buenas tengo esta funcion quй hize yo mismo:
pero no me funciona D: u.u, alguien sabe como puedo hacer para quй funcione??
dejo variable clantag:
y como la seteo:
no tira ningun error pero no envia el mensaje, u.u
pawn Код:
stock SendMessageToCLAN(color,CMessage[],TAG[])
{
for(new x= 0; x< MAX_PLAYERS; x++)
{
if(strcmp(TAG, ClanTAG[x], true, 10) == 0 && IsPlayerConnected(x))
{
SendClientMessage(x,color,CMessage);
return 1;
}
}
return 1;
}
dejo variable clantag:
pawn Код:
new ClanTAG[MAX_PLAYERS][30];
pawn Код:
mysql_row(SQL_STR, "CLAN_TAG");
strmid(ClanTAG[playerid], SQL_STR, 0, strlen(SQL_STR));