Quote:
Originally Posted by RealCop228
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.
pawn Код:
PlayerInfo[playerid][pWalkie]
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?
|
Ohhh I didn't notice that. So i change it to pWalkie[playerid]
lol makes more sense.