25.04.2011, 18:42
I want to kick player if he ESCape from Dialog, can someone help me about this?
if(dialogid == 1) // Note: that you have to change the ID / Name which you defined...
{
if(!response)
{
SendClientMessage(playerid,0xFF0000AA,"You have aborted");
Kick(playerid);
return 1;
}
}