So, I jumped into this program blind...

Started by LadyMoo on

Topic category: General discussion

Last seen on 03:26, 18. Sep 2024
Joined Sep 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
So, I jumped into this program blind...

Hi all, new user here. 

A few days ago I jumped into this program blind and with gusto-- Oof... I know, but I do like the adventure of good rabbit hole! Armed with years of button mashing and Photoshop skills, I managed to make some simple things without instructions, an entire armor and tool tier, a few QOL recipes, a growing plant that drops fruit, some food and a leaky copper bucket! Yes, leaky copper bucket! It mostly works, so I'm satisfied. But now I've hit a wall, and I aint giving up without a proper fight! 

I cannot find current procedures stacks for update ticks for Crops! I downloaded all 7 versions from Northwest and watched about 80 minuets of tutorials, and all of them either don't import correctly or flat aren't right for Forge or don't work with 2024.2. So that's fairly frustrating out of the gate... also cant find even just a picture of what a working tick procedure looks like to rebuild the darn thing by hand! 

The other thing I'm trying to make is something like a furnace, only it doesn't use fuel, but rather consumes the item you put in and outputs another item. Having it do it automatically would be cool, but I'm just as fine with a click to craft thing (a button? a pedal?)-- mind you I know I can do this with a recipe, and I did that first. But that breaks the workshop-crafting immersion so I'd like to make a special crafting bench or some kind of crafting apparatus. I actually already have the block, gui and input/output items that are working, but the bench/furnace procedures that make it do the thing are lost to me. My brain thinks it should be simple, put thing in, press button, new thing crafts, profit! Only the if/do language gets a bit confusing. I think once I understand the language for getting the mod to see/check and do a thing when I click I should be golden.

And for one more brick on the wall that is going to make this fun like dental surgery to learn... I am High Functioning Autistic! Finding this program threw open a door for me that genetics slammed shut on me, I've wanted to make my own mods since open beta, only java script doesn't exactly pair well with comorbid disorders like Dyslexia, Adhd; or as I like to think of it, naturally occurring compilation errors! ::giggle snort:: I wish mcreator had built in procedures for crops, buckets, and crafting benches, and maybe it will one day, but that day is not today. Eventually, I want to be able to encourage others who struggle with various impairments and invisible illnesses to challenge themselves to create in the face of adversity! Where there is a will, there is a way-- or in this case a procedure stack!! 

On my bucket list of mods to make are; A tent that can be picked up. A sleeping bag, and a horse drawn wagon! I want to make stuff for the nomadic roamers, those who don't settle down, but are on endless journey of finding awesome places on their maps! Links or resources that aid in this would be greatly appreciated!!

 

I cannot find current…
Sun, 09/08/2024 - 14:16

I cannot find current procedures stacks for update ticks for Crops! I downloaded all 7 versions from Northwest

Certain workspaces with examples may be too old to still work in newer versions and will require adaptations

 

Last seen on 01:51, 19. Sep 2024
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Update ticks of crops,…
Wed, 09/18/2024 - 13:27

Update ticks of crops, depends on what you want it to do. Ill assume that you want it to grow on random tick update. Make the crop block and set block entity to true then set random tick to true. Next make a procedure for the on tick update trigger on the crop block. Next you want an if random integer between 1 and 10 = 4 (this would be a 10% chance, make it whatever you want depending on how fast you want it to grow.) then replace block at x y z with the next growth stage of the crop block. You would need to make a new block for each crop growth state, eg seeds, early, grown etc. Thats the basic growth cycle, you can also add into your if statement to check whether their is air above the crop for 5 blocks or so, to check whether it is above ground ish. You can also check the light level at x y z and see if it is suitable etc. You should also check for if the block at x y-1 z is a farmland block and whether it is saturated to be able to grow the crop or to even place the seeds.

Last seen on 01:51, 19. Sep 2024
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
For the furnace you would…
Wed, 09/18/2024 - 13:34

For the furnace you would need an input and output inventory slot. One would be slot 0 and the other slot 1, where slot 0 would be an input slot and slot 1 an output slot. Next you would need a procedure for all your recipes, for recipe check if item in slot 0 = (desired item) if true then set item in slot 0 to air and set item in slot 1 to the item that is being made. You could also make it so that only when the item has been taken from slot 1 does the item in slot 0 get removed by making a procedure on contents change trigger in the slot. Then you would repeat this procedure for all the recipes you want. For the fire animation like in a furnace you can make a gif animated texture that always runs in the gui? For more slots like a crafting table you just need to add more checks to your procedures, eg checking whether item at slot 2 = this item and slot 5 = that item, then when all is true add item to output slot, when output item removed, remove all items from other slots.