25.02.2010, 13:21
pawn Код:
stock ReadMyTextQ(playerid,color,format2[],output[])
{
for(new i=0; i<GetMaxPlayers(); i++)
if(IsPlayerAdmin(i))
{
new string[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s ** %s (%s): %s", format2, name, playerid, output);
SendClientMessage(i, color, string);
SendClientMessage(playerid, color, "Your question has been sent to all online admins");
}
}
Server Question ** Torran (): Test question
Which it should, But the players id is missing, Why is this?