07.06.2015, 11:20
https://sampwiki.blast.hk/wiki/OnDialogResponse
PHP код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch (dialogid)
{
case DIALOG_STUNTTELES:
{
if (response)
{
// teleport to stunting locations
}
}
case DIALOG_DMTELES:
{
if (response)
{
// teleport to DMing locations
}
}
case DIALOG_DRIFTTELES:
{
if (response)
{
// teleport to drifting locations
}
}
// rest.. same as above..
default: return 0;
}
return 1;
}