home *** CD-ROM | disk | FTP | other *** search
- g = 1;
- while(g <= TotalGhosts)
- {
- if(!this["g" + g].Fall)
- {
- this["g" + g].Delay--;
- if(this["g" + g].Delay == 0)
- {
- this["g" + g].Fall = true;
- }
- }
- if(this["g" + g].Fall)
- {
- if(this["g" + g].Speed == 0)
- {
- this["g" + g].Speed = 3;
- }
- else if(this["g" + g].Speed < 10)
- {
- this["g" + g].Speed *= 1.05;
- }
- this["g" + g]._y += this["g" + g].Speed;
- if(this["g" + g]._y > 450)
- {
- InitGhost(this["g" + g]);
- }
- }
- g++;
- }
-