02.01.2010, 10:45 
	
	
	
		PAWN is limited to 3d arrays only. You can only go this far
	
	
	
	
pawn Код:
enum playerstrings
{
string[128]
};
new strings[MAX_PLAYERS][playerstrings];
main()
{
new playerid = 0;
strcat(strings[playerid][string], "String", 128);
}

