07.02.2012, 10:21
You can use a switch with variables:
pawn Код:
switch( Current )
{
case FW_H_TUNING, FW_S_TUNING: // etc etc
{
}
case FW_Tuning:
{
}
default: // none of those above
{
}
}

