05.04.2014, 03:23
Mim ajudem a Colocar um Comando em que eu adm autorizo o player a mudar nick e o player da /mudarnick. pfv.
CMD:mudarnome(playerid, params[]) { new L_NOVO_NOME[MAX_PLAYER_NAME]; if(sscanf(params, "s[MAX_PLAYER_NAME]", L_NOVO_NOME)) return SendClientMessage(playerid, -1, "Uso: /mudarnome [Novo nome]");<<<@!1!@>>> new L_NOME_ANTIGO[MAX_PLAYER_NAME]; GetPlayerName(playerid, L_NOME_ANTIGO, MAX_PLAYER_NAME); SetPlayerName(playerid, L_NOVO_NOME); new L_STRING[128]; format(L_STRING, 128, "%s alterou seu nome para %s!", L_NOME_ANTIGO, L_NOVO_NOME); SendClientMessageToAll(-1, L_STRING); return 1; }