tterrag1098 / CustomThings

Adding basic custom items to minecraft via JSON files
Mozilla Public License 2.0
18 stars 8 forks source link

refference #35

Open EverNife opened 8 years ago

EverNife commented 8 years ago

I am new to this mod, and i want to create a few itens, but i can't find any good exemple of each thing.

For exemple, i want to create a block and there is no explanation for where to put it's texture (at least i didn't find it )

So please, can you give me a functional ZIP file with an exemple of each thing?

(sorry for bad english '-' )

tterrag1098 commented 8 years ago

Block icons go in /icons with everything else. I think the wiki is more than enough. If you find anything to be missing let me know.

EverNife commented 8 years ago

Ok, i will, Keep this open a bit more please.

To start, the Custom ITEM exemple is broken.

It is reporting this crash.

Can you give me a funcional one?

(Sorry again, i don't know json language )

tterrag1098 commented 8 years ago

Yes, it was incorrect. I have updated it now.

EverNife commented 8 years ago

Lang tutorial is wrong too, need the "tile." before the expression.

In the wiki is:

item.itemname.name=My Item

it should be:

tile.customthings.itemname.name=My Item

EverNife commented 8 years ago

Else

Getting this crash while trying to make an amor.

This is the customArmors.json

EverNife commented 8 years ago

Can you tell me what have i done wrong in the customarmors.json?

tterrag1098 commented 8 years ago

You have an extra comma on line 11

EverNife commented 8 years ago

'-' facepalm '-' My bad.

I took liberty to edit your wiki Custom Armor and put some examples. I will need to keep this open to take more of my doubts out.

EverNife commented 8 years ago

Custom Items exemple is not working :/

Getting this error: PasteBin

EverNife commented 8 years ago

Help please ^^

(sorry for being so boring)

xpto2011 commented 8 years ago

Also getting the same crash when trying to create the example item

EverNife commented 8 years ago

Life is hard with us all T.T

tterrag1098 commented 8 years ago

Could you be more specific? What crash? What (exactly) is your json?

EverNife commented 8 years ago

evernife commented on 8 Jul

Custom Item exemple is not working :/ Getting this error: PasteBin

xpto2011 commented 8 years ago

I get it working by only setting the name parameter.

The json I used before was exactly the one in the wiki and it crashed with this crashreport: http://pastebin.com/br0pkndL

EverNife commented 7 years ago

Texture for tools no working well (or it is?)

The wiki tell us to just put the _NameOfTheItem.png_ in the icon's folder.

But in the case of tools, you need to put the type of the tool too.

For exemple, creating a sword named spectrum i need to put the name of the icon as spectrumSword.png Same for pickaxe, one called dilmae_is_more need a png called dilmae_is_morePickaxe

And for the case of multiples types seems to take ther first one.

Is this intentional?

tterrag1098 commented 7 years ago

Yes that is the correct naming scheme for tools. I can add that to the wiki soon. What is the problem though?

EverNife commented 7 years ago

Relative to refference issue;

Cause its a bit strange, my items are now called, for exemple sword_spectrum => sword_spectrumSword.png

Not a poblem at all ^^

DarkBlade177 commented 7 years ago

@tterrag1098 how can i set up block textureMap ?

I tried

   "textureMap" : [
    {"derp1"},
    {"derp1"},
    {"derp2"},
    {"derp2"},
    {"derp2"},
    {"derp2"}
  ]

But did not work T.T

DarkBlade177 commented 7 years ago

This way worked for me, forget it:

    "textureMap": ["derp1","derp1","derp2","derp2","derp2","derp2"]