Package com.l2jfrozen.gameserver.network.serverpackets

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


            ((L2BoatInstance) object).sendVehicleDeparture(_activeChar);
          }
        }
        else if(object instanceof L2StaticObjectInstance)
        {
          _activeChar.sendPacket(new StaticObject((L2StaticObjectInstance) object));
        }
        else if(object instanceof L2NpcInstance)
        {
          _activeChar.sendPacket(new NpcInfo((L2NpcInstance) object, _activeChar));
        }
View Full Code Here


            ((L2BoatInstance) object).sendVehicleDeparture(active_char);
          }
      }
      else if(object instanceof L2StaticObjectInstance)
      {
        active_char.sendPacket(new StaticObject((L2StaticObjectInstance) object));
      }
      else if(object instanceof L2NpcInstance)
      {
        if(Config.CHECK_KNOWN)
        {
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.StaticObject

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.