Code:
for( new i = 1; i <= playerCount; i++ )
// if playercount is 32 for example... the reuslt is
// 1, 2, 3, 4, 5, 6, 7, 8, 9, 10... 32, when "i" reach
// to 33, the loop stop
for( new i = 0; i < playerCount; i++ )
// if playercount is 32 for example... the result is
// 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10... 31, when "i" reach
// to 32, the loop stop