22.03.2011, 01:44
Good and simple script, one tip:
Use Case statements instead of If statements, they're more effective.
Use Case statements instead of If statements, they're more effective.
pawn Код:
if(dialogid == ...)
{
switch(listitem)
{
case 0:
{
//...
}
case 1:
{
//...
}
case 2:
{
//...
}
}
}