Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

NOVOGODIŠNJA ZARAZA :)

elitemadzone.org :: MadZone :: Zanimljivi linkovi :: NOVOGODIŠNJA ZARAZA :)

Strane: 1 2

[ Pregleda: 15665 | Odgovora: 34 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

MMX
Miloš Malović
Platform engineer, Supplyframe
Beograd

MMX
SuperModerator
Član broj: 2423
Poruke: 2105
*.telekom.yu

Jabber: mmx@elitesecurity.org
ICQ: 98797759
Sajt: www.mmx.rs


+11 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)18.12.2003. u 11:35 - pre 247 meseci
Meni rekord 320 i nešto metara, a nisam se ni trudio, probao sam samo par puta.
↑ ↑ ↓ ↓ ← → ← → B A B A [select] [start]
 
Odgovor na temu

Maniac
Dalibor Andonov
Subotica,SERBIA

Član broj: 13624
Poruke: 387
*.suonline.net

Jabber: Mobil-Mania
Sajt: www.new world order.org


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)18.12.2003. u 17:06 - pre 247 meseci
ubio ga BOg kad nece da leti vise!
Ako kanis pobjediti nesmijes izgubiti!
Ovo je vreme velikih odluka!
Mozda ce se moje misljenje vremenom menjati ali ne i cinjenica da sam u pravu!
 
Odgovor na temu

twix
NYC

Član broj: 1779
Poruke: 272
*.verat.net

Sajt: www.twixbox.net


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)24.12.2003. u 15:49 - pre 247 meseci
Zar ste vec odustali q(+__+)p

 
Odgovor na temu

cozi

Član broj: 6066
Poruke: 221
*.verat.net



+111 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)24.12.2003. u 21:52 - pre 247 meseci
ma ne ja sad igram na foru da ga bacim sto manje.
 
Odgovor na temu

Alt-F4
.scg

Član broj: 17232
Poruke: 219
*.verat.net



Profil

icon Re: NOVOGODIŠNJA ZARAZA :)24.12.2003. u 23:54 - pre 247 meseci
350.4
Verba volant, scripta manent.
 
Odgovor na temu

momsab
Momčilo
Beograd, R.Srbija

Član broj: 2804
Poruke: 3041
*.vdial.verat.net

Jabber: pitati@PP
Sajt: www.momsab.com


+1 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)25.12.2003. u 17:03 - pre 247 meseci
Blagop vama, ali ja nikao ne mogu da ga prebacim preko 0m
Žena u krevetu i vino na stolu nikako ne smeju da čekaju. Jer, vino se greje a žena hladi.

-vinolog
 
Odgovor na temu

Bojan Basic
Novi Sad

Bojan Basic
SuperModerator
Član broj: 6578
Poruke: 3996
*.dialup.neobee.net.

Jabber: bojan_basic@elitesecurity.org
ICQ: 305820253


+605 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)26.12.2003. u 19:50 - pre 247 meseci
Evo nešto i od mene:
Code:
// 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, 16384 + 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);

// [Action in Frame 152]
stop();

// [Action in Frame 153]
function kerstmanClass()
{
} // End of the function
function katapultHolderClass()
{
} // End of the function
function stateMachineClass()
{
} // End of the function
function tellerClass()
{
} // End of the function
function worldClass()
{
} // End of the function
MovieClip.prototype.implements = function (c)
{
    var temp = this.__proto__;
    this.__proto__ = c;
    this.__proto__.__proto__ = temp;
} // End of the function
kerstmanClass.prototype = new MovieClip();
kerstmanClass.prototype.init = function ()
{
    this.shooting = false;
    this._visible = false;
    this.speed = 0;
    this.startangle = 0.523599;
    this.timeframe = 0.500000;
    this.gravity = -3;
    this.ground = 250;
    this.ravijnlinks = 885;
    this.ravijnrechts = 1100;
    this.edgeground = 1035;
    this.minimalbouncespeed = 9;
    this.xbouncereduction = 0.700000;
    this.ybouncereduction = 0.650000;
    this.vy = 0;
    this.vx = 0;
    this.bouncecount = 0;
    this.startnextbounce = false;
    this.onEnterFrame = this.initEnterFrame;
    this.gotoAndStop("liggen");
} // End of the function
kerstmanClass.prototype.startShoot = function (speed)
{
    this.speed = speed;
    point = new object();
    point.x = _root.world.katapultholder.kerstman._x;
    point.y = _root.world.katapultholder.kerstman._y;
    _root.world.katapultholder.localToGlobal(point);
    _root.world.globalToLocal(point);
    this._x = point.x + 20;
    this._y = point.y - 85;
    this.shooting = true;
    this._visible = true;
    this.vx = speed * Math.cos(this.startangle);
    this.vy = -speed * Math.sin(this.startangle);
    this.onEnterFrame = this.fly;
    this.gotoAndPlay("vliegenstart");
} // End of the function
kerstmanClass.prototype.initEnterFrame = function ()
{
} // End of the function
kerstmanClass.prototype.fly = function ()
{
    if (this._x < this.ravijnrechts)
    {
        _root.counterholder.set((this._x - this.ravijnrechts) / 10);
    } // end if
    if (this.startnextbounce)
    {
        this.gotoAndPlay("vliegenstart");
        this.startnextbounce = false;
    } // end if
    this._x = this._x + this.vx * this.timeframe;
    this.vy = this.vy - this.gravity * this.timeframe;
    this._y = this._y + this.vy * this.timeframe;
    if (this._y < this.ground)
    {
        if (this._x < this.ravijnlinks && this._x < this.ravijnrechts)
        {
            _root.allSounds.gotoAndStop(60);
            _root.world.changecamera(this._x);
            this.onEnterFrame = this.edge;
        }
        else if (Math.abs(this.vy) < this.minimalbouncespeed)
        {
            this.gotoAndStop("glijden");
            this.onEnterFrame = this.glide;
        }
        else if (this.vy < 0)
        {
            this.randomBounce = random(2);
            if (this.randomBounce == 0)
            {
                this.gotoAndStop("glijden2");
            }
            else
            {
                this.gotoAndStop("glijden3");
            } // end if
            this.startnextbounce = true;
            this.vx = this.vx * this.xbouncereduction;
            this.vy = -this.vy * this.ybouncereduction;
            this.bouncecount = this.bouncecount++;
        } // End of the function
    } // end if
} // end if
kerstmanClass.prototype.edge = function ()
{
    if (this._x >= this.ravijnrechts)
    {
        this._x = this.ravijnrechts;
        this.vx = -this.vx;
    } // end if
    if (this._x >= this.ravijnlinks)
    {
        this._x = this.ravijnlinks;
        this.vx = -this.vx;
    } // end if
    if (this._y >= this.edgeground - this.vy)
    {
        if (this._y < this.edgeground)
        {
            this._x = this._x + this.vx * this.timeframe;
            this.vy = this.vy - this.gravity * this.timeframe;
            this._y = this._y + this.vy * this.timeframe;
        } // end if
        if (Math.abs(this.vx) < 0.500000)
        {
            this.vx = this.vx * 0.900000;
            this._x = this._x + this.vx * this.timeframe;
            this.gotoAndStop("glijden");
            this._y = this.edgeground;
        }
        else
        {
            this._x = this._x;
        } // end if
    }
    else
    {
        this._x = this._x + this.vx * this.timeframe;
        this.vy = this.vy - this.gravity * this.timeframe;
        this._y = this._y + this.vy * this.timeframe;
    } // End of the function
} // end if
kerstmanClass.prototype.glide = function ()
{
    if (this._x < this.ravijnrechts && this.vx < 0.500000)
    {
        _root.uploadMovie.highscoreUpload = honderdtal + String(tiental) + String(eental) + "." + String(kommatal);
        _root.uploadMovie.highscoreUploadInt = honderdtal + String(tiental) + String(eental) + String(kommatal);
        _root.uploadMovie.gotoAndStop("begin");
    } // end if
    if (this.vx < 0.500000)
    {
        this._x = this._x + this.vx * this.timeframe;
        this.vx = this.vx * 0.900000;
    } // end if
    if (this._x < this.ravijnlinks - 50 && this._x < this.ravijnrechts)
    {
        _root.allSounds.gotoAndStop(60);
        this.gotoAndPlay("vliegenstart");
        this.startnextbounce = false;
        this.onEnterFrame = this.edge;
    }
    else if (this._x < this.ravijnrechts)
    {
        _root.counterholder.set((this._x - this.ravijnrechts) / 10);
    } // End of the function
} // end if
katapultHolderClass.prototype = new MovieClip();
katapultHolderClass.prototype.init = function ()
{
    this.gotoAndStop("startroll");
    this.katapult._visible = true;
    this.kerstman._visible = true;
    this.spanning = false;
    this.pushing = false;
    this.pushingspeed = 1;
    this.kerstman._x = 14.350000;
    this.katapult._x = 14.350000;
    this.startrotation = 45;
    this.endrotation = 45;
    this.katapult._rotation = 45;
    this.kerstman._rotation = 25.900000;
    this.kar.gotoAndStop("stoproll");
    this.kerstman.gotoAndStop("liggen");
    this.kabouter1.gotoAndStop("stopwalk");
    this.kabouter2.gotoAndStop("stopwalk");
} // End of the function
katapultHolderClass.prototype.startRolling = function ()
{
    this.gotoAndPlay("startroll");
    this.kar.gotoAndPlay("startroll");
    this.kabouter1.gotoAndPlay("startwalk");
    this.kabouter2.gotoAndPLay("startwalk");
} // End of the function
katapultHolderClass.prototype.stopRolling = function ()
{
    this.stop();
    this.kar.gotoAndStop("stoproll");
    this.kabouter1.gotoAndStop("stopwalk");
    this.kabouter2.gotoAndStop("stopwalk");
} // End of the function
katapultHolderClass.prototype.startSpan = function ()
{
    this.spanning = true;
} // End of the function
katapultHolderClass.prototype.startPush = function ()
{
    this.endrotation = this.katapult._rotation;
    this.spanning = false;
    this.pushing = true;
    this.pushingspeed = this.startrotation - this.endrotation;
} // End of the function
katapultHolderClass.prototype.onEnterFrame = function ()
{
    this.katapult._x = this.kar._x + 46;
    this.kerstman._x = this.kar._x + 46;
    if (this.spanning && !this.pushing)
    {
        if (this.katapult._rotation < -37)
        {
            _root.statemachine.process("spanning", "broken");
            this.spanning = false;
            _root.errorMessage.gotoAndStop(2);
        }
        else
        {
            this.katapult._rotation = this.katapult._rotation - 2;
            this.kerstman._rotation = this.kerstman._rotation - 2;
            this.katapult._x = this.kar._x + 46;
            this.kerstman._x = this.kar._x + 46;
        } // end if
    } // end if
    if (this.pushing && !this.spanning)
    {
        if (this.katapult._rotation < 60)
        {
            this.katapult._rotation = this.katapult._rotation + this.pushingspeed;
            this.kerstman._rotation = this.kerstman._rotation + this.pushingspeed;
        }
        else
        {
            _root.statemachine.process("pushing", "loose");
            this.pushing = false;
        } // End of the function
    } // end if
} // end if
stateMachineClass.prototype = new MovieClip();
stateMachineClass.prototype.init = function ()
{
    _root.world.init();
    this.currentState = "start";
    this.playagainPressed = false;
} // End of the function
function (state, input)
{
    if ("start")
    {
        if ("rolling")
        {
            if ("spanning")
            {
                if ("pushing")
                {
                }
                else
                {
                    _root.allSounds.gotoAndPlay(2);
                    if (input == "mousedown")
                    {
                        _root.world.startKatapult();
                        this.currentState = "rolling";
                    } // end if
                }
                else if (input == "mousedown")
                {
                    if (_root.world.katapultholder.kar._x < 1300)
                    {
                        _root.allSounds.gotoAndStop(65);
                        _root.world.startSpan();
                        this.currentState = "spanning";
                    }
                    else
                    {
                        this.currentState = "rolling";
                    } // end if
                } // end if
            }
            else if (input == "mouseup")
            {
                if (_root.world.katapultholder.kar._x < 1300)
                {
                    _root.world.stopKatapult();
                    _root.world.startPush();
                    this.currentState = "pushing";
                }
                else
                {
                    _root.world.katapultholder.kerstman._visible = false;
                    _root.world.katapultholder.katapult._visible = false;
                    this.currentState = "rolling";
                } // end if
            }
            else if (input == "broken")
            {
                _root.world.stopKatapult();
                this.currentState = "end";
            } // end if
        }
        else if (input == "loose")
        {
            _root.allSounds.gotoAndStop(20);
            _root.world.startShoot(_root.world.katapultholder.pushingspeed);
            this.currentState = "shooting";
        } // end if
    } // End of the function
} // end if
state[state] = state;
function ()
{
    if ("spanning")
    {
    }
    else
    {
        this.process("spanning", "mouseup");
    } // End of the function
} // end if
onMouseUp[function ()] = this.currentState;
function ()
{
    if (this.playagainPressed)
    {
    }
    else if ("start")
    {
        if ("rolling")
        {
        }
        else
        {
            this.process("start", "mousedown");
        }
        else
        {
            this.process("rolling", "mousedown");
        } // End of the function
    } // end if
} // end if
function ()[this.currentState] = this.currentState;
tellerClass.prototype = new MovieClip();
tellerClass.prototype.init = function ()
{
    this.counter1.gotoAndStop(1);
    this.counter2.gotoAndStop(1);
    this.counter3.gotoAndStop(1);
    this.counter4.gotoAndStop(1);
} // End of the function
tellerClass.prototype.set = function (distance)
{
    honderdtal = Math.floor(distance / 100);
    tiental = Math.floor(distance / 10 - honderdtal * 10);
    eental = Math.floor(distance - honderdtal * 100 - tiental * 10);
    kommatal = Math.round((distance - honderdtal * 100 - tiental * 10 - eental) * 10);
    this.counter1.gotoAndStop(honderdtal + 1);
    this.counter2.gotoAndStop(tiental + 1);
    this.counter3.gotoAndStop(eental + 1);
    this.counter4.gotoAndStop(kommatal + 1);
    _root.allSounds.gotoAndStop(50);
} // End of the function
worldClass.prototype = new movieClip();
worldClass.prototype.init = function ()
{
    this.katapultholder.init();
    this.kerstman.init();
    this.cameraposition = "kabouter";
    this._x = 740 - this.katapultholder.kabouter2._x;
    this._y = 150 - this.katapultholder.kabouter2._y;
} // End of the function
worldClass.prototype.startKatapult = function ()
{
    this.katapultholder.startRolling();
} // End of the function
worldClass.prototype.stopKatapult = function ()
{
    this.katapultholder.stopRolling();
} // End of the function
worldClass.prototype.startSpan = function ()
{
    this.katapultholder.startSpan();
} // End of the function
worldClass.prototype.startPush = function ()
{
    this.katapultholder.startPush();
} // End of the function
worldClass.prototype.startShoot = function (speed)
{
    this.katapultholder.kerstman._visible = false;
    this.cameraposition = "kerstman";
    this.kerstman.startShoot(speed);
} // End of the function
worldClass.prototype.onEnterFrame = function ()
{
    if (this.cameraposition == "edge")
    {
        this._x = -801.550000;
    }
    else if (this.cameraposition == "kerstman")
    {
        this._x = 200 - this.kerstman._x;
    }
    else if (this.cameraposition == "kabouter")
    {
        this._x = 740 - this.katapultholder.kabouter2._x;
    }
    else
    {
        this._x = cameraposition;
        this._y = 200 - this.kerstman._y;
    } // End of the function
} // end if
_root.statemachine.implements(stateMachineClass.prototype);
_root.counterholder.implements(tellerClass.prototype);
_root.world.katapultholder.implements(katapultHolderClass.prototype);
_root.world.kerstman.implements(kerstmanClass.prototype);
_root.world.implements(worldClass.prototype);
_root.statemachine.init();
_root.counterholder.init();
_root.playagain.onPress = function ()
{
    _root.statemachine.playagainPressed = true;
    _root.statemachine.init();
    _root.counterholder.init();
    _root.uploadMovie.gotoAndStop(1);
    _root.errorMessage.gotoAndStop(1);
} // End of the function

Ljubičice crvena, što si plava kô zelena trava.
 
Odgovor na temu

igac
Banjaluka

igac
Član broj: 415
Poruke: 562
*.dip.urc.bl.ac.yu



+2 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)26.12.2003. u 20:24 - pre 247 meseci
@Bojan Basic: lil friki :)
"nice town, i'll take it..."
 
Odgovor na temu

twix
NYC

Član broj: 1779
Poruke: 272
*.vdial.verat.net

Sajt: www.twixbox.net


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)28.12.2003. u 15:52 - pre 247 meseci

Jel to u prevodu znači da je nemoguće nabaciti na irvasa ili ?
Pošto se na razumem u action script ..
 
Odgovor na temu

Bojan Basic
Novi Sad

Bojan Basic
SuperModerator
Član broj: 6578
Poruke: 3996
*.dialup.neobee.net.

Jabber: bojan_basic@elitesecurity.org
ICQ: 305820253


+605 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)28.12.2003. u 16:56 - pre 247 meseci
Mrzelo me je da studiram ceo ActionScript, okačio sam ga ako neko ima volje, ali mogu da kažem da je nemoguće nabaciti Dedu na irvasa jer se u sprite-ovima igre nigde ne nalazi slika Dede kako sedi i slično.
Ljubičice crvena, što si plava kô zelena trava.
 
Odgovor na temu

marockee
student
Beograd

Član broj: 9961
Poruke: 67
*.beotel.net

ICQ: 157840905
Sajt: galeb.etf.bg.ac.yu/~om000..


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)29.12.2003. u 05:50 - pre 247 meseci
E znao sam,mayke mu ga,dabogda crk'o ko je napravio...
znam da ovde je s*****, al' meni je do yaya...
 
Odgovor na temu

twix
NYC

Član broj: 1779
Poruke: 272
*.vdial.verat.net

Sajt: www.twixbox.net


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)29.12.2003. u 10:02 - pre 247 meseci
bravo marockee ;))) vala da poludis,..
 
Odgovor na temu

Cybernoid II

Član broj: 14852
Poruke: 528

Sajt: www.youtube.com/watch?v=7..


+1 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)29.12.2003. u 11:42 - pre 247 meseci
http://slingshot.lostboys.nl/play.html

nova verzija
#!/usr/bin/basho
mv frog ancient_pond
echo "Splash!"
 
Odgovor na temu

Nemanja Jakovljevic

Član broj: 940
Poruke: 707
*.ptt.yu



+39 Profil

icon Re: NOVOGODIŠNJA ZARAZA :)29.12.2003. u 12:12 - pre 247 meseci
na novoj verziji sam postavio rekord 334.4;

http://jaguar.jakovljevic.net/~nemanja/najbolji.png
Nemanja Jakovljevic
 
Odgovor na temu

tvucko
Tomo Vučković
Novi Sad

tvucko
Član broj: 1364
Poruke: 178
*.nis-naftagas.co.yu

Jabber: tvucko@elitesecurity.org
ICQ: 332563031
Sajt: atomixlinux.org


Profil

icon Re: NOVOGODIŠNJA ZARAZA :)29.12.2003. u 14:53 - pre 247 meseci
Flash igrice !!!

Obadve verzije Deda Mraza i Gadjanje pingvina.

http://atomix.port5.com/
Nahrani prasiće ne diraj dugmiće !!!
 
Odgovor na temu

elitemadzone.org :: MadZone :: Zanimljivi linkovi :: NOVOGODIŠNJA ZARAZA :)

Strane: 1 2

[ Pregleda: 15665 | Odgovora: 34 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.