Quote:
Originally Posted by Powerlord
A few things:
1. new Array[X][32] will give you tag errors if you try to use Strings with it.
2. new String:Array[X][32] creates an array that takes up 1/4 the space that new Array[X][32] does. Same with CreateArray(ByteCountToCells(32)) versus CreateArray(32) because ByteCountToCells(32) returns 8. Just as important, ByteCountToCells may change at a later date if a 64-bit version of srcds appears and SourcePawn starts using 64-bit cells, meaning that you shouldn't hard-code 8 there either.
|
Yes i meant to put the string tag. And thanks for explaining it for me