Package com.l2jfrozen.gameserver.model.entity

Examples of com.l2jfrozen.gameserver.model.entity.MonsterRace


    broadcast(_packet);
  }

  private void startRace()
  {
    MonsterRace race = MonsterRace.getInstance();
    if(_state == STARTING_RACE)
    {
      //state++;
      PlaySound SRace = new PlaySound(1, "S_Race", 0, 0, 0, 0, 0);
      broadcast(SRace);
      SRace = null;
      PlaySound SRace2 = new PlaySound(0, "ItemSound2.race_start", 1, 121209259, 12125, 182487, -3559);
      broadcast(SRace2);
      SRace2 = null;
      _packet = new MonRaceInfo(_codes[1][0], _codes[1][1], race.getMonsters(), race.getSpeeds());
      sendMonsterInfo();

      ThreadPoolManager.getInstance().scheduleGeneral(new RunRace(), 5000);
    }
    else
    {
      //state++;
      race.newRace();
      race.newSpeeds();
      _packet = new MonRaceInfo(_codes[0][0], _codes[0][1], race.getMonsters(), race.getSpeeds());
      sendMonsterInfo();
    }
    race = null;
  }
View Full Code Here


        },
        {
            -1, 0
        }
    };
    MonsterRace race = MonsterRace.getInstance();

    if(state == -1)
    {
      state++;
      race.newRace();
      race.newSpeeds();
      MonRaceInfo spk = new MonRaceInfo(codes[state][0], codes[state][1], race.getMonsters(), race.getSpeeds());
      activeChar.sendPacket(spk);
      activeChar.broadcastPacket(spk);
      spk = null;
    }
    else if(state == 0)
    {
      state++;

      SystemMessage sm = new SystemMessage(SystemMessageId.MONSRACE_RACE_START);
      sm.addNumber(0);
      activeChar.sendPacket(sm);
      sm = null;

      PlaySound SRace = new PlaySound(1, "S_Race", 0, 0, 0, 0, 0);
      activeChar.sendPacket(SRace);
      activeChar.broadcastPacket(SRace);
      SRace = null;

      PlaySound SRace2 = new PlaySound(0, "ItemSound2.race_start", 1, 121209259, 12125, 182487, -3559);
      activeChar.sendPacket(SRace2);
      activeChar.broadcastPacket(SRace2);
      SRace2 = null;

      MonRaceInfo spk = new MonRaceInfo(codes[state][0], codes[state][1], race.getMonsters(), race.getSpeeds());
      activeChar.sendPacket(spk);
      activeChar.broadcastPacket(spk);
      spk = null;

      ThreadPoolManager.getInstance().scheduleGeneral(new RunRace(codes, activeChar), 5000);
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.entity.MonsterRace

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.