Jump to content

something eats a variable


0xNull

Recommended Posts

I have such code:

 

var countplayers=0;
var launch=0;

mp.events.add('playerJoin', (player) => {
  player.robber = 0;
  player.ingame = 0;
  player.hello = 0;
});

mp.events.addCommand('chase', (player) => {
  if (countplayers == 0){
  if (player.ingame== 0 && launch == 0){
    player.robber = 1;
    player.ingame = 1;
    countplayers +=1;
    setTimeout(startmp, 10000);
  }}
  else {
  if (launch == 0 && player.ingame == 0){
     player.hello = 1;
     player.ingame =1;
     console.log(player.hello);
  }
}
  function startmp(){
    console.log(player.hello);
    launch = 1;
  }
});

 

Befor function "startmp" - variable player.hello = 1.

After - for some reason - variable player.hello = 0.

Why?

 

Though variable player.robber = 1

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...