12.05.2012, 11:59
Hey guys i need your help i have a PM System That You Can Disabled And Enable Through
Dialog The First Button Is Enable And 2'nd Is Disable It Works fine but i want to make a SendClientMessage Show When Someone Presses The Enable / Disable here is my OnDialogResponse
pawn Код:
DIALOG_STYLE_MSGBOX
pawn Код:
if(dialogid == 1)
{
if(!response) return PMEnabled[playerid] = 0;
if(response) return PMEnabled[playerid] = 1;
return 1;
}