10.08.2013, 19:12
Agrega eso.
Para mandar un dialogo a todos pones esto:
Igual que ShowPlayerDialog pero sin playerid
pawn Код:
stock ShowDialogToAll(dialogid, style, caption[], info[], button1[], button2[])
{
for (new i; i < GetMaxPlayers(); i++)
{
ShowPlayerDialog(i, dialogid, style, caption, info, button1, button2);
}
return 1;
}
pawn Код:
ShowDialogToAll(255, DIALOG_STYLE_MSGBOX, "Prueba", "Solo probando xD", "OK", "Cancelar");

