20.12.2010, 20:20
Thanks, and last problem then :P
I want it something like this:
I want it something like this:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/status", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
ShowPlayerDialog(playerid, DIALOGID_GOES_HERE, DIALOG_STYLE_MSGBOX, "Info", "You ID: %s", "Done", "Cancel", playerid);
return 1;
}
}
return 0;
}