11.03.2012, 22:05
new levels,Nam[MAX_PLAYER_NAME],pname[MAX_PLAYER_NAME],str[128],ID;
Right there, line 21. You've defined it there making it a global variable. You would need to remove that and then only create it inside of the function you're using to make it local.
Right there, line 21. You've defined it there making it a global variable. You would need to remove that and then only create it inside of the function you're using to make it local.