26.06.2015, 11:05
Pretty easy if you use the sscanf plugin, one can type either userid OR username and it's a pretty small code...
once again, indentation is fucked by forums...
once again, indentation is fucked by forums...
Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { switch(dialogid) { case DIALOG_INPUT: { if(response) { new userid; if(sscanf(inputtext,"u",userid)) return ShowPlayerDialog(playerid,DIALOG_INPUT,DIALOG_STYLE_INPUT,"Enter name/userid","Error: Enter the name/userid","OK","Cancel"); DoSomethingToPlayer(userid); // Do whatever } } } return 1; }