19.08.2010, 00:10
To use separate variables in a switch statement... well, you can't, you need to create another switch statement.
pawn Код:
switch(function1[playerid])
{
case 1: print("yay"); // and so on.
}
switch(function2[playerid])
{
case 1: print("yay"); // and so on.
}