Jump to content

plugsmustard

Members
  • Posts

    89
  • Joined

  • Last visited

Everything posted by plugsmustard

  1. it's all the same code, same jar! I have the desktop program now
  2. weird. cuz this is the same jar: https://imgur.com/a/4Mr8x4i how should I go about rectifying the extends wolfentity. that might fix the problem.
  3. but if you play the jar, it spawns as a small "luna"
  4. Sorry. there was a messed up section: https://github.com/drmdgg/marijuanacraft1.14. the custom wolf will spawn with the proper texture naturally and by way of spawn egg. but when I spawn the puppies (they won't breed) using the spawn egg, it uses an old texture that isn't even in the resources anymore. and then when it grows into an adult wolf it keeps that texture. so basically what I do is make a flat world in survival with cheats (so I can change gamemode) to ensure they spawn. then I use the spawn egg on them to spawn the puppy that has the incorrect texture also, he's the most recent jar
  5. okay, so. im still having this problem. it was working for whatever reason and then just stopped and started using the wrong texture (even for the puppies). as i said, i can spawn them in with the egg, making their texture proper. but when they spawn naturally or i spawn a puppy, it uses an old (ugly) texture thats NOT even in the resources anymore.
  6. Still trying to figure out how to render the screen a different colour when food is eaten, or to use the screen warp from the portal. this is what i have so far. the effect works, but the screen does not "warp" https://github.com/drmdgg/marijuanacraft1.14.4/blob/master/src/main/java/drmdgg/marijuanacraft/potion/StonedEffect.java https://github.com/drmdgg/marijuanacraft1.14.4/blob/master/src/main/java/drmdgg/marijuanacraft/potion/StatusEffect.java any insights or help is greatly appreciated
  7. yeah its working now for no reason i can tell. tha ks for the help. PLEASE DELETE THIS TOPIC!!!
  8. alright. i fixed that. what about the texture?
  9. they are. all the ones being used are lower case. there's extra ones that weren't deleted on the git they are now deleted
  10. git: https://github.com/drmdgg/marijuanacraft1.14.4 how should i upload the mod jar?
  11. okay so, i built my mod to give her the old tester before giving it to my brother for testing, but my custom dog's texture is one that doesnt exist anymore and it only does that in survival. if in creative, the texture is correct. 2nd problem: all the items are like this: item.modid.itemname. all of this wasnt a problem during the testing through eclipse. help!
  12. Hello, looking for the way to spawn a custom villager into the vanilla villages. any help is appreciated
  13. what should I be looking for in the debugger info? and I know its being called because its along with my other "on" methods edit: nevermind. I got it
  14. alright. well I did what you said and added an onLootLoad to my event subscriber class, but im still only getting wheat seeds
  15. what class should I be putting that in?
  16. a couple questions for you guys regarding JSON files how do I add counts so a block will drop more than one of each item?: questions 2: how do I add my custom seed to this vanilla json file?
  17. download tabula (1.12). import horse model. save as project. download tabula plugin for BlockBench. import horsemodel edit as you please export as java class
  18. werid, i fixed that a while ago: https://github.com/drmdgg/marijuanacraft1.14.4/blob/b9dabc49d8731443f42a680138ad3159e63d5bfb/src/main/java/drmdgg/marijuanacraft/network/PacketButtonClicked.java#L27
  19. https://github.com/drmdgg/marijuanacraft1.14.4/blob/c4986b9a05326b9a17776e6000bf7e40957b3253/src/main/java/drmdgg/marijuanacraft/network/PacketHandler.java#L36 the line with errors :https://github.com/drmdgg/marijuanacraft1.14.4/blob/c4986b9a05326b9a17776e6000bf7e40957b3253/src/main/java/drmdgg/marijuanacraft/network/PacketHandler.java#L32
  20. encode was, decode was not. made them static, but nothing changed
  21. The method registerMessage(int, Class<MSG>, BiConsumer<MSG,PacketBuffer>, Function<PacketBuffer,MSG>, BiConsumer<MSG,Supplier<NetworkEvent.Context>>) in the type SimpleChannel is not applicable for the arguments (int, Class<PacketButtonClicked>, PacketButtonClicked::encode, PacketButtonClicked::decode, PacketButtonClicked.Handler::handle) there's also errors over each portion "The type PacketButtonClicked does not define encode(MSG, PacketBuffer) that is applicable here"
  22. thank you. is that all i need to put in those methods because i am still getting errors in the packet handler class public static void Register() { int MId = 0; INSTANCE.registerMessage(MId++, PacketButtonClicked.class, PacketButtonClicked::encode, PacketButtonClicked::decode, PacketButtonClicked.Handler::handle); }
×
×
  • Create New...

Important Information

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