01.06.2014, 04:05
I don't know what the problem is, I haven't looked at the code from a meaningful POV - but the mistakes I can gather are -
1) You are using a GLOBAL variable to store per - player checkpoints! You need an array for that.
2) You are using random(2) to get a random number between 0, 1 & 2. This is wrong - for that, you use random(3) - 3 is the maximum SIZE.
I'll edit this when I look at the code again
1) You are using a GLOBAL variable to store per - player checkpoints! You need an array for that.
2) You are using random(2) to get a random number between 0, 1 & 2. This is wrong - for that, you use random(3) - 3 is the maximum SIZE.
I'll edit this when I look at the code again