02.10.2018, 21:27
Estude e adapte para sua GM:
Tуpico que retirei o comando: https://sampforum.blast.hk/showthread.php?tid=579433
PHP код:
CMD:mudarnick(playerid, params[]) {
new NovoNome[24], Msg[144];
if(PlayerInfo[playerid][pDinheiro] < 0) return SendClientMessage(playerid, -1, "{ff0000}Para mudar de nick Г© necessГЎrio R$1000");
if(sscanf(params, "s[20]", NovoNome)) return SendClientMessage(playerid, -1, "{ff0000}Use: /mudarnick [novo nick]");
new Query[256], Cache:MudarNick;
mysql_format(mysql, Query, sizeof(Query), "SELECT name FROM dmplayers WHERE name='%e'", NovoNome);
MudarNick = mysql_query(mysql, Query, true);
if(cache_num_rows(mysql)) return SendClientMessage(playerid, -1, "{ff0000}AlguГ©m jГЎ usa este nick!"), cache_delete(MudarNick, mysql);
cache_delete(MudarNick, mysql);
if(SetPlayerName(playerid, NovoNome) != 1) return SendClientMessage(playerid, -1, "{ff0000}Este nome estГЎ em uso ou Г© invГЎlido!");
SetPlayerName(playerid, NovoNome);
format(Msg, sizeof(Msg), "{ffff00}[Mudar Nick] %s mudou para %s", PlayerInfo[playerid][pNome], NovoNome);
SendClientMessageToAll(-1, Msg);
GivePlayerMoney(playerid, (-1000));
format(PlayerInfo[playerid][pNome], 24, NovoNome);
SalvarConta(playerid);
return 1;
}