27.08.2012, 12:03
There's no no point in creating the same two variables for the same use. Just create them once. You could try it like this:
pawn Код:
if(UserStats[playerid][KeysBob] == 0)
{
// your code...
}
if(UserStats[playerid][KeysBob] == 1)
{
// your code...
}