Content: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Background: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Pattern: Blank Waves Notes Sharp Wood Rockface Leather Honey Vertical Triangles
Welcome to TerraFirmaCraft Forums

Register now to gain access to all of our features. Once registered and logged in, you will be able to contribute to this site by submitting your own content or replying to existing content. You'll be able to customize your profile, receive reputation points as a reward for submitting content, while also communicating with other members via your own private inbox, plus much more! This message will be removed once you have signed in.

  • Announcements

    • Dries007

      ATTENTION Forum Database Breach   03/04/2019

      There has been a breach of our database. Please make sure you change your password (use a password manager, like Lastpass).
      If you used this password anywhere else, change that too! The passwords themselves are stored hashed, but may old accounts still had old, insecure (by today's standards) hashes from back when they where created. This means they can be "cracked" more easily. Other leaked information includes: email, IP, account name.
      I'm trying my best to find out more and keep everyone up to date. Discord (http://invite.gg/TerraFirmaCraft) is the best option for up to date news and questions. I'm sorry for this, but the damage has been done. All I can do is try to make sure it doesn't happen again.
    • Claycorp

      This forum is now READ ONLY!   01/20/2020

      As of this post and forever into the future this forum has been put into READ ONLY MODE. There will be no new posts! A replacement is coming SoonTM . If you wish to stay up-to-date on whats going on or post your content. Please use the Discord or Sub-Reddit until the new forums are running.

      Any questions or comments can be directed to Claycorp on either platform.
Sign in to follow this  
Followers 0
Sahji

Smart Moving Ceiling Climb TFC Expanded

1 post in this topic

INTRODUCTION

Smart Moving and TFC are pretty compatible already, but one thing that bugged me was the lack of ceiling climb variability. Default Smart Moving ceiling climb is relegated to iron bars and trapdoors. I wanted to extend this function to fences. The following involves efforts to extend the ceiling function to TFC Blocks. For this little experiment I've been using TFC 0.79.15.

 

I. smart_moving_options.txt

Within the smart moving options config file (located in your .minecraft folder once you've installed and ran the mod) is the following configuration:

# To define which blocks are ceiling climbable (syntax: '<blockId/blockName>(/<metadata>)*' seperator: ',')
move.climb.ceiling.configuration:tile.fenceIron,tile.trapdoor/0/1/2/3,tile.trapdoor_iron/0/1/2/3

 

All of the words starting with .tile are an individual block name. So, to extend this functionality to lumber, add ,tile.WoodConstruct to the already existing list.

move.climb.ceiling.configuration:tile.fenceIron,tile.trapdoor/0/1/2/3,tile.trapdoor_iron/0/1/2/3,tile.WoodConstruct

And voila, lumber is now climbable.

 

Posted Image

 

 

BUT WAIT SAHJI, YOU SAID FENCES, NOT LUMBER.

BUT WAIT SAHJI, YOU SAID FENCES, NOT LUMBER.

You are correct sir/madam/personofnogender. I wasn't able to get TFC Fences cooperating, and that's what this nifty little discussion is aimed toward. HELP ME HELP YOU.

 

Here's what I've learned so far...

 

II. BLOCK IDs/Names

 

Even though the Smart Moving configuration mentions Block IDs, block IDs alone don't work. Maybe I did something wrong. I bet I did something wrong, but here's what I ended up doing:

 

- Removed "tile.fenceIron", replaced it with "101" -- No success.

- Removed "101", replaced it with "tile.101" -- No success

- Removed "tile.101", Flipped the table (╯°□°)╯︵ ┻━┻

 

So I figured it had to be the text version of the block. For iron bars, that's iron_bars.

 

BUT WAIT SAHJI, IRON BARS ARE CALLED "IRONFENCE" IN THE SMART MOVING CONFIG!
BUT WAIT SAHJI, IRON BARS ARE CALLED "IRONFENCE" IN THE SMART MOVING CONFIG!
How hypothetically observant of you Sir/Madam/WhatHaveYou. That's because Iron_bars are called IronFence in the script. I'm not even joking.

 

SO WAIT, WHAT DOES THAT MEAN

I guess it means that smart moving relies on what the block name is in the script?¿?¿?¿?

I really have no idea. I'm stabbing things in the dark. You should never stab things in the dark.

But anyways!!!¡¡¡

 

 

I had my block ID's dumped in a pretty little chart thanks to NEI. Here's what we're looking at in terms of MY Block IDs:

 

NAME ID                           CLASS     SMART MOVING CONFIG NAME

minecraft:trapdoor               96   net.minecraft.block.BlockTrapDoor tile.trapdoor

minecraft:iron_bars             101   net.minecraft.block.BlockPane   tile.fenceIron

terrafirmacraft:WoodConstruct    240         com.bioxx.tfc.Blocks.BlockWoodConstruct tile.WoodConstruct

terrafirmacraft:Fence                  464         com.bioxx.tfc.Blocks.Vanilla.BlockTFCFence         ????? (It isn't tile.Fence, tile.464, or tile.TFCFence!)
terrafirmacraft:Fence2             465 com.bioxx.tfc.Blocks.Vanilla.BlockTFCFence2       ?????

 

And here's a clue: don't add "terrafirmacraft.fence" to the smart moving ceiling config list. You will crash the moment you try to climb. JUST SO YOU KNOW.

 

Do you have a working smart moving config file for TFC blocks? Have any idea what the TFC fences are called in the config? Know more than me and wish to DISPLAY it? Have a request for a specific TFC block to be made ceiling-climbable? Please post away!

Edited by Bunsan
Comic San is painful in many browsers and illegible on mobile.
0

Share this post


Link to post
Share on other sites
Sign in to follow this  
Followers 0