Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExRedSky


        }
        _item.dropToTheGround(killer, attackable);
        _loc = _item.getLoc();
        _item.setDropTime(0);
        // RedSky and Earthquake
        L2GameServerPacket redSky = new ExRedSky(10);
        L2GameServerPacket eq = new Earthquake(killer.getLoc(), 30, 12);
        for(L2Player aPlayer : L2ObjectsStorage.getAllPlayersForIterate())
        {
          aPlayer.sendPacket(redSky, eq);
        }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExRedSky

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.