Jump to content

Set items in Container


Schleim_time

Recommended Posts

I tried out to set items in my container if i place something in the right place but the problem i got is that i cant see the item until i click on the slot and than it will appear.ย  I tried detectandsendchanges, getslot and putiteminslot and tried to set an itemstack to my slot, i also tried to use .update or something but it all dont worked, i recieve the item but the are not visible until you interact with the right slot, how can i fix that problem? Also i tried to use oncraftmatrixchanged but that dont even return me a sysout

Link to comment
Share on other sites

Show your code.

I've realized that you are reluctant in showing your code in many of your post. Why?

It is hard to help you if you don't show your code.

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Doย notย follow tutorials on YouTube, especially TechnoVision (previously called Loremaster)ย and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3.ย Neverย copy and paste code. You won't learnย anythingย from doing that.

4.ย 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it๏ปฟ.

Support & Bug Reports:

Spoiler

1. Read the EAQย before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11ย are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

ย 

ย 

Link to comment
Share on other sites

3 hours ago, DavidM said:

Show your code.

I've realized that you are reluctant in showing your code in many of your post. Why?

It is hard to help you if you don't show your code.

Quote

package com.Schleimtime.Wasteland.blocks.forgebench;

import java.util.ArrayList;
import java.util.List;

import com.Schleimtime.Wasteland.blocks.forgebench.slots.Outputslot;
import com.Schleimtime.Wasteland.init.moditems;

import net.minecraft.client.gui.inventory.GuiCrafting;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.ContainerWorkbench;
import net.minecraft.inventory.IContainerListener;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.items.ItemStackHandler;

public class forgebenchcontainer extends Container{
ย ย  ย 
ย ย  ย private forgetileentity tileentity;

public forgebenchcontainer(InventoryPlayer player, forgetileentity tyleentity) {
ย ย  ย ย ย  ย this.tileentity = tyleentity;
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 0, 30, 17));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 1, 48, 17));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 2, 66, 17));
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 3, 30, 35));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 4, 48, 35));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 5, 66, 35));
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 6, 30, 53));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 7, 48, 53));
ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(tyleentity, 8, 66, 53));
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย this.addSlotToContainer(new Outputslot(tyleentity, 9, 124, 35));
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย for(int y = 0; y < 3; y++) {
ย ย  ย ย ย  ย ย ย  ย for(int x = 0; x < 9; x++) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(player, x+y*9+9, 8+x*18, 84+y*18));
ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย for(int x = 0; x < 9; x++) {
ย ย  ย ย ย  ย ย ย  ย this.addSlotToContainer(new Slot(player, x, 8+x*18, 142));
ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย 
ย ย  ย }

ย ย  ย @Override
ย ย  ย public boolean canInteractWith(EntityPlayer playerIn) {
ย ย  ย ย ย  ย return true;
ย ย  ย }
ย ย  ย 
ย ย  ย @Override
ย ย  ย public void detectAndSendChanges() {
ย ย  ย ย ย  ย if(tileentity.getStackInSlot(1).getItem() == Items.IRON_INGOT) {
ย ย  ย ย ย  ย ย ย  ย System.out.println("lol");
ย ย  ย ย ย  ย ย ย  ย tileentity.setInventorySlotContents(9, new ItemStack(moditems.BRONZE_INGOT));
ย ย  ย ย ย  ย }
ย ย  ย }

ย ย  ย 
ย ย  ย @Override
ย ย  ย public void onContainerClosed(EntityPlayer playerIn) {
ย ย  ย ย ย  ย ArrayList<ItemStack> itemlist = new ArrayList<ItemStack>();
ย ย  ย ย ย  ย for(int x = 0; x < 9; x++) {
ย ย  ย ย ย  ย ย ย  ย ItemStack stack = tileentity.getStackInSlot(x);
ย ย  ย ย ย  ย ย ย  ย if(stack!=null) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย itemlist.add(stack);
ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย if(!itemlist.isEmpty()) {
ย ย  ย ย ย  ย ย ย  ย for(ItemStack item : itemlist) {
ย ย  ย ย ย  ย ย ย  ย playerIn.inventory.addItemStackToInventory(item);
ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย tileentity.clear();
ย ย  ย ย ย  ย itemlist.clear();
ย ย  ย }
ย ย  ย 
ย ย  ย @Override
ย ย  ย public ItemStack transferStackInSlot(EntityPlayer playerIn, int index)
ย ย ย  {
ย ย ย ย ย ย ย  ItemStack itemstack = ItemStack.EMPTY;
ย ย ย ย ย ย ย  Slot slot = this.inventorySlots.get(index);

ย ย ย ย ย ย ย  if (slot != null && slot.getHasStack())
ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย  ItemStack itemstack1 = slot.getStack();
ย ย ย ย ย ย ย ย ย ย ย  itemstack = itemstack1.copy();

ย ย ย ย ย ย ย ย ย ย ย  if (index == 0)
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  itemstack1.getItem().onCreated(itemstack1, playerIn.getEntityWorld(), playerIn);

ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  if (!this.mergeItemStack(itemstack1, 10, 46, true))
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  return ItemStack.EMPTY;
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  }

ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  slot.onSlotChange(itemstack1, itemstack);
ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  else if (index >= 10 && index < 37)
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  if (!this.mergeItemStack(itemstack1, 37, 46, false))
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  return ItemStack.EMPTY;
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  else if (index >= 37 && index < 46)
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  if (!this.mergeItemStack(itemstack1, 10, 37, false))
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  return ItemStack.EMPTY;
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  else if (!this.mergeItemStack(itemstack1, 10, 46, false))
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  return ItemStack.EMPTY;
ย ย ย ย ย ย ย ย ย ย ย  }

ย ย ย ย ย ย ย ย ย ย ย  if (itemstack1.isEmpty())
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  slot.putStack(ItemStack.EMPTY);
ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย ย ย ย ย  else
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  slot.onSlotChanged();
ย ย ย ย ย ย ย ย ย ย ย  }

ย ย ย ย ย ย ย ย ย ย ย  if (itemstack1.getCount() == itemstack.getCount())
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  return ItemStack.EMPTY;
ย ย ย ย ย ย ย ย ย ย ย  }

ย ย ย ย ย ย ย ย ย ย ย  ItemStack itemstack2 = slot.onTake(playerIn, itemstack1);

ย ย ย ย ย ย ย ย ย ย ย  if (index == 0)
ย ย ย ย ย ย ย ย ย ย ย  {
ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย  playerIn.dropItem(itemstack2, false);
ย ย ย ย ย ย ย ย ย ย ย  }
ย ย ย ย ย ย ย  }

ย ย ย ย ย ย ย  return itemstack;
ย ย ย  }
ย ย  ย 
ย ย  ย 
}

ย 

thats it the sysout give me my message and the item is there but its buggy and i will only see the item if i click on the slot

ย 

3 hours ago, diesieben07 said:

Again: Show your code.

3 hours ago, DavidM said:

I've realized that you are reluctant in showing your code in many of your post. Why?

im sorry, i am responding when i got the mail and sometimes im not at home XD

Link to comment
Share on other sites

Ok im tryed it now with an Override method

ย 

Quote

@Override
ย ย  ย public ItemStack getStackInSlot(int slotIndex) {
ย ย  ย ย ย  ย if(slotIndex == 9) {
ย ย  ย ย ย  ย ย ย  ย for(ForgingRecipe r : ForgingbenchRecipesInit.FORGINGRECIPES) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย System.out.println("its wรถrking"+r.getinput1+r.getinput4);
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(0).getItem() == r.getinput1) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(1).getItem() == r.getinput2) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(2).getItem() == r.getinput3) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(3).getItem() == r.getinput4) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(4).getItem() == r.getinput5) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(5).getItem() == r.getinput6) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(6).getItem() == r.getinput7) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(8).getItem() == r.getinput8) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(9).getItem() == r.getinput9) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย return new ItemStack(r.getoutput);
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย }
ย ย  ย ย ย  ย return itemStacks[slotIndex];
ย ย  ย }

that worked if i do that manully but for some reason it will not work and also the for loop will not work

ย 

Quote

package com.Schleimtime.Wasteland.blocks.forgebench;

import java.util.ArrayList;

import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class ForgingbenchRecipesInit {
ย ย  ย 
ย ย  ย public static final ArrayList<ForgingRecipe> FORGINGRECIPES = new ArrayList<ForgingRecipe>();
ย ย  ย 
ย ย  ย Item o = null;
ย ย  ย Item i = Items.IRON_INGOT;
ย ย  ย Item s = Items.IRON_INGOT;
ย ย  ย 
ย ย  ย ForgingRecipe iron_pickaxe = new ForgingRecipe(i,i,i,o,s,o,o,s,o, Items.IRON_PICKAXE);
}

ย 

Quote

package com.Schleimtime.Wasteland.blocks.forgebench;

import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class ForgingRecipe {
ย ย  ย 
ย ย  ย private Item input1;
ย ย  ย private Item input2;
ย ย  ย private Item input3;
ย ย  ย private Item input4;
ย ย  ย private Item input5;
ย ย  ย private Item input6;
ย ย  ย private Item input7;
ย ย  ย private Item input8;
ย ย  ย private Item input9;
ย ย  ย private Item output;

ย ย  ย public ForgingRecipe (Item input1, Item input2, Item input3, Item input4, Item input5, Item input6, Item input7, Item input8, Item input9, Item output) {
ย ย  ย ย ย  ย ForgingbenchRecipesInit.FORGINGRECIPES.add(this);
ย ย  ย ย ย  ย 
ย ย  ย ย ย  ย this.input1 = input1;
ย ย  ย ย ย  ย this.input2 = input2;
ย ย  ย ย ย  ย this.input3 = input3;
ย ย  ย ย ย  ย this.input4 = input4;
ย ย  ย ย ย  ย this.input5 = input5;
ย ย  ย ย ย  ย this.input6 = input6;
ย ย  ย ย ย  ย this.input7 = input7;
ย ย  ย ย ย  ย this.input8 = input8;
ย ย  ย ย ย  ย this.input9 = input9;
ย ย  ย ย ย  ย this.output = output;
ย ย  ย ย ย  ย 
ย ย  ย }
ย ย  ย 
ย ย  ย public Item getinput1 = input1;
ย ย  ย public Item getinput2 = input2;
ย ย  ย public Item getinput3 = input3;
ย ย  ย public Item getinput4 = input4;
ย ย  ย public Item getinput5 = input5;
ย ย  ย public Item getinput6 = input6;
ย ย  ย public Item getinput7 = input7;
ย ย  ย public Item getinput8 = input8;
ย ย  ย public Item getinput9 = input9;
ย ย  ย public Item getoutput = output;
ย ย  ย 
ย ย  ย 
}

i dont get why

Link to comment
Share on other sites

7 hours ago, Schleim_time said:

ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(0).getItem() == r.getinput1) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(1).getItem() == r.getinput2) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(2).getItem() == r.getinput3) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(3).getItem() == r.getinput4) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(4).getItem() == r.getinput5) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(5).getItem() == r.getinput6) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(6).getItem() == r.getinput7) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(8).getItem() == r.getinput8) {
ย ย  ย ย ย  ย ย ย  ย ย ย  ย if(this.getStackInSlot(9).getItem() == r.getinput9) {

Have you heard of loops?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

15 minutes ago, Schleim_time said:

Yes but i cant do for x < 8 because i have for every recipe a own getInputXย 

You can. Simply iterate through the inputsย instead of creating a new variable for each one of them. Use a list.

Also, ItemStack != Item.

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Doย notย follow tutorials on YouTube, especially TechnoVision (previously called Loremaster)ย and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3.ย Neverย copy and paste code. You won't learnย anythingย from doing that.

4.ย 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it๏ปฟ.

Support & Bug Reports:

Spoiler

1. Read the EAQย before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11ย are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

ย 

ย 

Link to comment
Share on other sites

16 minutes ago, Schleim_time said:

ahh however i think it isnt that much performance so i take that easy way i did

Iterating through a list isn't that performance intensive, but will make your code a lot more readable and easy to fix.

Some tips:

Spoiler

Modder Support:

Spoiler

1. Doย notย follow tutorials on YouTube, especially TechnoVision (previously called Loremaster)ย and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3.ย Neverย copy and paste code. You won't learnย anythingย from doing that.

4.ย 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it๏ปฟ.

Support & Bug Reports:

Spoiler

1. Read the EAQย before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11ย are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

ย 

ย 

Link to comment
Share on other sites

18 hours ago, Schleim_time said:

ahh however i think it isnt that much performance so i take that easy way i did

Don't manually unroll loops. If there are any possible optimisations that can be done to your code, the JIT will do them. Manually unrolling loops makes your code unreadable and is likely to adversely effect performance.

https://stackoverflow.com/questions/2684364/why-arent-programs-written-in-assembly-more-often/2685541#2685541

https://blog.overops.com/java-on-steroids-5-super-useful-jit-optimization-techniques/

About Me

Spoiler

My Discordย -ย Cadiboo#8887

My Website -ย Cadiboo.github.io

My Mods -ย Cadiboo.github.io/projects

My Tutorials -ย Cadiboo.github.io/tutorials

Versions below 1.14.4ย are no longer supported on this forum.ย Use the latest version toย receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com).ย A list of bad sites can be foundย here, with more information available atย stopmodreposts.org

Edit your own signature atย www.minecraftforge.net/forum/settings/signature/ย (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • https://pastebin.com/VwpAW6PX My game crashes upon launch when trying to implement the Oculus mod to this mod compilation, above is the crash report, I do not know where to begin to attempt to fix this issue and require assistance.
    • https://youtube.com/shorts/gqLTSMymgUg?si=5QOeSvA4TTs-bL46
    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. ๐Ÿ“ˆ Skills: RPG-style skill system that enhances your gaming experience! ๐ŸŽฎ Leaderboards: Compete and shine! Top players are rewarded weekly! ๐Ÿ† Random Teleporter: Travel instantly across different worlds with a click! ๐ŸŒ Custom World Generation: Beautifully generated world. ๐ŸŒ Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. ๐Ÿฐ Kits: Unlock ranks and gain access to various kits. ๐Ÿ› ๏ธ Fishing Tournament: Compete in a friendly fishing tournament! ๐ŸŽฃ Chat Games: Enjoy games right within the chat! ๐ŸŽฒ Minions: Get some help from your loyal minions. ๐Ÿ‘ฅ Piรฑata Party: Enjoy a festive party with Piรฑatas! ๐ŸŽ‰ Quests: Over 1000 quests that you can complete! ๐Ÿ“œ Bounty Hunter: Set a bounty on a player's head. ๐Ÿ’ฐ Tags: Displayed on nametags, in the tab list, and in chat. ๐Ÿท๏ธ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! ๐ŸŸข Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. ๐Ÿ”ฒโœจ[ Player Warp: Set your own warp points for other players to teleport to. ๐ŸŒŸ Display Shop: Create your own shop and sell to other players! ๐Ÿ›’ Item Skins: Customize your items with unique skins. ๐ŸŽจ Pets: Your cute loyal companion to follow you wherever you go! ๐Ÿพ Cosmetics: Enhance the look of your character with beautiful cosmetics! ๐Ÿ’„ XP-Bottle: Store your exp safely in a bottle for later use! ๐Ÿถ Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! ๐Ÿ“ฆ Glowing: Stand out from other players with a colorful glow! โœจ Player Particles: Over 100 unique particle effects to show off. ๐ŸŽ‡ Portable Inventories: Over virtual inventories with ease. ๐Ÿงณ And a lot more! Become part of our growing community today! Discord:ย https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working ย  I am not familiar with Linux - check for similar/related issues ย 
  • Topics

×
×
  • Create New...

Important Information

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