23.02.2011, 00:20
bueno yo te voy a dar lo que pedis en codigo, pero el nick tiene que ser identico con mayusculas/minusculas o fallara.
pawn Код:
public OnPlayerConnect(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
if(!srcmp(name, "tu_nick", false)){
new str[MAX_PLAYER_NAME+13];
format(str, sizeof(str), "[admin dueсo]%s", name);
SetPlayerName(playerid, str);
}
return 1;
}