Has anyone had success?

Started by KreatorB on

Topic category: Troubleshooting, bugs, and solutions

Active 2 years ago
Joined May 2016
Points:
929

User statistics:

  • Modifications: 2
  • Forum topics: 27
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 138
Has anyone had success?

Has anyone created a working set of stairs in the latest version of MCreator?

I know I have not and even when I get stairs to work they always face one direction.

Help would be nice!

 

I have the same issue with the Slabs, I can create them but they only work on an up or lower level using a json file.

If I do it in MCreator they show as full blocks only but act like a lower half slab only!

Active 4 years ago
Joined Mar 2015
Points:
885

User statistics:

  • Modifications: 6
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 191
all in good time, you will
Tue, 05/24/2016 - 19:18

all in good time, you will have your precious slabs :)

Active 1 year ago
Joined Aug 2013
Points:
1162

User statistics:

  • Modifications: 4
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 737
Fully working slabs I already
Tue, 05/24/2016 - 19:26

Fully working slabs I already done and stairs should be much easier.

Active 1 month ago
Joined Dec 2015
Points:
872

User statistics:

  • Modifications: 4
  • Forum topics: 0
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 249
really i have always found
Tue, 05/24/2016 - 20:28

really i have always found slabs to be easier. the only hard part is getting then to connect.

Active 1 year ago
Joined Aug 2013
Points:
1162

User statistics:

  • Modifications: 4
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 737
For slabs you need 4 classes
Tue, 05/24/2016 - 21:18

For slabs you need 4 classes - Basic Slab class that extends BlockSlab , classes for slab and double slab that extends the previous class and class for item. 
Stairs are just new instance of BlockStairs or if you want edit it - class that extends BlockStairs.

Active 2 years ago
Joined May 2016
Points:
929

User statistics:

  • Modifications: 2
  • Forum topics: 27
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 138
Okay so I need to make my
Tue, 05/24/2016 - 21:32

Okay so I need to make my basic class of slab (example: SlabLower)

Then I need to create an extended slab (example: SlabUpper)

Now what do I do to have them connect?

Are these class avaiible in the MCreator?

If so direct me as I see not where they would be!

Active 1 month ago
Joined Dec 2015
Points:
872

User statistics:

  • Modifications: 4
  • Forum topics: 0
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 249
 well i guess i just find
Tue, 05/24/2016 - 21:33

 well i guess i just find stairs hard becuase i am not very good at durection properties.

Active 2 years ago
Joined May 2016
Points:
929

User statistics:

  • Modifications: 2
  • Forum topics: 27
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 138
RE: well i guess i just find
Tue, 05/24/2016 - 21:37

@#6 are you manually coding the stairs directions?

 

Active 1 year ago
Joined Aug 2013
Points:
1162

User statistics:

  • Modifications: 4
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 737
@KreatorBAnd to the slab:
Tue, 05/24/2016 - 21:59

@KreatorB
And to the slab: first is abstract class. For example : public static abstract class BlockConcreteSlab extends BlockSlab{....}

Next is: public static BlockHalfConcreteSlab extends BlockConcreteSlab

Next: public static BlockDoubleConcreteSlab extends BlockConcreteSlab

Next public static class ItemBlockConcreteSlab extends ItemSlab {

And then just register it to GameRegistry and make 2 blockstates .json files and 3 or 4 block model files + 2 item model files.

@ahig PropertyDirection is not hard.Harder is getting the right shape - that's why I recommend you just making instance of BlockStairs

Active 2 years ago
Joined May 2016
Points:
929

User statistics:

  • Modifications: 2
  • Forum topics: 27
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 138
RE:@KreatorBAnd to the slab:
Tue, 05/24/2016 - 22:11

@#7 see this is why I am lost I am not oding any of this I was using the Mcreator Program and trying to learn a bit. I have a bi of a understanding what you mean but nio clue where to start! Thanks