Coding Help can't get object to hang on wall

goron

Greenhorn
hello all! I really hope someone can help me with this because I am well and truly stumped here (I'm also a very inexperienced modder, so there's that lol)

Testiana3_4-15-2024_80534172.png


I'm trying to make a mod that adds a ladder to the cellar that will warp the player to the farm. The mod also has a "hatch" object that warps the player from the farm to the cellar as well, but that's working fine. The warp function for the ladder is also working fine, however I can't figure out how to get it to hang on the wall like a painting or window instead of taking up a floor tile. Here are what I think are the relevant bits of code.

{
"Action": "EditData",
"Target": "Data/Furniture",
"Entries": {
"{{ModId}}_CellarLadder": "{{ModId}}_CellarLadder/decor/1 3/1 1/1/100/-1/[LocalizedText Strings\\Furniture:{{ModId}}_CellarLadder.Name]/0/Mods\\{{ModId}}\\ladder"
}
},
{
"Action": "EditData",
"Target": "spacechase0.SpaceCore/FurnitureExtensionData",
"Entries": {
"{{ModId}}_CellarLadder": {
"TileProperties": {
"0, 0": {
"Buildings": {
"Action": "Warp 58 13 Farm"
}
}
},
"DescriptionOverride": "[LocalizedText Strings\\Furniture:{{ModId}}_CellarLadder.Description]"
}
}
},
 
Top