Sziasztok!
Ti szerintetek hogyan érdemes tárolni a játékos adatait?
Ki melyiket ajánlja?
1. Enumerators 
enum e_PlayerInfo
{
    Money,
    Score,
    Kills,
    Deaths
};
new pInfo[MAX_PLAYERS][e_PlayerInfo];
 2. 
new Money[MAX_PLAYERS];
new Score[MAX_PLAYERS];
new Kills[MAX_PLAYERS];
new Deaths[MAX_PLAYERS];
 3. Player variable 
SetPVarInt(playerid, \"Money\", 123);
SetPVarInt(playerid, \"Score\", 123);
SetPVarInt(playerid, \"Kills\", 123);
SetPVarInt(playerid, \"Deaths\", 123);
 Válaszokat előre is köszönöm!