Jump to content

Blooo Item


Hydromancerx

Recommended Posts

 

Remove the "Item_" in the scripts and the ".png" they are not needed. if you make it just icon = Woodblock it should work

 

 

 

 

That did not seem to do anything either. :(

 

So I tried removing ...

        CanBarricade    =    false,        UseWhileEquipped    =    false,

From my code. So now its ...

module Hydrocraft{    imports    {        Base    } item WoodBlock    {        Weight    = 1.0,        Type    = Normal,        DisplayName         = Wood Block,        Icon = Woodblock,    } recipe Make Wood Block    {    Log,    keep Axe,    Result:WoodBlock=9,    Time:15,    } }
Link to comment
Share on other sites

 

 

Remove the "Item_" in the scripts and the ".png" they are not needed. if you make it just icon = Woodblock it should work

 

 

That did not seem to do anything either. :(

 

So I tried removing ...

        CanBarricade    =    false,        UseWhileEquipped    =    false,

 From my code. So now its ...

module Hydrocraft{    imports    {        Base    } item WoodBlock    {        Weight    = 1.0,        Type    = Normal,        DisplayName         = Wood Block,    } recipe Make Wood Block    {    Log,    keep Axe,    Result:WoodBlock=9,    Time:15,    } }

 

ack! no don't remove the entire icon line.

 

put this line in the item

Icon = Woodblock

 

EDIT:

Also, you don't have anything in your LUAs, you need to at a bare minimum declare your mod in an LUA for it to function right

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
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...