Jump to content

Kporal

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by Kporal

  1. I'm back from an old mod i've made for mc 1.11.2 : I've mostly restart from scratch and just rewrite all my class to create my "Bag". The problem is ... i havn't any error but nothing happend, so i think io just miss something but can't find what is wrong. Main.java package com.kporal.mcplus; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Items; import net.minecraft.init.SoundEvents; import net.minecraft.inventory.EntityEquipmentSlot; import net.minecraft.item.Item; import net.minecraft.item.Item.ToolMaterial; import net.minecraft.item.ItemArmor.ArmorMaterial; import net.minecraft.item.ItemStack; import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.common.util.EnumHelper; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.Mod.Instance; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.common.registry.GameRegistry; @Mod( modid = Main.MODID, name = Main.NAME, version = Main.VERSION, acceptedMinecraftVersions = Main.MCVERSION ) public class Main { public static final String MODID = "mcplus"; public static final String NAME = "MCPlus"; public static final String VERSION = "1.0"; public static final String MCVERSION = "[1.12.2]"; public static final ArmorMaterial armorMCP = EnumHelper.addArmorMaterial( "armorMCP", MODID + ":dragoon", 1600, new int[] { 4, 8, 10, 4 }, 30, SoundEvents.ITEM_ARMOR_EQIIP_ELYTRA, 4 ).setRepairItem( new ItemStack( Items.EMERALD )); public static final ToolMaterial emeraldMCP = EnumHelper.addToolMaterial( "emeraldMCP", 4, 10000, 10.0F, 9.0F, 30 ).setRepairItem( new ItemStack( Items.EMERALD )); public static Item ehaxe, dragoonHelmet, dragoonChest, dragoonLegs, dragoonBoots, kitbag; @EventHandler public void preInit( FMLPreInitializationEvent event ) { ehaxe = new Ehaxe( emeraldMCP ); dragoonHelmet = new DragoonArmor( armorMCP, EntityEquipmentSlot.HEAD, "dragoon_helmet" ); dragoonChest = new DragoonArmor( armorMCP, EntityEquipmentSlot.CHEST, "dragoon_chest" ); dragoonLegs = new DragoonArmor( armorMCP, EntityEquipmentSlot.LEGS, "dragoon_legs" ); dragoonBoots = new DragoonArmor( armorMCP, EntityEquipmentSlot.FEET, "dragoon_boots" ); kitbag = new Kitbag(); } @EventHandler public void init( FMLInitializationEvent event ) {} } Kitbag.java package com.kporal.mcplus; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumHand; import net.minecraft.world.World; import net.minecraftforge.common.capabilities.ICapabilityProvider; public class Kitbag extends Item { public Kitbag() { this.setRegistryName( "kitbag" ); this.setTranslationKey( "kitbag" ); this.setCreativeTab( CreativeTabs.TOOLS ); this.setMaxStackSize( 1 ); } public ActionResult<ItemStack> onItemRightClick( World w, EntityPlayer p, EnumHand e ) { //NBTTagCompound nbt = new NBTTagCompound(); //inventory.deserializeNBT( nbt ); return new ActionResult<ItemStack>( EnumActionResult.PASS, p.getHeldItemMainhand() ); } public void onPlayerStoppedUsing( ItemStack stack, World worldIn, EntityLivingBase entityLiving, int timeLeft ) { //inventory.serializeNBT(); } @Override public ICapabilityProvider initCapabilities( ItemStack item, NBTTagCompound nbt ) { if( item.getItem() == Main.kitbag ) { return new KitbagProvider(); } return null; } } KitbagProvider.java package com.kporal.mcplus; import net.minecraft.nbt.NBTBase; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumFacing; import net.minecraftforge.common.capabilities.Capability; import net.minecraftforge.common.capabilities.ICapabilityProvider; import net.minecraftforge.common.capabilities.ICapabilitySerializable; import net.minecraftforge.items.CapabilityItemHandler; import net.minecraftforge.items.ItemStackHandler; public class KitbagProvider implements ICapabilityProvider, ICapabilitySerializable<NBTTagCompound> { private final ItemStackHandler inventory; public KitbagProvider() { inventory = new ItemStackHandler( 54 ); } @Override public NBTTagCompound serializeNBT() { return inventory.serializeNBT(); } public void deserializeNBT( NBTTagCompound nbt ) { inventory.deserializeNBT( nbt ); } @Override public boolean hasCapability( Capability<?> capability, EnumFacing facing ) { if( capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ) { return true; } return false; } @Override public <T> T getCapability( Capability<T> capability, EnumFacing facing ) { if( capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ) { return (T) inventory; } return null; } } KitbagContainer.java package com.kporal.mcplus; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.Slot; import net.minecraftforge.items.IItemHandler; import net.minecraftforge.items.SlotItemHandler; public class KitbagContainer extends Container { public KitbagContainer( IItemHandler i, EntityPlayer p ) { int xPos = 8; int yPos = 18; int iid = 0; for( int y = 0; y < 6; ++y ) { for( int x = 0; x < 9; ++x ) { addSlotToContainer( new SlotItemHandler( i, iid, xPos + x * 18, yPos + y * 18 )); iid++; } } yPos = 140; for( int y = 0; y < 3; ++y ) { for( int x = 0; x < 9; ++x ) { addSlotToContainer( new Slot( p.inventory, x + y * 9 + 9, xPos + x * 18, yPos + y * 18 )); } } for( int x = 0; x < 9; ++x ) { addSlotToContainer( new Slot( p.inventory, x, xPos + x * 18, 198 )); } } @Override public boolean canInteractWith( EntityPlayer p ) { return true; } } KitbagGuiHandler.java package com.kporal.mcplus; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.world.World; import net.minecraftforge.fml.common.network.IGuiHandler; import net.minecraftforge.items.CapabilityItemHandler; import net.minecraftforge.items.IItemHandler; public class KitbagGuiHandler implements IGuiHandler { @Override public Object getServerGuiElement(int ID, EntityPlayer p, World w, int x, int y, int z) { return new KitbagContainer( (IItemHandler) p.getHeldItemMainhand().getCapability( CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null ), p ); } @Override public Object getClientGuiElement(int ID, EntityPlayer p, World w, int x, int y, int z) { return new KitbagGui( (IItemHandler) p.getHeldItemMainhand().getCapability( CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null ), p ); } } KitbagGui.java package com.kporal.mcplus; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; import net.minecraftforge.items.IItemHandler; public class KitbagGui extends GuiContainer { private IItemHandler i; public KitbagGui( IItemHandler i, EntityPlayer p ) { super( new KitbagContainer( i, p )); this.xSize = 175; this.ySize = 221; this.i = i; } @Override protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { GlStateManager.color( 1.0F, 1.0F, 1.0F, 1.0F ); this.mc.getTextureManager().bindTexture( new ResourceLocation( Main.MODID, "textures/gui/container/kitbag.png" ) ); this.drawTexturedModalRect( this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize ); } } The game start without any error, my item is registered, i can't take it / craft it, absolutely no issue, but nothing happend on right click, so if any one see where i'm wrong and can tell me what's my error !
  2. Now i'm here : ErzineConverter.class Yes i use DecorateBiomeEvent Pre and Decorate ( i've made this for testing purpose ) but, i'm in trouble, my main event for replacing block do not clear everything, sometime some flower, grass or tree is populated on my world and i don't know how to canceled that or maybe by doing a second loop ... But first, my first problem here is at the bottom, LivingSpawn, i don't understand why this not work, i've made this to prevent creature to spawn but ... i also use this on my world provider : this.setAllowedSpawnTypes( false, false ); ... And why some tree / flower / water keep on the world ... i'm trying a lot of thing but nothing seem to really clear the world
  3. Like you can see ... it's not yet fully operational i need to work deeper into it
  4. Ok it work really fine with nbt package com.kporal.lau.events; import com.kporal.lau.LAU; import net.minecraft.block.Block; import net.minecraft.block.BlockDirt; import net.minecraft.block.BlockFalling; import net.minecraft.block.BlockLiquid; import net.minecraft.block.BlockOre; import net.minecraft.block.BlockSandStone; import net.minecraft.block.BlockStone; import net.minecraft.init.Blocks; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraft.world.chunk.Chunk; import net.minecraftforge.event.world.ChunkEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnChunkEvent { //private final Block[] toNetherrack = { Blocks.SAND }; //private final Block[] toEndstone = { Blocks.END_STONE }; //private final Block[] toDestroy = { Blocks.OAK_STAIRS }; @SubscribeEvent public void EditChunk( ChunkEvent.Load e ) { World w = e.getWorld(); if( !w.isRemote && w.provider.getDimension() == LAU.ERZINEID ) { NBTTagCompound nbt = w.getWorldInfo().getDimensionData( LAU.ERZINEID ); Chunk c = e.getChunk(); String chunkid = "erzineChunk:" + c.xPosition + "_" + c.zPosition; if( nbt.hasKey( chunkid ) ) { return; } int cx = c.xPosition << 4; int cy = w.getHeight(); int cz = c.zPosition << 4; for( int x = cx - 16; x < cx; x++ ) { for( int y = 0; y < cy; y++ ) { for( int z = cz - 16; z < cz; z++ ) { BlockPos p = new BlockPos( x, y, z ); Block b = c.getBlockState( p ).getBlock(); if( b instanceof BlockFalling && b != Blocks.SOUL_SAND ) { c.setBlockState( p, Blocks.SOUL_SAND.getDefaultState() ); } if( b instanceof BlockLiquid && b != Blocks.LAVA ) { c.setBlockState( p, Blocks.LAVA.getDefaultState() ); } if(( b instanceof BlockOre || b instanceof BlockStone || b instanceof BlockSandStone ) && b != Blocks.END_STONE ) { c.setBlockState( p, Blocks.END_STONE.getDefaultState() ); } if( b instanceof BlockDirt && b != Blocks.NETHERRACK ) { c.setBlockState( p, Blocks.NETHERRACK.getDefaultState() ); } //w.destroyBlock( p, false ); } } } nbt.setBoolean( chunkid, true ); w.getWorldInfo().setDimensionData( LAU.ERZINEID, nbt ); } } } And now i need to clean up entity spawn, and decorate event, if i'm right tree is on the decorate event ? I also need to clear every structure ( with event too ... to prevent them to spawn )
  5. Yes, i've made some test and i think i've found a way to ensure the game do not load heavily by using nbttag when a chunk is converted, may work but for now my "converter" work ( and like you said it's pretty laggy but not everywhere almost at the first generation ). So i need to know if i can use nbttag into chunk, maybe not but in world should be better by saving something like that : chunk_0_-1_0 as id with isConverted to avoid a second convertion. But in case of needed, i'm also gonna make an admin command to re convert a chunk ! And my last possibility but actually ... i think it don't work ... changing the height of the map ... because i don't need 256 but ... should be better with 96 height trying to do it with : ErzineProvider.class package com.kporal.lau.dimensions; import com.kporal.lau.LAU; import net.minecraft.init.Biomes; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; import net.minecraft.world.DimensionType; import net.minecraft.world.World; import net.minecraft.world.WorldProvider; import net.minecraft.world.biome.Biome; import net.minecraft.world.biome.BiomeProviderSingle; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class ErzineProvider extends WorldProvider { public World worldObj; public void registerWorldChunkManager() { this.biomeProvider = new BiomeProviderSingle( Biomes.VOID ); this.setDimension( LAU.erzineId ); this.setAllowedSpawnTypes( false, false ); this.hasNoSky = false; this.doesWaterVaporize = true; } public Biome getBiomeGenForCoords( BlockPos pos ) { return Biomes.VOID; } @Override public boolean canRespawnHere() { return false; } @Override public boolean isSurfaceWorld() { return false; } @Override public DimensionType getDimensionType() { return LAU.ERZINE_DIMENSION; } @Override public float calculateCelestialAngle( long worldTime, float partialTicks ) { return 0.0F; } @Override @SideOnly( Side.CLIENT ) public float[] calcSunriseSunsetColors( float celestialAngle, float partialTicks ) { return null; } @Override @SideOnly( Side.CLIENT ) public Vec3d getFogColor( float p_76562_1_, float p_76562_2_ ) { return new Vec3d(0.20000000298023224D, 0.029999999329447746D, 0.029999999329447746D); } @Override @SideOnly( Side.CLIENT ) public float getCloudHeight() { return 12.0F; } @SideOnly( Side.CLIENT ) public boolean doesXZShowFog( int x, int z ) { return true; } @Override public int getHeight() { return 96; } @Override public int getActualHeight() { return 96; } } But ... because my "Erzine" dimension is a "copy" of the overworld it's doesn't work ( i need to check something ... ).
  6. Ok so finally i check ... nothing so this is why nothing is replace ... theire is a way to get all chunk block directly ? or i need to use a for <<4 loop ?
  7. Actually my code is : package com.kporal.lau.events; import java.util.Map; import com.kporal.lau.LAU; import net.minecraft.block.Block; import net.minecraft.block.BlockSand; import net.minecraft.block.BlockStaticLiquid; import net.minecraft.init.Blocks; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraft.world.chunk.Chunk; import net.minecraftforge.event.world.ChunkEvent.Load; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnChunkEvent { //private final Block[] toNetherrack = { Blocks.SAND }; //private final Blocks[] toLava = { Blocks.WATER }; @SubscribeEvent public void EditChunk( Load e ) { World w = e.getWorld(); if( !w.isRemote && w.provider.getDimension() == LAU.erzineId ) { Chunk c = e.getChunk(); Map<BlockPos, TileEntity> map = c.getTileEntityMap(); for( BlockPos p : map.keySet() ) { Block b = c.getBlockState( p ).getBlock(); /*if( ArrayUtils.contains( toNetherrack, c.getBlockState( p ).getBlock() )) { c.removeTileEntity( p ); }*/ if( b instanceof BlockSand ) { // Convert to soulsand c.removeTileEntity( p ); c.setBlockState( p, Blocks.SOUL_SAND.getDefaultState() ); } if( b instanceof BlockStaticLiquid ) { // Convert to lava c.removeTileEntity( p ); c.setBlockState( p, Blocks.LAVA.getDefaultState() ); } } } } } But it doesn't work, i mean nothing happen, i register the event on the FMLInit @EventHandler public void Init( FMLInitializationEvent e ) { MinecraftForge.EVENT_BUS.register( new OnChunkEvent() ); } But i have no error at all, so i know i'm wrong because nothing happen, but i don't know where i'm wrong
  8. my explanation isn't good, it's not a mimic, the "erzine" ( my custom one ) doens't mimic stuff from the overworld, it was just generated with the same seed, but totally separate dimension.
  9. Ok, my custom dimension is a mimic of the overworld, it work, i can teleport, spawn etc, but now, because i don't use a custom chunk generator i try to use the chunk Load event to replace undesired block by other, my actual code is more like : package com.kporal.lau.events; import java.util.Map; import net.minecraft.init.Blocks; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.chunk.Chunk; import net.minecraftforge.event.world.ChunkEvent.Load; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnChunkEvent { @SubscribeEvent public void EditChunk( Load e ) { Chunk c = e.getChunk(); Map<BlockPos, TileEntity> map = c.getTileEntityMap(); for( BlockPos p : map.keySet() ) { if( c.getBlockState( p ).getBlock() == Blocks.DIRT ) { c.removeTileEntity( p ); //c.addTileEntity( p, ); } } } } it's just an exemple for dirt block, but when i'm doing a better job here i'm gonna use some array, i hope to give you suffisant information ( sorry if my english is bad )
  10. I'm doing something like this, doesn't test it yet but i think i'm on the right way : package com.kporal.lau.events; import java.util.Map; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.chunk.Chunk; import net.minecraftforge.event.world.ChunkEvent.Load; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnChunkEvent { @SubscribeEvent public void EditChunk( Load e ) { Chunk c = e.getChunk(); Map<BlockPos, TileEntity> map = c.getTileEntityMap(); for( BlockPos p : map.keySet() ) { c.removeTileEntity( p ); } } } removeTileEntity may remove my desired block ? then i should replace a new block at the position, or i need to use setBlockState ?
  11. I've made a custom dimension, but rather than using a chunk generator, my own is just a "copy" of the overworld and i want replace some blocks by other. So i need to get a list of all block on the chunk and replacing them by the wanted block or remove them, but i don't know how to get a list of block in the chunk, maybe this way is just impossible ?
  12. I never said it was hard ^^, all my code was fine finally, the only thing i was wrong is about my leftClickEmpty event wich in case is never called serverside, this is just a stupid misstake from me, whatever, my code is good and work fine
  13. Thank for your help and sorry to wast your time, now it work both on client and server
  14. i've totally forgot this thing ... i used event because it's easier to separate item action, because here i have two action on same click but whatever going to overide onItemRightClick directly on my item, and cheking if player click block or not
  15. OnPlayerInteract.java package com.kporal.lau.events; import com.kporal.lau.LAU; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.server.MinecraftServer; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.SoundCategory; import net.minecraftforge.event.entity.player.PlayerInteractEvent; import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnPlayerInteract { @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerRightClick( PlayerInteractEvent.RightClickBlock e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { double px = e.getPos().getX() + 0.5; double py = e.getPos().getY() + 1; double pz = e.getPos().getZ() + 0.5; ItemStack is = p.getHeldItemMainhand(); NBTTagCompound t = is.getTagCompound() == null ? new NBTTagCompound() : is.getTagCompound(); t.setDouble( "px_" + p.dimension, px ); t.setDouble( "py_" + p.dimension, py ); t.setDouble( "pz_" + p.dimension, pz ); is.setTagCompound( t ); for( int x = 0; x < 10; x++ ) { p.world.spawnParticle( EnumParticleTypes.PORTAL, px + ( Math.random() - 0.5D ), py + ( Math.random() - 0.25D ), pz + ( Math.random() - 0.5D ), ( Math.random() - 0.5D ) * 0.2D, Math.random(), ( Math.random() - 0.5D ) * 0.2D, new int[0] ); } p.world.playSound( px, py, pz, SoundEvents.BLOCK_PORTAL_TRIGGER, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } } @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerLeftClick( PlayerInteractEvent.LeftClickEmpty e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { ItemStack is = p.getHeldItemMainhand(); NBTTagCompound nbt = is.getTagCompound(); if( nbt == null || !nbt.hasKey( "px_" + p.dimension ) ) { return; } double px = nbt.getDouble( "px_" + p.dimension ); double py = nbt.getDouble( "py_" + p.dimension ); double pz = nbt.getDouble( "pz_" + p.dimension ); String cmd = "/tp " + p.getName() + " " + px + " " + py + " " + pz; if( !p.world.isRemote ) { MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); s.getCommandManager().executeCommand( s, cmd ); } /*MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); if( s != null ) { s.getCommandManager().executeCommand( s, cmd ); }*/ p.world.playSound( px, py, pz, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } } } LAU.java ( main class ) package com.kporal.lau; //import com.kporal.lau.events.LookatGUIHandler; import com.kporal.lau.events.OnPlayerInteract; import com.kporal.lau.items.ItemKitbag; import com.kporal.lau.items.ItemMultitool; import com.kporal.lau.items.ItemWindstaff; import com.kporal.lau.items.kitbag.KitbagGuiHandler; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.Item.ToolMaterial; import net.minecraft.item.ItemStack; import net.minecraft.world.GameRules; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.Mod.Instance; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.event.FMLServerStartedEvent; import net.minecraftforge.fml.common.network.NetworkRegistry; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; @Mod(modid = LAU.MODID, name = LAU.NAME, version = LAU.VERSION, acceptedMinecraftVersions = LAU.ACCEPTED_VERSIONS) public class LAU { @Instance public static LAU instance; public static final String MODID = "klau"; public static final String NAME = "Light and Usefull Mod"; public static final String VERSION = "1.0"; public static final String ACCEPTED_VERSIONS = "[1.11.2]"; public static ToolMaterial LAUMAT = net.minecraftforge.common.util.EnumHelper.addToolMaterial( "LAUMAT", 3, 1000, 15.0F, 6.0F, 30 ); public static Item windstaff = new ItemWindstaff(); public static Item kitbag = new ItemKitbag(); public static Item multitool = new ItemMultitool( LAUMAT ); public static enum LAUItems { WINDSTAFF( "windstaff", "itemwindstaff" ), KITBAG( "kitbag", "itemkitbag" ), MULTITOOL( "multitool", "itemmultitool" ); private String unlocalizedName; private String registryName; LAUItems( String unlocalizedName, String registryName ) { this.unlocalizedName = unlocalizedName; this.registryName = registryName; } public String getUnlocalizedName() { return unlocalizedName; } public String getRegistryName() { return registryName; } } @EventHandler public void PreInit( FMLPreInitializationEvent e ) { GameRegistry.register( windstaff ); GameRegistry.register( kitbag ); GameRegistry.register( multitool ); } @EventHandler public void Init( FMLInitializationEvent e ) { if( e.getSide() == Side.CLIENT ) { RegisterRender( windstaff ); RegisterRender( kitbag ); RegisterRender( multitool ); } RegisterRecipe( windstaff, "F", "S", 'F', Items.FEATHER, 'S', Items.STICK ); RegisterRecipe( kitbag, "S", "L", 'S', Items.STRING, 'L', Items.LEATHER ); RegisterRecipe( multitool, "III", "IS ", " S ", 'I', Items.IRON_INGOT, 'S', Items.STICK ); NetworkRegistry.INSTANCE.registerGuiHandler( LAU.instance, new KitbagGuiHandler() ); MinecraftForge.EVENT_BUS.register( new OnPlayerInteract() ); } @EventHandler public void PostInit( FMLPostInitializationEvent e ) { //MinecraftForge.EVENT_BUS.register( new LookatGUIHandler() ); } @EventHandler public void ServerStarted( FMLServerStartedEvent e ) { int count = FMLCommonHandler.instance().getMinecraftServerInstance().worlds.length - 1; for( int id = 0; id < count; id++ ) { GameRules gr = FMLCommonHandler.instance().getMinecraftServerInstance().worlds[id].getGameRules(); gr.setOrCreateGameRule( "keepInventory", "true" ); gr.setOrCreateGameRule( "doFireTick", "false" ); gr.setOrCreateGameRule( "mobGriefing", "false" ); } } public void RegisterRender( Item i ) { Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register( i, 0, new ModelResourceLocation( i.getRegistryName(), "inventory" ) ); } public void RegisterRecipe( Item i, Object... o ) { GameRegistry.addShapedRecipe( new ItemStack( i ), o ); } } The mod is installed on server and client and working on forge 1.11.2-13.20.2386
  16. if( !p.world.isRemote ) { MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); s.getCommandManager().executeCommand( s, cmd ); } I just said, whatever if i do that or not, nothing happend ( where, s here must be on server and must exec the command ), or like you said, i just need to learn something more before continue
  17. diesieben said, because my mod is serverside too, i don't need to use packet ?..
  18. ok so back to p.world.isRemote, so using FMLCommonHandler.instance().getMinecraftServerInstance() is wrong, so how to get the server to execute my command ? because FMLCommonHandler.instance().getMinecraftServerInstance() work really fine for single and lan, but because the mod is serverside too, using FMLCommonHandler.instance().getMinecraftServerInstance() must return the serverside instance ?
  19. yes yes sorry for my bad english, s is null serverside not clientside this is why ( to get single and lan work i used if( s != null ) ! Maybe i need to write something like that ?: if( FMLCommonHandler.instance().getEffectiveSide().isServer() ) { MinecraftServer x = FMLCommonHandler.instance().getMinecraftServerInstance(); x.getCommandManager().executeCommand( x, "/tp " + p.getName() + " " + px + " " + py + " " + pz ); } i havn't test it yet and just copied the other code, just to know if i'm on the good way
  20. Then EntityPlayerMP isn't required, and i do not need packet, ok so my code is finally just that : MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); if( s != null ) { s.getCommandManager().executeCommand( s, "/tp " + p.getName() + " " + px + " " + py + " " + pz ); } p.world.playSound( px, py, pz, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); Yes i know it's wrong like you said, because if i do that i never check if i'm on the server and this must be done from server ( when player is on ). So this code work fine for single player / lan, and don't get error because for client "s" is null so, how to send the command from the server ?
  21. Oh f*** i just see i use EntityPlayer and not EntityPlayerMP to check if server is remote or not .. may be the first error to solved
  22. Ok my mod is on server too, this is what i've misunderstand, so in that case, i've rewrite my code : package com.kporal.lau.events; import com.kporal.lau.LAU; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; //import net.minecraft.network.play.client.CPacketChatMessage; import net.minecraft.server.MinecraftServer; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.SoundCategory; import net.minecraftforge.event.entity.player.PlayerInteractEvent; import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class OnPlayerInteract { @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerRightClick( PlayerInteractEvent.RightClickBlock e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { double px = e.getPos().getX() + 0.5; double py = e.getPos().getY() + 1; double pz = e.getPos().getZ() + 0.5; ItemStack is = p.getHeldItemMainhand(); NBTTagCompound t = is.getTagCompound() == null ? new NBTTagCompound() : is.getTagCompound(); t.setDouble( "px_" + p.dimension, px ); t.setDouble( "py_" + p.dimension, py ); t.setDouble( "pz_" + p.dimension, pz ); is.setTagCompound( t ); for( int x = 0; x < 10; x++ ) { p.world.spawnParticle( EnumParticleTypes.PORTAL, px + ( Math.random() - 0.5D ), py + ( Math.random() - 0.25D ), pz + ( Math.random() - 0.5D ), ( Math.random() - 0.5D ) * 0.2D, Math.random(), ( Math.random() - 0.5D ) * 0.2D, new int[0] ); } p.world.playSound( px, py, pz, SoundEvents.BLOCK_PORTAL_TRIGGER, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } } @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerLeftClick( PlayerInteractEvent.LeftClickEmpty e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { ItemStack is = p.getHeldItemMainhand(); NBTTagCompound nbt = is.getTagCompound(); if( nbt == null || !nbt.hasKey( "px_" + p.dimension ) ) { return; } double px = nbt.getDouble( "px_" + p.dimension ); double py = nbt.getDouble( "py_" + p.dimension ); double pz = nbt.getDouble( "pz_" + p.dimension ); if( !p.world.isRemote ) { /* SERVER STUFF ? with CPacketChatMessage must be here ? */ } if( p.world.isRemote ) { MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); if( s != null ) { s.getCommandManager().executeCommand( s, "/tp " + p.getName() + " " + px + " " + py + " " + pz ); } } p.world.playSound( px, py, pz, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } } } So in case i've really understand what you said, my must must be like that ? just with a new CPacketMessage( String ) if i'm right ?
  23. if( !p.world.isRemote ) { System.out.println( "debug" ); } if( p.world.isRemote ) { MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); s.getCommandManager().executeCommand( s, "/tp " + p.getName() + " " + px + " " + py + " " + pz ); } I back on my code to the start to understand where i'm wrong, by doing this, the debug string is never called and whatever if i'm writing p.world.isRemote or e.getWorld().isRemote, the result is the same, so maybe i'm mistaking something about world::isRemote ? By reading the documentation, world.isRemote may return true for single or lan game and false to integrated or dedicated, so whatever if the mod is on client or server, world.isRemote may return the same result each time, and ... it seem to be wrong : if( !e.getWorld().isRemote ) { System.out.println( "debug server" ); } if( e.getWorld().isRemote ) { System.out.println( "debug client" ); } By doing this, the result is every time the same, only debug client work, server side and client side. So i just think i'm doing thing wrong but here by testing, it seem i miss something or theire is a problem
  24. Ok i'm trying this and sure it don't work ( but no error ), i think i've missed something or doing something wrong : package com.kporal.lau.events; import com.kporal.lau.LAU; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.play.client.CPacketChatMessage; import net.minecraft.server.MinecraftServer; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.SoundCategory; import net.minecraftforge.event.entity.player.PlayerInteractEvent; import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.server.FMLServerHandler; public class OnPlayerInteract { @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerRightClick( PlayerInteractEvent.RightClickBlock e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { double px = e.getPos().getX() + 0.5; double py = e.getPos().getY() + 1; double pz = e.getPos().getZ() + 0.5; ItemStack is = p.getHeldItemMainhand(); NBTTagCompound t = is.getTagCompound() == null ? new NBTTagCompound() : is.getTagCompound(); t.setDouble( "px_" + p.dimension, px ); t.setDouble( "py_" + p.dimension, py ); t.setDouble( "pz_" + p.dimension, pz ); is.setTagCompound( t ); for( int x = 0; x < 10; x++ ) { p.world.spawnParticle( EnumParticleTypes.PORTAL, px + ( Math.random() - 0.5D ), py + ( Math.random() - 0.25D ), pz + ( Math.random() - 0.5D ), ( Math.random() - 0.5D ) * 0.2D, Math.random(), ( Math.random() - 0.5D ) * 0.2D, new int[0] ); } p.world.playSound( px, py, pz, SoundEvents.BLOCK_PORTAL_TRIGGER, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } } @SubscribeEvent ( priority = EventPriority.HIGH ) public void onPlayerLeftClick( PlayerInteractEvent.LeftClickEmpty e ) { EntityPlayer p = e.getEntityPlayer(); if( p.getHeldItemMainhand().getItem() == LAU.windstaff ) { ItemStack is = p.getHeldItemMainhand(); NBTTagCompound nbt = is.getTagCompound(); if( nbt == null || !nbt.hasKey( "px_" + p.dimension ) ) { return; } double px = nbt.getDouble( "px_" + p.dimension ); double py = nbt.getDouble( "py_" + p.dimension ); double pz = nbt.getDouble( "pz_" + p.dimension ); //MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance() != null ? FMLCommonHandler.instance().getMinecraftServerInstance() : ( FMLServerHandler.instance().getServer() != null ? FMLServerHandler.instance().getServer() : null ); MinecraftServer s = FMLCommonHandler.instance().getMinecraftServerInstance(); if( s != null ) { s.getCommandManager().executeCommand( s, "/tp " + p.getName() + " " + px + " " + py + " " + pz ); p.world.playSound( px, py, pz, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.5F, 1.0F, false ); } else { if( !p.world.isRemote ) { FMLServerHandler.instance().getClientToServerNetworkManager().sendPacket( new CPacketChatMessage( "/tp " + p.getName() + " " + px + " " + py + " " + pz ) ); } } } } }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.