07.03.2014, 23:20
Well, you would go onto OnDialogResponse, and follow the syntax. Personally I perfer to do:
pawn Код:
switch(dialogid)
{
case 1:
{
switch(listitem):
{
case 0: //your first item reaction, so in your case, it'd be healing your player.
}
}
}