04.09.2012, 09:26
If i want to turn
this into
How would i do it?
pawn Код:
format(string,128, "[Player]: %s has joined the server.(Aka: %s)",PlayerName, dini_Get("ladmin/Config/aka.txt",tmp3));
for(new i = 0; i < GetMaxPlayers(); i++) if(IsPlayerConnected(i) && playerid != i) SendClientMessage(i,grey,string);
pawn Код:
new mess[128],IP[128];
GetPlayerIp(playerid,IP,sizeof(IP));
format(mess,sizeof(mess),"%s has joined the server. [ Country: %s | IP Address: %s ]",PlayerName,Country,IP);
printf(mess);
format(string, sizeof(string), "^^^ %s [Id:%d] has joined the server.(%s) ^^^", PlayerName, playerid, Country);
SendClientMessageToAll(COLOR_GREY, string);}