Jump to content

Question about make a bow mod


PROMember5

Recommended Posts

Hello

I need help about making a bow mod for minecraft 1.14.4 forge

I make the bows with MCreator , then I edit those codes in MCreator's IDE

but I have three big problem

1-I want to my bow has a animation like minecraft default bow.

if you look in minecraft, the bows has a 4 step animation : bow   ,    bow_pulling_0    ,    bow_pulling_1         and    bow_pulling_2

but I don't know how can I make animation in MCreator gui or ide and with codes

 

2-my bow get a very bad texture --> 2020_05_27_20_29_46.png

It took a stripes texture on its sides

Why????

How can I fix it?

 

 

3-My bow fires arrow icon ! no arrow entity !

It should to fire arrow entity

How can I fix it?

 

PLEASE HELP ME

 

Thanks

Link to comment
Share on other sites

Unfortunately, I do not believe MCreator is supported here. Most of the folks here use straight up Java for making mods. You would probably have better luck asking on an MCreator forum (not sure if they have one, but they should!)

 

It would take time, but my suggestion would be to learn Java (google "learn java" or "beginning java tutorials"), which will allow you to get the most out of forge modding.

Link to comment
Share on other sites

1. Use item property overrides in your model.

2. Your texture has a very high resolution. This is not going to work well in many places of Minecraft.

3. MCreator probably screwed up the rendering.

 

To fix your problems, you need to stop using MCreator and learn modding properly (via Java).

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

On 5/28/2020 at 3:50 PM, DavidM said:

1. Use item property overrides in your model.

2. Your texture has a very high resolution. This is not going to work well in many places of Minecraft.

3. MCreator probably screwed up the rendering.

 

To fix your problems, you need to stop using MCreator and learn modding properly (via Java).

OK man I want to learn mod making with java but I don't know where to start it?

And I can't find a good source for learning

Link to comment
Share on other sites

14 minutes ago, PROMember5 said:

OK man I want to learn mod making with java but I don't know where to start it?

And I can't find a good source for learning

You would need to learn Java before making a mod.

Fortunately Java is a pretty easy language, and an example of a Java tutorial is: https://www.tutorialspoint.com/java/index.htm.

You might want to Google around for a more suitable tutorial if you don't find that specific tutorial helpful.

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

1 minute ago, PROMember5 said:

OK man I want to learn mod making with java but I don't know where to start it?

And I can't find a good source for learning

Almost any beginning java tutorial will help. Google "beginning java tutorial", and pick any of the first ones that pop up that are not advertisements, and they will likely help.

You will also need an IDE, the 2 most popular are intellij IDEA and Eclipse.

 

It will not be easy, you will not begin right away with making mods or cool flashy java programs. You will be making a lot of lame calculators and name lookup things and console based stuff in order to learn things like syntax, keywords, classes/objects/OOP, scope, the list is too exhausting to cover here. I can promise almost every programmer here has made a bunch of a throwaway programs/code snippets, never to be used or thought of again, between when they began programming and now. It's part of the learning process!

 

I would study and practice basic Java for at least a week. Then, look for a forge tutorial, McJty has good ones https://wiki.mcjty.eu/modding/index.php?title=YouTube-1.14. See if you understand the Java concepts being described, if not, make notes of what you don't understand, and dive back into Java tutorials.

 

Also once you understand basic/intermediate Java, you can look at the vanilla source code, and see how they do things, for examples for your own projects. And if you have questions about forge (not basic Java), you can find answers here, you just need to post your code (get a github account if you don't have one, and learn how to use it), logs (debug.log is always a must for anything that runs but crashes/doesn't work), and a good explanation of what you are trying to do (from the end user/player perspective).

Link to comment
Share on other sites

2 minutes ago, DavidM said:

You would need to learn Java before making a mod.

Fortunately Java is a pretty easy language, and an example of a Java tutorial is: https://www.tutorialspoint.com/java/index.htm.

You might want to Google around for a more suitable tutorial if you don't find that specific tutorial helpful.

I know java.I saw a series of java learning videos

But i don't know how to start modding in minecraft

Link to comment
Share on other sites

3 minutes ago, Ugdhar said:

Almost any beginning java tutorial will help. Google "beginning java tutorial", and pick any of the first ones that pop up that are not advertisements, and they will likely help.

You will also need an IDE, the 2 most popular are intellij IDEA and Eclipse.

 

It will not be easy, you will not begin right away with making mods or cool flashy java programs. You will be making a lot of lame calculators and name lookup things and console based stuff in order to learn things like syntax, keywords, classes/objects/OOP, scope, the list is too exhausting to cover here. I can promise almost every programmer here has made a bunch of a throwaway programs/code snippets, never to be used or thought of again, between when they began programming and now. It's part of the learning process!

 

I would study and practice basic Java for at least a week. Then, look for a forge tutorial, McJty has good ones https://wiki.mcjty.eu/modding/index.php?title=YouTube-1.14. See if you understand the Java concepts being described, if not, make notes of what you don't understand, and dive back into Java tutorials.

 

Also once you understand basic/intermediate Java, you can look at the vanilla source code, and see how they do things, for examples for your own projects. And if you have questions about forge (not basic Java), you can find answers here, you just need to post your code (get a github account if you don't have one, and learn how to use it), logs (debug.log is always a must for anything that runs but crashes/doesn't work), and a good explanation of what you are trying to do (from the end user/player perspective).

Which is better?

intellij or Eclipse?

Link to comment
Share on other sites

11 minutes ago, Ugdhar said:

Almost any beginning java tutorial will help. Google "beginning java tutorial", and pick any of the first ones that pop up that are not advertisements, and they will likely help.

You will also need an IDE, the 2 most popular are intellij IDEA and Eclipse.

 

It will not be easy, you will not begin right away with making mods or cool flashy java programs. You will be making a lot of lame calculators and name lookup things and console based stuff in order to learn things like syntax, keywords, classes/objects/OOP, scope, the list is too exhausting to cover here. I can promise almost every programmer here has made a bunch of a throwaway programs/code snippets, never to be used or thought of again, between when they began programming and now. It's part of the learning process!

 

I would study and practice basic Java for at least a week. Then, look for a forge tutorial, McJty has good ones https://wiki.mcjty.eu/modding/index.php?title=YouTube-1.14. See if you understand the Java concepts being described, if not, make notes of what you don't understand, and dive back into Java tutorials.

 

Also once you understand basic/intermediate Java, you can look at the vanilla source code, and see how they do things, for examples for your own projects. And if you have questions about forge (not basic Java), you can find answers here, you just need to post your code (get a github account if you don't have one, and learn how to use it), logs (debug.log is always a must for anything that runs but crashes/doesn't work), and a good explanation of what you are trying to do (from the end user/player perspective).

Oh thanks?

Sounds great?

but a problem:

It doesn't open?

Edited by PROMember5
Link to comment
Share on other sites

4 minutes ago, PROMember5 said:

Which is better?

intellij or Eclipse?

It's a matter of preference, really. There are arguments for both sides which is better. I would pick one and try it, see how you like it, and you can always try the other if you want, heck you could even use both if you really wanted to I suppose lol.

 

The important part is to use one, because between code completion, being able to look up class/method/field declarations with a hotkey or click, being able to get a list of all the places a method or field is called within the project, and last but definitely not least, being able to view the vanilla MC and forge sources, I can't imagine how anyone would or could mod without one!

Link to comment
Share on other sites

On 5/28/2020 at 3:50 PM, DavidM said:

1. Use item property overrides in your model.

2. Your texture has a very high resolution. This is not going to work well in many places of Minecraft.

3. MCreator probably screwed up the rendering.

 

To fix your problems, you need to stop using MCreator and learn modding properly (via Java).

2-

why?

I want to use high resolution texture.How can I fix it?

Link to comment
Share on other sites

8 hours ago, PROMember5 said:

2-

why?

I want to use high resolution texture.How can I fix it?

You can't.

The way models are rendered in Minecraft does not work well with quads that have tiny length on one dimension.

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

7 hours ago, PROMember5 said:

What is the highest resolution I can use without this problem?

This depends on graphics settings as well as device. I wouldn't suggest anything larger than 64*64 pixels.

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

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

    • This is a MacOs related issue: https://bugs.mojang.com/browse/MC-118506     Download this lib: https://libraries.minecraft.net/ca/weblite/java-objc-bridge/1.0.0/java-objc-bridge-1.0.0.jar and put it into ~/Library/Application Support/minecraft/libraries/ca/weblite/java-objc-bridge/1.0.0  
    • I use Bisect-Hosting, and I host a relatively modded server.  There is a mod I desperately want to have in a server. https://www.curseforge.com/minecraft/mc-mods/minehoplite This is MineHop. It's a mod that replicates the movement capabilities seen in Source Engine games, such as Half-Life, and such.  https://youtu.be/SbtLo7VbOvk - A video explaining the mod, if anyone is interested.  It is a clientside mod, meaning whoever is using it can change anything about the mod that they want, with no restrictions, even when they join a server with the same mod. They can change it to where they can go infinitely fast, or do some other overpowered thing. I don't want that to happen. So I just want to know if there is some way to force the SERVER'S configuration file, onto whoever is joining.  I'm not very savvy with all this modding stuff. There are two config files: minehop-common.txt, and minehop.txt I don't really know much about how each are different. I just know what the commands relating to acceleration and stuff mean.    
    • My journey into crypto trading began tentatively, with me dipping my toes into the waters by purchasing my first Bitcoin through a seasoned trader. With an initial investment of $5,000, I watched as my investment grew, proving to be both fruitful and lucrative. Encouraged by this success, I decided to increase my investment to $150,000, eager to capitalize on the growing popularity of cryptocurrency, However, as cryptocurrency gained mainstream attention, so too did the number of self-proclaimed "experts" in the field. Suddenly, everyone seemed to be a crypto guru, and more and more people were eager to jump on the bandwagon without fully understanding the intricacies of this complex world. With promises of quick and easy profits, these con artists preyed on the uninformed, luring them into schemes that often ended in disappointment and financial loss. Unfortunately, I fell victim to one such scheme. Seduced by the allure of easy money, I entrusted my hard-earned funds to a dubious trading platform, granting them access to my accounts in the hopes of seeing my investment grow. For a brief period, everything seemed to be going according to plan, with regular withdrawals and promising returns on my investment. However, my hopes were soon dashed when, without warning, communication from the platform ceased, and my Bitcoin holdings vanished into thin air. Feeling helpless and betrayed, I confided in a family member about my predicament. They listened sympathetically and offered a glimmer of hope in the form of a recommendation for Wizard Web Recovery. Intrigued by the possibility of reclaiming what I had lost, I decided to explore this option further. From the moment I reached out to Wizard Web Recovery, I was met with professionalism and empathy. They took the time to understand my situation and reassured me that I was not alone in my plight. With their guidance, I embarked on a journey to reclaim what was rightfully mine. Wizard Web Recovery's expertise and dedication were evident from the start. They meticulously analyzed the details of my case, uncovering crucial evidence that would prove invaluable in our quest for justice. With each step forward, they kept me informed and empowered, instilling in me a newfound sense of hope and determination. Through their tireless efforts and unwavering support, Wizard Web Recovery succeeded in recovering my lost Bitcoin holdings. It was a moment of triumph and relief, knowing that justice had been served and that I could finally put this chapter behind me. In conclusion, My experience with Wizard Web Recovery  was nothing short of transformative. Their professionalism, expertise, and unwavering commitment to their clients set them apart as true leaders in the field of cryptocurrency recovery. I am forever grateful for their assistance and would highly recommend their services to anyone in need of help navigating the treacherous waters of cryptocurrency scams. 
    • Ok so: Two things to note: It got stuck due to my dimension type. It was previously the same as the overworld dimension tpye but after changing it , it didn't freeze during spawn generation. ALSO, APPARENTLY, the way I'm doing things, the game can't have two extremely-rich dimensions or it will make the new chunk generation be veeery VEEERY slow. I'm doing the dimension file genreation all in the data generation step now, so it's all good. Mostly. If anybody has any tips regarding how can i more efficently generate a biome-rich dimension, im all ears.
    • https://mclo.gs/qTo3bUE  
  • Topics

×
×
  • Create New...

Important Information

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