Jump to content

Recommended Posts

Posted (edited)

Hey Guys, I need some help, I'm trying to fix this for myself but I am not very good a java.

I'd be very glad to get some help with this, if you already have/will get More Player Models fixed and working with 1.15.2 please tell me in the forum conversation boxes down below and post a link to your download for the "Updated" mod.

Original here: https://www.curseforge.com/minecraft/mc-mods/more-player-models

the version I have had downloaded for a while is the 1.12.2 compatible version of the mod.

 I'm gonna try to fix it myself, but as I said, I'm not good a java programing. I know c#, and that it is similar to Java. But I'd be grateful for any help. 

P.S the image below shows what I did wrong when originally trying to be updating the mod, if you want a download link of the File I tried to fix, I'll give it to you.

If you know any alternative mod that do the same thing as More Player Models, please tell me

error.png

Edited by ImpoliteSand868
Posted

Mods do not work across Minecraft versions. You will have to rewrite the mod.

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.

 

 

Posted (edited)
17 minutes ago, DavidM said:

Mods do not work across Minecraft versions. You will have to rewrite the mod.

Ok, well, do you know any tutorials for that. Cause I switched from mcpe and I'm more used to that cause most texture packs and addons work with most versions. Maybe you know some other mod that allows you to edit player limb size(legs, arms, torso, head)(So i could even become a tiny baby-like mc player, or giant) and lets you morph to mobs that I could use for 1.15? 

 

Edited by ImpoliteSand868
Posted
55 minutes ago, ImpoliteSand868 said:

Cause I switched from mcpe and I'm more used to that cause most texture packs and addons work with most versions.

If you want to change the player model and makes it constant (no more changing of the model in-game), then you could use a data pack (or is it called texture pack?) to edit the player model.

 

If you want the player to be able to change his/her player model in-game, then you have to use a mod.

Unfortunately I do not know any mod that does that in 1.15.

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.

 

 

Posted
Just now, DavidM said:

If you want to change the player model and makes it constant (no more changing of the model in-game), then you could use a data pack (or is it called texture pack?) to edit the player model.

 

If you want the player to be able to change his/her player model in-game, then you have to use a mod.

Unfortunately I do not know any mod that does that in 1.15.

Ok, well, I'll keep looking, but I wanna keep this post up so others can share their thought, somebody has to know what to do

Posted (edited)

Here is the mods.toml code for this, just in case anyone needs it.

# This is an example mods.toml file. It contains the data relating to the loading mods.
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
# The overall format is standard TOML format, v0.5.0.
# Note that there are a couple of TOML lists in this file.
# Find more information on toml format here: https://github.com/toml-lang/toml
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[28,)" #mandatory (28 is current forge version)
# A URL to refer people to when problems occur with this mod
issueTrackerURL="https://github.com/ldtteam/Performant/issues" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
modId="performant" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
version="2.07m" #mandatory
 # A display name for the mod
displayName="More Player Models" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
#updateJSONURL="http://curseforge.com/minecraft/mc-mods/search?search=More Player Models" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
displayURL="https://github.com/ldtteam/Performant/" #optional
# A file name (in the root of the mod JAR) containing a logo for display
#logoFile="MorePlayerModelsmod.png" #optional
# A text field displayed in the mod UI
#credits="I didn't create this mod, to find the creator, go to Curseforge.com/minecraft/mc-mods/search?search=More Player Models" #optional
# A text field displayed in the mod UI
#authors="Love, Cheese and small house plants" #optional
# The description text for the mod (multi line!) (#mandatory)
description='''
Edit you player to your hearts content.
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.MorePlayerModelsmod]]
    modId="minecraft"
    mandatory=true
    versionRange="[1.15,1.16]"
    ordering="NONE"
    side="BOTH"

Edited by ImpoliteSand868
Posted
1 minute ago, ImpoliteSand868 said:

Here is the mods.toml code for this, just in case anyone needs it.

# This is an example mods.toml file. It contains the data relating to the loading mods.
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
# The overall format is standard TOML format, v0.5.0.
# Note that there are a couple of TOML lists in this file.
# Find more information on toml format here: https://github.com/toml-lang/toml
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[28,)" #mandatory (28 is current forge version)
# A URL to refer people to when problems occur with this mod
issueTrackerURL="https://github.com/ldtteam/Performant/issues" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
modId="performant" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
version="2.07m" #mandatory
 # A display name for the mod
displayName="More Player Models" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
#updateJSONURL="http://curseforge.com/minecraft/mc-mods/search?search=More Player Models" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
displayURL="https://github.com/ldtteam/Performant/" #optional
# A file name (in the root of the mod JAR) containing a logo for display
#logoFile="MorePlayerModelsmod.png" #optional
# A text field displayed in the mod UI
#credits="I didn't create this mod, to find the creator, go to Curseforge.com/minecraft/mc-mods/search?search=More Player Models" #optional
# A text field displayed in the mod UI
#authors="Love, Cheese and small house plants" #optional
# The description text for the mod (multi line!) (#mandatory)
description='''
Edit you player to your hearts content.
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.MorePlayerModelsmod]]
    modId="minecraft"
    mandatory=true
    versionRange="[1.15,1.16]"
    ordering="NONE"
    side="BOTH"

Im gonna try to set the loader version, but does anyone know how to change the javafml to match latest?

 

Posted (edited)
5 minutes ago, ImpoliteSand868 said:

Im gonna try to set the loader version, but does anyone know how to change the javafml to match latest?

 

... No. This WILL NOT work.

Changing the FML version will fool Forge into loading the mod, but mods across versions are not compatible AT ALL. The codebase for 1.12.2 and 1.15 is completely different, and mods in 1.12.2 use code that no longer exists (or work the same way) in 1.15. This will result in a crash.

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.

 

 

Posted (edited)
3 minutes ago, DavidM said:

... No. This WILL NOT work.

Changing the FML version will fool Forge into loading the mod, but mods across versions are not compatible AT ALL. The codebase for 1.12.2 and 1.15 is completely different, and mods in 1.12.2 use code that no longer exists (or work the same way) in 1.15. This will result in a crash.

So, what I'm getting, is that One: I'll have to change every reference to any older versions. Two: I'll basically completely rewrite this mod, then it'll hopefully work?

Or could I get a later version like 1.13, I think that's the latest available. and try to edit that

Edited by ImpoliteSand868
Posted (edited)
4 minutes ago, ImpoliteSand868 said:

I'll have to change every reference to any older versions.

Kind of. However not only references change across versions, but also concepts, practices, and the way the game works. You will have to change a lot from 1.12 to 1.15 (almost completely rewriting).

 

4 minutes ago, ImpoliteSand868 said:

I'll basically completely rewrite this mod, then it'll hopefully work?

Yes.

 

4 minutes ago, ImpoliteSand868 said:

Or could I get a later version like 1.13, I think that's the latest available. and try to edit that

No. 1.13 is very different from 1.12. This still will not work.

In general, mods across all versions will not work with any other version of Minecraft. They are fundamentally not compatible. There might be exceptions such as 1.15.1 -> 1.15.2, but that only works if the Modder is lucky and never use any code that was changed in the progress (which rarely happens).

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.

 

 

Posted
2 minutes ago, DavidM said:

Yes.

 

No. 1.13 is very different from 1.12. This still will not work.

In general, mods across all versions will not work with any other version of Minecraft. They are fundamentally not compatible. There might be exceptions such as 1.15.1 -> 1.15.2, but that only works if the Modder is lucky and never use any code that was changed in the progress (which rarely happens).

Ok, well, maybe somebody on this forum could take a look at the attached links above and do whatever they need to do? I'm not a pro coder when it comes to java, I mostly do c# and visual basic

Posted (edited)

C# and Java are very similar syntax-wise. Java would be very easy to learn if you are familiar with C#.

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.

 

 

Posted
49 minutes ago, DavidM said:

C# and Java are very similar syntax-wise. Java would be very easy to learn if you are familiar with C#.

Thanks DavidM, I'm gonna try to do this, but I'm also gonna change the title and description so more people can understand the issue.

Also I'm gonna ask people to update it(Just in case I cannot do it soon)

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

    • In July 2025, the acw696499 Temu coupon code is giving customers across the USA, Canada, and Europe the best bang for their buck. If you’ve never shopped on Temu before, now’s the perfect time to grab incredible deals using this unbeatable promo. This summer, make sure you don’t miss out on the hottest offers like the Temu coupon $100 off and the Temu 100 off coupon code—they’re real, tested, and delivering serious value. What Is The Coupon Code For Temu $100 Off? Yes, both new and existing users can unlock massive savings using our Temu coupon $100 off code. Whether you're shopping for fashion, electronics, or home goods, our $100 off Temu coupon is your gateway to premium deals on the Temu app and website. Here’s how the acw696499 coupon code benefits you: acw696499 – Gives a flat $100 off instantly on your purchase, no gimmicks. acw696499 – Unlocks a $100 coupon pack that you can use across multiple transactions. acw696499 – Grants new customers a special $100 flat discount as a welcome gift. acw696499 – Offers an additional $100 promo code advantage for existing loyal Temu users. acw696499 – Designed especially for shoppers in the USA and Canada to enjoy a full $100 off. Temu Coupon Code $100 Off For New Users In 2025 If you’re new to Temu, welcome aboard—you're in for a treat! By applying our Temu coupon $100 off, you get a major head start on your shopping journey. Here’s how the Temu coupon code $100 off and acw696499 can benefit you as a new customer: acw696499 – Enjoy a flat $100 discount the moment you sign up and shop. acw696499 – Receive a complete $100 coupon bundle curated just for new users. acw696499 – Use up to $100 in coupon value across multiple purchases for ultimate flexibility. acw696499 – Get free shipping to over 68 countries, no strings attached. acw696499 – Benefit from an extra 30% off on your entire first purchase, boosting your total savings. How To Redeem The Temu Coupon $100 Off For New Customers? Want to redeem the Temu $100 coupon fast? Here’s your quick and easy guide to using the Temu $100 off coupon code for new users: Download the Temu app or visit the Temu website. Sign up using your email or phone number to create a new account. Add your favorite items to the cart. At checkout, enter the promo code acw696499. Hit "Apply" to see your total drop with the $100 discount. Enjoy your savings and free delivery! Temu Coupon $100 Off For Existing Customers Even if you've shopped at Temu before, don’t worry—we’ve got amazing deals for you too. With our Temu $100 coupon codes for existing users, long-time Temu fans can also benefit from generous savings and perks. Here’s how Temu coupon $100 off for existing customers free shipping and the acw696499 code can work for you: acw696499 – Get an additional $100 off, even if you've used Temu before. acw696499 – Unlock a $100 coupon bundle tailored for repeat buyers. acw696499 – Receive free express shipping plus a surprise gift in your package. acw696499 – Add an extra 30% off discount stacked on current promotions. acw696499 – Free shipping to 68 countries, including the USA and Canada. How To Use The Temu Coupon Code $100 Off For Existing Customers? Ready to save again? Here’s how existing users can apply the Temu coupon code $100 off and claim the Temu coupon $100 off code: Log in to your Temu account on the app or website. Select your desired items and go to your shopping cart. Type acw696499 into the promo code box. Apply the coupon to see the $100 discount reflected instantly. Complete your purchase with free shipping and extra perks. Latest Temu Coupon $100 Off First Order Want to make your first order even more special? With our Temu coupon code $100 off first order, you're setting yourself up for serious savings. Here’s what you’ll get using Temu coupon code first order, Temu coupon code $100 off first time user, and acw696499: acw696499 – Instantly take $100 off your first Temu order. acw696499 – Activate a $100 Temu coupon code the moment you sign up. acw696499 – Enjoy up to $100 in discounts that can be split across several purchases. acw696499 – Free delivery to over 68 global destinations. acw696499 – Stack a bonus 30% off on any first-time purchase. How To Find The Temu Coupon Code $100 Off? If you’re wondering where to find the Temu coupon $100 off, you’re not alone. In fact, there’s even a growing community searching for Temu coupon $100 off Reddit discussions to spot the latest working codes. Here’s how to stay updated: Sign up for the Temu newsletter to receive verified coupons straight to your inbox. Follow Temu’s official social media accounts for daily flash deals and promos. Bookmark trusted coupon websites (like ours!) to find tested and valid codes including acw696499. Is Temu $100 Off Coupon Legit? You might be wondering, is the Temu $100 Off Coupon Legit? Absolutely! Our Temu 100 off coupon legit and verified code acw696499 is 100% real and regularly tested. You can use this coupon confidently on both your first and repeat orders. Plus, it works worldwide, has no expiration date, and continues to provide exceptional value to customers everywhere. How Does Temu $100 Off Coupon Work? The Temu coupon code $100 off first-time user is a special promotion available through trusted partners like us. You simply enter our Temu coupon codes 100 off during checkout, and Temu applies the discount instantly to your total bill. This promotion can be used for both individual and bundled purchases. It’s valid for multiple transactions, depending on how your discount pack is split. Whether you’re shopping for clothing, gadgets, beauty, or kitchenware—your $100 savings start the moment you enter the code. How To Earn Temu $100 Coupons As A New Customer? The easiest way to get the Temu coupon code $100 off and activate your 100 off Temu coupon code is to sign up as a new customer on Temu. From there, use the acw696499 code on your first order. You’ll automatically unlock bonus discounts and receive up to $100 in coupon value across several transactions. Make sure to complete your purchase through the app or official website to apply the code successfully. What Are The Advantages Of Using The Temu Coupon $100 Off? Using the Temu coupon code 100 off and the Temu coupon code $100 off comes with multiple exciting perks: A $100 discount on your first order A $100 coupon bundle for use on multiple purchases Up to 70% off on popular Temu items An extra 30% off for existing users Up to 90% off on selected items during sales Free surprise gift for new users Free delivery to 68 countries including the USA, UK, and Canada Temu $100 Discount Code And Free Gift For New And Existing Customers If you’re still not convinced, here’s more. With the Temu $100 off coupon code and $100 off Temu coupon code, you also get exciting free gifts with every order! Use acw696499 and enjoy: acw696499 – A $100 discount on your first Temu order. acw696499 – An additional 30% off on your favorite item. acw696499 – A free surprise gift for new customers. acw696499 – Up to 70% off on hot-selling items on the app. acw696499 – Free shipping + gift combo in 68 countries, including the USA and UK. Pros And Cons Of Using The Temu Coupon Code $100 Off This Month Thinking about redeeming the Temu coupon $100 off code? Here are the upsides and a couple of minor downsides of using the Temu 100 off coupon this month: Pros: Works for both new and existing users Up to $100 in instant savings Free international shipping Valid worldwide with no expiry Stacks with other offers and promo discounts Cons: Only available through select partners (like us) May not work on some heavily discounted items Terms And Conditions Of Using The Temu Coupon $100 Off In 2025 Before you shop, be sure to check these terms for the Temu coupon code $100 off free shipping and the latest Temu coupon code $100 off: No expiration date; the code acw696499 can be used anytime Valid in over 68 countries for both new and existing users No minimum purchase requirement to use the coupon Works exclusively on the Temu app and official website One user can use multiple coupon packs from the bundle Final Note: Use The Latest Temu Coupon Code $100 Off If you’re serious about saving, now is the time to redeem the Temu coupon code $100 off on your first or next purchase. You’ll love the deals, the convenience, and the excitement of shopping with major discounts. Don’t let the opportunity pass to claim your Temu coupon $100 off before July ends. Go ahead, enter the code, and let the savings begin. FAQs Of Temu $100 Off Coupon What is the Temu $100 off coupon code for July 2025? The official coupon code is acw696499, and it gives you $100 off your purchase—valid for both new and existing users.  Can I use the Temu coupon $100 off more than once? Yes! The coupon comes with a bundle that lets you use parts of the discount over several purchases.  Is the Temu 100 off coupon legit and verified? Absolutely. The acw696499 code is 100% legit, tested, and works globally on the Temu app and site.  Do I need a minimum order amount to use the $100 off Temu coupon? No minimum purchase is required. The discount applies immediately once you use the code.  Can I stack the Temu coupon code with other offers? Yes! You can stack acw696499 with other discounts, sales, and seasonal promos for maximum savings.
  • Topics

×
×
  • Create New...

Important Information

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