2 féle képpen is próbáltam de nem jó
Parancs:
if (strcmp(\"/teszt\", cmdtext, true, 10) == 0)
{
ShowPlayerDialog(playerid, DIALOG_TESZT, DIALOG_STYLE_MSGBOX, \"Teszt\", \"Teszt\", \"Elfogad\", \"Elutasít\");
return 1;
}
1.megoldás
if(dialogid == DIALOG_TESZT)
{
if(response) // ha az OK gombra nyomott
{
SendClientMessage(playerid, -1, \"Te az OK gombra kattintottál\");
}
if(!response) // mégse
{
SendClientMessage(playerid, -1, \"Elutasítottad\");
}
return 1;
}
2.megoldás
if(dialogid == DIALOG_TESZT)
{
if(response) // ha az OK gombra nyomott
{
SendClientMessage(playerid, -1, \"Te az OK gombra kattintottál\");
}
else // ha a Mégse gomba kattintott
{
SendClientMessage(playerid, -1, \"Te a mégse gombra kattintottál\");
}
return 1;
}