Examples of MonRaceInfo


Examples of com.l2jfrozen.gameserver.network.serverpackets.MonRaceInfo

  class RunRace implements Runnable
  {
    @Override
    public void run()
    {
      _packet = new MonRaceInfo(_codes[2][0], _codes[2][1], MonsterRace.getInstance().getMonsters(), MonsterRace.getInstance().getSpeeds());
      sendMonsterInfo();
      ThreadPoolManager.getInstance().scheduleGeneral(new RunEnd(), 30000);
    }
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.MonRaceInfo

      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

Examples of com.l2jfrozen.gameserver.network.serverpackets.MonRaceInfo

    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

Examples of com.l2jfrozen.gameserver.network.serverpackets.MonRaceInfo

       speed[i] += (speeds1[i][j]*1);// + (speeds2[i][j]*1);
       }
       System.out.println("Total speed for "+(i+1)+" = "+speed[i]);
       }*/

      MonRaceInfo spk = new MonRaceInfo(codes[2][0], codes[2][1], MonsterRace.getInstance().getMonsters(), MonsterRace.getInstance().getSpeeds());
      activeChar.sendPacket(spk);
      activeChar.broadcastPacket(spk);
      spk = null;
      ThreadPoolManager.getInstance().scheduleGeneral(new RunEnd(activeChar), 30000);
    }
View Full Code Here

Examples of l2p.gameserver.serverpackets.MonRaceInfo

    L2RaceManagerInstance actor = getActor();
    if(actor == null)
    {
      return;
    }
    MonRaceInfo packet = actor.getPacket();
    if(packet == null)
    {
      return;
    }
    synchronized(thinking)
View Full Code Here

Examples of l2p.gameserver.serverpackets.MonRaceInfo

    if(state == -1)
    {
      state++;
      race.newRace();
      race.newSpeeds();
      activeChar.broadcastPacket(new MonRaceInfo(codes[state][0], codes[state][1], race.getMonsters(), race.getSpeeds()));
    }
    else if(state == 0)
    {
      state++;
      activeChar.sendPacket(Msg.THEYRE_OFF);
      activeChar.broadcastPacket(new PlaySound("S_Race"));
      activeChar.broadcastPacket(new PlaySound(0, "ItemSound2.race_start", 1, 121209259, new Location(12125, 182487, -3559)));
      activeChar.broadcastPacket(new MonRaceInfo(codes[state][0], codes[state][1], race.getMonsters(), race.getSpeeds()));
      ThreadPoolManager.getInstance().scheduleGeneral(new RunRace(codes, activeChar), 5000);
    }
  }
View Full Code Here

Examples of l2p.gameserver.serverpackets.MonRaceInfo

       * int[] speed = new int[8]; for(int i=0; i<8; i++) { for(int j=0; j<20;
       * j++) { //System.out.println("Adding "+speeds1[i][j] +" and "+
       * speeds2[i][j]); speed[i] += (speeds1[i][j]*1);// + (speeds2[i][j]*1); }
       * System.out.println("Total speed for "+(i+1)+" = "+speed[i]); }
       */
      activeChar.broadcastPacket(new MonRaceInfo(codes[2][0], codes[2][1], MonsterRace.getInstance().getMonsters(), MonsterRace.getInstance().getSpeeds()));
      ThreadPoolManager.getInstance().scheduleGeneral(new RunEnd(activeChar), 30000);
    }
View Full Code Here

Examples of l2p.gameserver.serverpackets.MonRaceInfo

      //state++;
      PlaySound SRace = new PlaySound("S_Race");
      broadcast(SRace);
      PlaySound SRace2 = new PlaySound(0, "ItemSound2.race_start", 1, 121209259, new Location(12125, 182487, -3559));
      broadcast(SRace2);
      packet = new MonRaceInfo(codes[1][0], codes[1][1], race.getMonsters(), race.getSpeeds());
      sendMonsterInfo();
      ThreadPoolManager.getInstance().scheduleAi(new RunRace(), 5000, false);
    }
    else
    {
      //state++;
      race.newRace();
      race.newSpeeds();
      packet = new MonRaceInfo(codes[0][0], codes[0][1], race.getMonsters(), race.getSpeeds());
      sendMonsterInfo();
    }
  }
View Full Code Here

Examples of l2p.gameserver.serverpackets.MonRaceInfo

  class RunRace implements Runnable
  {
    public void run()
    {
      packet = new MonRaceInfo(codes[2][0], codes[2][1], MonsterRace.getInstance().getMonsters(), MonsterRace.getInstance().getSpeeds());
      sendMonsterInfo();
      ThreadPoolManager.getInstance().scheduleGeneral(new RunEnd(), 30000);
    }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.MonRaceInfo

    RaceManagerInstance actor = getActor();
    if (actor == null)
    {
      return;
    }
    MonRaceInfo packet = actor.getPacket();
    if (packet == null)
    {
      return;
    }
    synchronized (this)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.