Package net.minecraft.client.entity

Examples of net.minecraft.client.entity.EntityClientPlayerMP.sendChatMessage()


    }

    public static void askSeed(){
        EntityClientPlayerMP player = Minecraft.getMinecraft().thePlayer;
        if(player == null) return;
        player.sendChatMessage("/seed"); //Send the /seed command to the server
        seedAsked = true;
    }

    public static void reset(){
        seedFound = false;
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.