Hey.
What I'm trying to do is this:
PHP Code:
#define MAX_PLAYERS 33
#define TOTAL_RACES 5
new g_PlayerXP[MAX_PLAYERS][TOTAL_RACES]
new g_PlayerLevel[MAX_PLAYERS][TOTAL_RACES]
...and when I try this for example:
PHP Code:
g_PlayerXP[id][3] = 200
client_print(id, print_chat, "XP: %d", g_PlayerXP[id][3])
It just returns 0 when I try to print it on screen...
Suggestions?
__________________