22.02.2015, 01:14
so when I go to add something else to the players info, eg. pRCar, everything else in the playersinfo won't work, like pAdmin will rep if you help
enum pInfo
{
pKey[32],
pReg,
pCash,
pSkin,
pAdmin,
pRCar
};
enum pInfo
{
pKey[32],
pReg,
pCash,
pSkin,
pAdmin,
pRCar, // Now the previously one that was the last will have now a comma (,).
pNEW // The new one won't have a comma.
};