-
Posts
422 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Novârch
-
I'm trying to locate a specific StructurePiece in a structure, for instance locate a single FortressPiece.Crossing in a Nether Fortress. How would I go about doing this, is this even possible?
-
This works, though it makes the rotation a heck of a lot less smooth. Nonetheless, thank you.
-
I've been trying to create a remote controlled entity, it's been going pretty well so far, though I have a single issue. To move the camera I've opted for how AbstractHorseEntity does it, copying the player's yaw and pitch values. This works fine until the yaw value reaches 360, upon which it abruptly snaps to about -90 and then returns to 0. Can anyone tell me what's causing this? The code for the entity can be found here.
-
[SOLVED] [1.15.2] Storing inventory contents to capability
Novârch replied to Novârch's topic in Modder Support
That's exactly what I was looking for! Thank you! -
[SOLVED] [1.15.2] Storing inventory contents to capability
Novârch replied to Novârch's topic in Modder Support
I'm doing that now, I've updated the repo with the new code so you can just use the same links. The same issue still occurs though, if I throw an item it will not re-appear in my inventory, but if I manually delete it using creative mode it will. Edit: I have confirmed the issue is linked to tossing the item, if I toss the item no matter what I do the item will be erased. I don't understand why the list in the capability updates. -
[SOLVED] [1.15.2] Storing inventory contents to capability
Novârch replied to Novârch's topic in Modder Support
Thank you! I've gone ahead and used that and setup a capability, I also took a look at the read write methods inside PlayerInventory. The issue now is that for some reason the inventory in the capability is syncing with the player's inventory, so it isn't reverting like it should. Can you see anything I missed here that could cause that, the issue seems pretty much impossible. Edit: Forgot to include a link to the class, here. Edit 2: It seems that it removes new items but doesn't bring back old ones? Weird. Edit 3: It also seems the items added to the player's inventory are ghost items and disappear when dropped. I'm stupid and didn't check World#isRemote. -
I've been trying to make a "time revert" effect lately, where you would set a checkpoint at one time and then be able to go back to it. This of course requires lots of things to be saved (broken blocks, placed blocks, entity positions, game time, etc.), things like broken and placed blocks have been easy, but I'm having trouble with player inventories. The half-baked system I thought up was giving all the ItemStacks in a player's inventory a special variable in a capability and then to delete all items that don't have that variable at a certain value, this works poorly though, items don't revert durability and stackable items can be destroyed if manually stacked. Is there a way I can save every player's inventory contents into a capability to be able to revert to that? I'd really appreciate some ideas.
-
[1.6.1] How to add "performEffect" to my custom potion effect?
Novârch replied to raddeee's topic in Modder Support
performEffect only runs if isReady returns true. -
That's a valid assumption, but it doesn't work like that, you cannot access client code from common code without packets.
-
Entity#setVelocity is only present on the client, use Entity#setMotion instead. What BlockyPenguin suggested will not work.
-
1.7 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support, or better yet, give up. No one here will help you make a custom launcher.
-
I'd take a look at EntityRenderer#renderName.
-
Post code, preferably as a git repo.
-
Do not do that, that's exactly why tile entities exist.
-
https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/modification-development
-
I have an error and have no clue how to fix it
Novârch replied to MrGreenyboy's topic in Modder Support
You mean example_item, right? Please post your full debug.log. Before you ask where it is like everyone else, remember that your OS 's file manager has a search function. -
I have an error and have no clue how to fix it
Novârch replied to MrGreenyboy's topic in Modder Support
Remove your item name, all you need is the modid, you can also annotate the class with it if you're going to use to for lots of items. -
Take a look at KelpBlock.
-
How to get list of filenames in directory in resources
Novârch replied to hohserg's topic in Modder Support
Why? In the context of modding you should be using ResourceLocation and inputting the path manually. -
1.8 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
-
[1.16.1][Solved] Sending packets to client from dedicated server?
Novârch replied to Electric's topic in Modder Support
All packets should be registered in FMLCommonSetupEvent, no exceptions. OnlyIn does literally nothing for modders, it's just an ugly ASM hack vanilla and Forge use, to properly specify network direction use the NetworkDirection version of SimpleChannel#register. Your issue most likely stems from your registration, your packet probably isn't present on the server, it should be. -
Access Transformers.
-
It isn't a class, it's a json file you need to add.
-
Entity's Vehicle: ~~ERROR~~ NullPointerException: null
Novârch replied to Help!'s topic in Modder Support
Please do what Draco said, that's still not the full debug.log.