Jump to content
Fórum Script Brasil
  • 0

Ajuda Urgente...significado De Alguns Comandos


Guest - Rodrigo -

Question

Guest - Rodrigo -

galera, tenho esses comandos aqui num arquivo e preciso comentar

alguém me ajuda urgente

setProperty("", _y, getProperty("", _y)-20);

if (Number(getProperty("", _y))<0) {

removeMovieClip("");

}

if(this.hitTest(_root.inimigo2)){

_root.inimigo2.gotoAndPlay(16);

}

startDrag("arma",true);

mouse.hide();

duplicateMovieClip("a","a"+i,i);

i++;

if(i>50){

i=1;

}

if(_root.inimigo2.hitTest(_root.arma)){

_root.inimigo2.gotoAndPlay(15);

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
setProperty("", _y, getProperty("", _y)-20); //move o movieclip sem nome 20 pixels pra cima

if (Number(getProperty("", _y))<0) { 
removeMovieClip("");
}
//se a opsição do movieclip sem nome em relação ao eixo das ordenadas 
//(_y) for negativa, ou seja o movieclip está fora da tela remove ele

if(this.hitTest(_root.inimigo2)){
_root.inimigo2.gotoAndPlay(16);
}
//se o movieclip trombou no inimigo, o inimigo vai pro quadro 16

startDrag("arma",true);
mouse.hide();
//oculta o mouse e usa o mc arma no lugar dele

duplicateMovieClip("a","a"+i,i);
//duplica o movie clip a

i++;
if(i>50){
i=1;
}
//se duplicou mais de 50 volta pro primeiro

if(_root.inimigo2.hitTest(_root.arma)){
_root.inimigo2.gotoAndPlay(15);
}
//se a arma trombar no inimigo ele vai pro quadro 15

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...