PHP Code:
new szItemName[32]
Is creating a new array which store a maxsize of 32, I suggest you read some ground tutorials on arrays.
An example of the maxsize use, max number of players on a server is 32 and you want to store a value on each and one player:
PHP Code:
new iPlayers[32], iValue;
for( new i = 0; i < get_maxplayers( ); i++ )
{
if( is_user_connected( i ) )
iPlayers[i] = iValue;
}
the size starts at 0 on the array, so if i want first value of the array I'd use something like:
PHP Code:
new iFirstValue = iPlayers[0];
I hope you get the number assignment