Jump to content

Crafting Furniture?


Hydromancerx

Recommended Posts

How do you craft Furniture, windows, etc? The only code I see is this ...

    item Moveable    {        Type            = Moveable,        Icon            = default,        Weight              = 0.5,        DisplayName        = Moveable,     }

How do I make a recipe to call a specific Furniture when it is picked up? Such as crafting windows with glass and wood.

Link to comment
Share on other sites

How do you craft Furniture, windows, etc? The only code I see is this ...

    item Moveable    {        Type            = Moveable,        Icon            = default,        Weight              = 0.5,        DisplayName        = Moveable,     }

How do I make a recipe to call a specific Furniture when it is picked up? Such as crafting windows with glass and wood.

I have no idea but I like where this is going. 

Link to comment
Share on other sites

You can do that

module Morebuild //Can customize{    imports    {    Base    }item WoodenWindows //Can customize	{	Type = Moveable, //Do not modify	Weight = 0.5, //Cannot modify	WorldObjectSprite = fixtures_windows_01_1, //sprite Name (sprite must have IsMoveAble attribute)	DisplayName		= Wooden Windows, //Cannot modify	Icon			= default, //Can customize	}recipe Wooden Windows   {      SkillRequired:Woodwork=4,    Plank=4,    Nails=4,    keep Saw/Hammer,    Sound:PZ_Hammer,    Result:WoodenWindows,    Time:500,    Category:Carpentry,    }}
Link to comment
Share on other sites

  • 3 months later...

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...