by jazz_e_bob » Fri Aug 19, 2005 11:01 am
global variables
int planeCount = 0;
int experiencePoints = 0;
on destroy plane
planeCount ++;
if (planeCount == 10)
{
experiencePoints += 3;
planeCount = 0;
}
This code may work matey...
Controlling complexity is the essence of computer programming.