16.08.2011, 13:02
There's your problem, how can you expect to store a string which consists of multiple characters in a single cell, it's not going to work! You need to have several cells to store that data, which is what we call an array. For example:
Does that make sense?
pawn Код:
enum iDetails
{
Pass[50],
Cash,
Admin,
Tut,
Score
};
new pInfo[MAX_PLAYERS][iDetails];