14.12.2011, 18:04
The error simply means:
new Array[5] = {1,2,3,4,5,6}
Notice the array size above is not large enough to store all information you've given it.
You will need to adjust the array declared size to fit all of the information you have given it to store.
Why have you used PedSkins[171][1]?
Why not just declare it as PedSkins[171]? That should fix it
new Array[5] = {1,2,3,4,5,6}
Notice the array size above is not large enough to store all information you've given it.
You will need to adjust the array declared size to fit all of the information you have given it to store.
Why have you used PedSkins[171][1]?
Why not just declare it as PedSkins[171]? That should fix it

