24.06.2010, 14:19
What do you mean?
Like this?
Or what? I didnt understand your post
Like this?
pawn Код:
if(strcmp(cmdtext, "/sendmsg", true) == 0)
{
ShowPlayerDialog(playerid, 1337, DIALOG_STYLE_INPUT, "Send Message", "Input the message you wish to send", "Send", "Cancel");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1337)
{
if(response)
{
SendPlayerMessageToAll(playerid, inputtext);
}
}
return 0;
}

