Nick: \\WappO Oggetto: Codice Skript X crackers Data: 6/12/2003 18.14.2 Visite: 30
// Action script... // [onClipEvent of sprite 11 in frame 3] onClipEvent (load) { this._x = random(200); this._y = -10; yCenterSpin = 0; xCenterSpin = this._x + 100; yscaleIt = 1; xscaleIt = 1; this._yscale = 100; this._xscale = 100; } onClipEvent (enterFrame) { if (this._yscale <= -100) { yscaleIt = yscaleIt * -1; } else if (this._yscale >= 100) { yscaleIt = yscaleIt * -1; } // end if if (this._xscale <= -100) { xscaleIt = xscaleIt * -1; } else if (this._xscale >= 100) { xscaleIt = xscaleIt * -1; } // end if if (random(10) <= 1) { yscaleIt = yscaleIt * -1; } // end if if (random(10) <= 1) { xscaleIt = xscaleIt * -1; } // end if if (yscaleIt > 0) { this._rotation = this._rotation + 5; } // end if if (yscaleIt < 0) { this._rotation = this._rotation - 5; } // end if this._yscale = this._yscale - yscaleIt * 5; this._xscale = this._xscale - xscaleIt * 5; yCenterSpin = yCenterSpin + 3; this._y = this._y + yVelocity; this._x = this._x + xVelocity; if (this._y >= yCenterSpin) { yVelocity = yVelocity - 1; } else if (this._y <= yCenterSpin) { yVelocity = yVelocity + 1; } // end if if (this._x >= xCenterSpin) { xVelocity = xVelocity - 1; } else if (this._x <= xCenterSpin) { xVelocity = xVelocity + 1; diff = yCenterSpin - this._y; yVelocity = yVelocity + diff / 200; diff = xCenterSpin - this._x; zVelocity = zVelocity + diff / 200; } // end if if (this._y >= 800) { this.removeMovieClip(); } // end if } // [onClipEvent of sprite 11 in frame 3] onClipEvent (load) { clipCount = 0; } onClipEvent (enterFrame) { checker = random(700); if (checker <= 8) { clipCount = clipCount + 1; duplicateMovieClip(_root.snowFlake, "snowFlake" + clipCount, clipCount); if (clipCount == 10) { clipCount = 1; } // end if } // end if } // [Action in Frame 1] if (_root.getBytesLoaded() != _root.getBytesTotal()) { gotoAndPlay(1); } // end if // [Action in Frame 2] gotoAndPlay(3); voglio le vite infinite!!!! auhauhauhauhauhah |