home *** CD-ROM | disk | FTP | other *** search
- stop();
- ball._visible = false;
- _root.ball.mode = "rampUp";
- _root.ball.pos.x = ball._x + this._x;
- _root.ball.pos.y = ball._y + this._y;
- _root.ball.vel.x = 0;
- _root.ball.vel.y = -18;
- this.onEnterFrame = function()
- {
- if(_root.ball.pos.x - this._x < -70)
- {
- _root.ball.mode = "table";
- if(_root.debug)
- {
- trace(_root.saloonDoorOpen);
- _root.ball.pos.x = 397;
- _root.ball.pos.y = 304.5;
- _root.ball.vel.x = -8;
- _root.ball.vel.y = -10;
- }
- else
- {
- randomVelx = new Array(-7.6,-6.12,-7);
- var rampExit = random(3);
- trace("rampExit = " + rampExit);
- _root.ball.vel.x = randomVelx[rampExit];
- _root.ball.vel.y = -0.14;
- }
- this.onEnterFrame = undefined;
- }
- };
-