Jump to content

I really need help with textures.


ThyHolyNoodle

Recommended Posts

I need help with textures. The following picture shows the icons I made and where I stored them.

 

296063662_2019-07-07(5).png.307942c669916262ce61534ec960ea38.png

 

All seemed to be going well until I added "Item_SPStuffing". And what I think is weird is that I made the icons from in-game icons. Spiffo's stuffing which is an icon I made from the one for plantain poultice.

 

1582352856_20190707100129_1(2)_LI.jpg.2636eabd63299c1fbf305f1ee93f549d.jpg

 

The following is a script I made to implement the items. I checked a billion times for typos, but sometimes the creator misses something an outsider can see easily. So I would really appreciate any help I can get. Message me if you need more info.

 

//***************************************************************************************************************************************************************************************************************************************************//

module MC
{

    imports
    {

        Base
    }


    item myfoods1
    {
        Weight    =    0.03,
        Type    =    Food,
        DisplayName    =    Strange Concoction1,
        Icon    =    SCoco1,
        HungerChange    =    5,
        UseWhileEquipped    =    FALSE,
        CantBeFrozen    =    TRUE,
        ReplaceOnUse    =    MortarPestle,
        CustomContextMenu =    Take,        
    }

    item myfoods2
    {
        Weight    =    0.03,
        Type    =    Food,
        DisplayName    =    Strange Concoction2,
        Icon    =    SCoco2,
        HungerChange    =    5,
        UseWhileEquipped    =    FALSE,
        CantBeFrozen    =    TRUE,
        ReplaceOnUse    =    MortarPestle,
        CustomContextMenu    =    Take,        
    }

    item myfoods3
    {
        Weight    =    0.03,
        Type    =    Food,
        DisplayName    =    Strange Concoction3,
        Icon    =    SCoco3,
        HungerChange    =    5,
        UseWhileEquipped    =    FALSE,
        CantBeFrozen    =    TRUE,
        ReplaceOnUse    =    MortarPestle,
        CustomContextMenu =    Take,
    }


    Item SpiffStuff
    {
        Weight    =    0.1,
        Type    =    Normal,
        DisplayName    =    Stuffing,
        Icon    =    SPStuffing,
        Tooltip = Tooltip_Comfrey,
    }
}

}

//***************************************************************************************************************************************************************************************************************************************************//

 

 

 

 

Edited by ThyHolyNoodle
Clarifying
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...