STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
231354
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2623 · P5245

<div style="position:absolute;top:-99px;left:-99px;"><img src="https://tools.swfchan.com/stathit.asp?noj=FRM76154384-8DC&rnd=76154384" width="1" height="1"></div>

Prueba Carga del juego by Spotted.Leopard (FlashTestGame).swf

This is the info page for
Flash #164547

(Click the ID number above for more basic data on this flash file.)


ActionScript [AS1/AS2]
Combined Code
frame 1 { function carga() { var v2; var v3; var v4; v2 = _root.getBytesTotal(); v3 = _root.getBytesLoaded(); v4 = Math.floor(v3 * 100 / v2); porcentaje_txt.text = v4 + '%'; if (v3 == v2) { clearInterval(hiloPrecarga); _root.play(); } } var hiloPrecarga = setInterval(carga, 1); this.stop(); } movieClip 13 { } frame 2 { stop(); _root.puntuacion = 0; } movieClip 18 { } movieClip 19 { } movieClip 20 { } movieClip 23 { } movieClip 25 { } movieClip 27 { } movieClip 29 { } movieClip 30 { } movieClip 32 { } movieClip 34 { } movieClip 36 { } movieClip 38 { } movieClip 40 { } movieClip 42 { } movieClip 44 { } movieClip 46 { } movieClip 48 { } movieClip 49 { } movieClip 51 { } movieClip 53 { } movieClip 54 { } movieClip 55 { } movieClip 56 { } movieClip 57 { } movieClip 58 { } movieClip 59 { } instance jugador of movieClip 59 { onClipEvent (load) { xvel = 5; yvel = 7; salto = -20; limite = 12; } onClipEvent (enterFrame) { if (_root.suelo.hitTest(_x, _y + _height / 2, true)) { while (_root.suelo.hitTest(_x, -2 + _y + _height / 2, true)) { _y = _y - 1; } yvel = 0; if (Key.isDown(38)) { yvel = salto; _y = _y + yvel; } } else { if (_root.suelo.hitTest(_x, _y - _height / 2, true)) { yvel *= -1; _y = _y + yvel; while (_root.suelo.hitTest(_x, _y - _height / 2, true)) { _y = _y + 1; } } else { _y = _y + yvel; if (yvel <= limite) { ++yvel; } } } _x = _x + (Key.isDown(39) - Key.isDown(37)) * xvel; while (_root.suelo.hitTest(_x + _width / 2, _y, true)) { _x = _x - 1; } while (_root.suelo.hitTest(_x - _width / 2, _y, true)) { _x = _x + 1; } } } movieClip 61 { } instance of movieClip 61 { onClipEvent (enterFrame) { ship = _root.jugador.one; if (Key.isDown(39)) { ship._xscale = 100; ship.gotoAndStop('caminando'); } else { if (Key.isDown(37)) { ship._xscale = -100; ship.gotoAndStop('caminando'); } else { if (Key.isDown(32)) { ship._yscale = 100; ship.gotoAndStop('ataque_cuerpo'); } else { if (Key.isDown(40)) { ship._yscale = 100; ship.gotoAndStop('agachado'); } else { ship.gotoAndStop('normal'); } } } } if (Key.isDown(38)) { ship._yscale = 100; ship.gotoAndStop('salto'); } this._visible = false; } } movieClip 64 { } movieClip 65 { frame 1 { function camControl() { rp.x = _x; rp.y = _y; var v5 = camH * (_yscale * 0.01); var v6 = camW * (_xscale * 0.01); var v3 = sH / v5; var v4 = sW / v6; _x2 = (v6 / 2) * v4; _y2 = (v5 / 2) * v3; _xscale2 = v4 * 100; _yscale2 = v3 * 100; _rotation2 = -_rotation; _parent.filters = this.filters; _parent.transform.colorTransform = this.transform.colorTransform; } function reset() { _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; _parent._rotation = 0; _parent._visible = true; } function set_x2(value) { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._x += value - v2.x; } function get_x2() { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); return v2.x; } function set_y2(value) { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._y += value - v2.y; } function get_y2() { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); return v2.y; } function get_xscale2() { return _parent._xscale; } function set_xscale2(value) { setProperty2('_xscale', value); } function get_yscale2() { return _parent._yscale; } function set_yscale2(value) { setProperty2('_yscale', value); } function get_rotation2() { return parent.rotation; } function set_rotation2(value) { setProperty2('_rotation', value); } function setProperty2(prop, n) { var v3 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v3); _parent[prop] = n; var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._x -= v2.x - v3.x; _parent._y -= v2.y - v3.y; } addProperty('_x2', get_x2, set_x2); addProperty('_y2', get_y2, set_y2); addProperty('_xscale2', get_xscale2, set_xscale2); addProperty('_yscale2', get_yscale2, set_yscale2); addProperty('_rotation2', get_rotation2, set_rotation2); var oldScaleMode = stage.scaleMode; stage.scaleMode = 'exactFit'; var sW = Stage.width; var sH = Stage.height; stage.scaleMode = oldScaleMode; var bounds_obj = this.getBounds(this); var camH = Math.abs(bounds_obj.yMax - bounds_obj.yMin); var camW = Math.abs(bounds_obj.xMax - bounds_obj.xMin); var rp = {'x': this._x, 'y': this._y}; onEnterFrame = function () { camControl(); }; this.onUnload = reset; } instance of movieClip 64 { onClipEvent (enterFrame) { if (_root.jugador.hitTest(this)) { _root.vcam._x += -5; } } } instance of movieClip 64 { onClipEvent (enterFrame) { if (_root.jugador.hitTest(this)) { _root.vcam._x += 5; } } } instance of movieClip 64 { onClipEvent (enterFrame) { if (_root.jugador.hitTest(this)) { _root.vcam._y += -13; } } } instance of movieClip 64 { onClipEvent (enterFrame) { if (_root.jugador.hitTest(this)) { _root.vcam._y += 12; } } } }




http://swfchan.com/33/164547/info.shtml
Created: 19/10 -2018 06:26:28 Last modified: 19/10 -2018 06:26:28 Server time: 08/12 -2025 03:04:07