- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
int arrayCount = [itemArray count];
if( currentHeight < 10000 ) {
currentItemType = random() % arrayCount;
} else if( currentHeight < 50000 ) {
currentItemType = random() % arrayCount;
} else if( currentHeight < 100000 ) {
currentItemType = random() % arrayCount;
} else {
currentItemType = random() % arrayCount;
}