23.01.2013, 04:11
Oh okay.
Let's take a look at the differences between your variables, and the one's that you're having errors with.
This is one you're having an error with.
This is one of yours:
There's a difference here! The first one is trying to access the "pWalkie" variable in the "PlayerInfo" array (aka. an enum). Your variable, on the other hand, is a standalone variable and the only other value associated with it would be a player's ID.
Does it make sense so far?
Let's take a look at the differences between your variables, and the one's that you're having errors with.
This is one you're having an error with.
pawn Код:
PlayerInfo[playerid][pWalkie]
pawn Код:
pWalkie[playerid]
Does it make sense so far?