10.05.2010, 17:29
Код:
ShowPlayerDialog(playerid,2,DIALOG_STYLE_INPUT,"Change your nickname","You can enter here a new nickname:","Accept","Nevermind");
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 2 && response)
{
SetPlayerName(playerid,inputtext);
return 1;
}
Now i want this in a command /aperm Playerid
Can someone make it for me?

