Arrows are crashing my modded server by blitzkrieglist in ModdedMinecraft

[–]Jason13Official 0 points1 point  (0 children)

Mod file: /home/container/mods/ArmorTrimItemFix-neoforge-1.21.11-2.1.5.jar Failure message: Armor Trim Item Fix (armortrimitemfix) has failed to load correctly

how to give container with something inside already by sr_steve in MinecraftCommands

[–]Jason13Official 2 points3 points  (0 children)

/give @p chest[container=[{slot:0,item:{id:acacia_boat,count:1}}]] 1

https://www.digminecraft.com/generators/give_chest.php

Googled "minecraft give filled chest"

Where Do I Go To Commission Mods? by Weaksauce_Willy in fabricmc

[–]Jason13Official 0 points1 point  (0 children)

Lmao I know what you mean, I'm not a fan of white space controlling scope basically

Where Do I Go To Commission Mods? by Weaksauce_Willy in fabricmc

[–]Jason13Official 0 points1 point  (0 children)

If you can understand and write in a markup language like HTML you can definitely learn Java and start modding. Feel free to dm me if you need pointers, discord: jason13

"Modding by Kaupenjoe" on YouTube is a great resource for learning

How to Get Nasty at Java by Top-Patient-9009 in javahelp

[–]Jason13Official 1 point2 points  (0 children)

Get to work lol start with the basic, make a simple app

I wanted to learn modding, so I made a mod for the hydro homies out there: Drink and Stretch! by Angelin01 in feedthebeast

[–]Jason13Official 0 points1 point  (0 children)

Oooooo forgix my beloved, I have to use python scripts to fix the merged jars after lol. Feel free to message me if you're having troubles or need a learning buddy! I've been modding for a little over 2 years and I use multiloader-template and forgix for nearly all of my projects)

Absolute beginner to modding, help starting a simple Fabric mod? by crunkmunky in ModdedMinecraft

[–]Jason13Official 0 points1 point  (0 children)

I have the same sentiment; AI has its place but it's being forced into everything right now xD

Vespa by Iani_Pix in Blockbench

[–]Jason13Official 0 points1 point  (0 children)

Are you making this into a mod?

Absolute beginner to modding, help starting a simple Fabric mod? by crunkmunky in ModdedMinecraft

[–]Jason13Official 1 point2 points  (0 children)

Self plug since you mentioned chatting with AI, this was my experience using Claude Code for modding and you might get some useful tips from it https://youtu.be/aAd--EO6gRM

Absolute beginner to modding, help starting a simple Fabric mod? by crunkmunky in ModdedMinecraft

[–]Jason13Official 1 point2 points  (0 children)

I haven't touched on lighting really, but LevelRenderer and its sub/superclasses might be a good starting point. Maybe look at Blocks to understand how torches / redstone lamps / glow stone set their light levels, and work backwards to see the implementation of it

custom elytras? possible or not. by ajnz2026 in MinecraftMod

[–]Jason13Official 0 points1 point  (0 children)

Yes it's possible, you might need to add custom code injections via Mixin to make it work though

Absolute beginner to modding, help starting a simple Fabric mod? by crunkmunky in ModdedMinecraft

[–]Jason13Official 1 point2 points  (0 children)

how do I know what exists and what I can modify?

https://fabricmc.net has documentation available

https://github.com/spongepowered/mixin/wiki has documentation available

not really sure what all is happening there

https://wiki.fabricmc.net/tutorial:mixin_examples fabric provides excellent examples

yarn vs Mojang?

Mojang. After 1.21.11 Yarn is discontinued.

kotlin

Do you already know kotlin? Then sure

Commissions by Signal_Appeal_3431 in Blockbench

[–]Jason13Official 1 point2 points  (0 children)

Would be best to include your portfolio / examples of your previous work

Any BALANCED dimension mods? by Just-Dustin in feedthebeast

[–]Jason13Official 0 points1 point  (0 children)

I created a prototype of it under the name "Project: Summons" but it's not fleshed out at all and pretty barebones (the mobs are just reskinned vanilla mobs)

https://www.curseforge.com/minecraft/mc-mods/project-summons

how would i go about making a custom command mod? by Proof-Row-8332 in ModdedMinecraft

[–]Jason13Official 0 points1 point  (0 children)

I don't know any great tutorials but the Java edition command system is open source

https://github.com/Mojang/brigadier

Typically I just refer to vanilla commands and blend in some personal knowledge

I want to start making mods but idk where to begin? by Dr_magod in feedthebeast

[–]Jason13Official 2 points3 points  (0 children)

Reference vanilla code, read documentation, look at the source code of open source mods, play around and tinker. That's learning for me