[media]http://www.own3d.tv/live/14704[/media]
Vamos gente que no pare la cosa, meterle mas mierda al escritorio >.<
PD: abre pass.txt que me pica la curiosidad >.<
no, se me jodio tras menos de un mes con antivirus, recuerda.
formatee porque estaba demasiado lleno de mierda.
y otra cosa ¿que haces con el fondo en negro?
mal3. tiene eso:
// biolab/entities/dropper.js
ig.baked=true;ig.module('biolab.entities.dropper').
requires('impact.entity','biolab.entities.particle','
biolab.entities.blob').
defines(function(){
EntityDropper=ig.Entity.extend({
size:{x:14,y:8},
offset:{x:1,y:0},
type:ig.Entity.TYPE.B,
checkAgainst:ig.Entity.TYPE.A,
collides:ig.Entity.COLLIDES.NEVER,
health:80,
shootTimer:null,
shootWaitTimer:null,
canShoot:false,
animSheet:new ig.AnimationSheet('media/sprites/dropper.png',16,8),
sfxHit:new ig.Sound('media/sounds/wetgib.ogg'),
init:function(x,y,settings){
this.parent(x,y,settings);
this.shootWaitTimer=new ig.Timer(1);
this.shootTimer=new ig.Timer(10);
this.addAnim('idle',1,[0]);
this.addAnim('shoot',0.2,[1,2,2,1]);
this.addAnim('hit',0.2,[3]);
},
update:function(){
if(this.currentAnim==this.anims.hit&&this.currentAnim.loopCount){
this.currentAnim=this.anims.idle;this.shootWaitTimer.set(0.5);
}
else if(this.currentAnim==this.anims.idle&&this.shootWaitTimer.delta()>0&&this.distanceTo(ig.game.player)<128){
this.currentAnim=this.anims.shoot.rewind();this.shootTimer.set(0.8);this.canShoot=true;
}
else if(this.currentAnim==this.anims.shoot&&this.canShoot&&this.shootTimer.delta()>0){
this.canShoot=false;ig.game.spawnEntity(EntityDropperShot,this.pos.x+5,this.pos.y+6);
}
if(this.currentAnim==this.anims.shoot&&this.currentAnim.loopCount){
this.currentAnim=this.anims.idle.rewind();this.shootWaitTimer.set(0.5);
}
this.currentAnim.update();
},
kill:function(){
this.spawnGibs(20);
this.parent();
},
Mañana tengo un delicioso examen de programación que voy a suspender
Gracias por recordarme que he aprovechado mi tiempo viendo Akibaranger y no estudiando xD
por cierto jastro, los iconos de la impresora, se pueden quitar que no pasa nada eh!
(si, tambien tengo una hp)
#2035 No es programación en si
Es de algoritmia y optimización
Tengo que dedicarme a memorizar ejemplos, vamos