Posts: 20
Threads: 11
Joined: Dec 2013
Reputation:
0
how can i define "playerinfo" ?
Posts: 4,878
Threads: 85
Joined: Jun 2007
Reputation:
0
Thats gamemode-specific. Noone can tell you without knowing what code youre using.
PlayerInfo is a commonly used variable for storing player data in. If you can't define that, then learn coding by starting something more simpler.
Posts: 252
Threads: 16
Joined: Jun 2012
I think this is what you mean? If you are unsure on what this means, I would do some research in the SA-MP Wiki....
Код:
enum PlayerInfo
{
Var1,
Var2[10]
}
new pInfo[MAX_PLAYERS][PlayerInfo]; // So you can either use pInfo[playerid] or PlayerInfo[playerid]