case 0:
{
ShowPlayerDialog(playerid, 8,DIALOG_STYLE_INPUT,"Mute","Type the player's id below:","Next","Cancel"); // DIALOG ID 8
}
//--------------------------------------------------------------------
if(dialogid == 8)
{
if (response)
{
ShowPlayerDialog(playerid, 9, DIALOG_STYLE_INPUT,"Mute","Enter reason for the mute","Mute","Cancel");
Muted[Player[playerid]] = 1;
return 1;
}
Muted[strval(inputtext)] = 1;
|
Originally Posted by Don Correlli
pawn Код:
|
