Package mods.railcraft.common.util.network

Examples of mods.railcraft.common.util.network.PacketEffect.sendPacket()


            data.writeDouble(entity.posY);
            data.writeDouble(entity.posZ);
            data.writeDouble(destX);
            data.writeDouble(destY);
            data.writeDouble(destZ);
            pkt.sendPacket(entity.worldObj, entity.posX, entity.posY, entity.posZ);
        } catch (IOException ex) {
        }


        SoundHelper.playSoundAtEntity(entity, "mob.endermen.portal", 0.25F, 1.0F);
View Full Code Here


            data.writeDouble(startY);
            data.writeDouble(startZ);
            data.writeDouble(endX);
            data.writeDouble(endY);
            data.writeDouble(endZ);
            pkt.sendPacket(world, startX, startY, startZ);
        } catch (IOException ex) {
        }
    }

    @Override
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.