19.04.2009, 10:55
Hey, I tried to make a /irc command but when i write anything it spams the chat with the irc message...
thanks
pawn Код:
dcmd_irc(playerid,params[])
{
new pName[MAX_PLAYER_NAME],string[256];
GetPlayerName(playerid,pName,sizeof(pName));
format(string,sizeof(string),"IRC: %s [%d]: %s",pName,playerid,params[0]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] >= 1)
{
SendClientMessage(i,COLOR_BLUEMEDIUM,string);
}
SendClientMessage(playerid,COLOR_BLUEMEDIUM,string);
}
return 1;
}