22.06.2011, 15:36
So that could be the problem? i have searched around the script and I couldnt find it >.<!
EDIT: I have added it now and still not working:
something like that Im 99% its totally wrong tho
EDIT: I have added it now and still not working:
pawn Код:
stock GetNames(playerid, ...)
{
new names[64], pnames[MAX_PLAYER_NAME], num;
for(new i; i<numargs(); i++)
{
if(IsPlayerConnected(getarg(i)))
{
num++;
GetPlayerName(getarg(i), pnames, MAX_PLAYER_NAME);
format(names, sizeof(names), "Number %d: [ID:%i] Name: %s",num,getarg(i),pnames);
SendClientMessage(playerid,0xDA635CFF,names);
}
else continue;
}
}