21.09.2009, 15:06
Quote:
|
Originally Posted by Abhishek
- If you havent assigned something if(!response) in OnDialogResponse, and there is another filterscript which has if(!response) assigned somewhere... then, when you click the 2nd button of 1st filterscript, you will see the result as the one in 2nd filterscript...
quite difficult to explain... eg. 1st filterscript Quote:
Quote:
i hope i explained enough...! WTF? i knew another bug ... damn it... will get back as soon as i remember it again EDIT: The bug i reported is not just while we have dialogs in different Filterscripts... it exists even if the dialogs are in same FS |
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid)
{
case 1000:
{
if(response)
{
//dialog ID 1000 when response is 1
}
else
{
//dialog ID 1000 when response is 0
}
}
}
return 1;
}

