Jump to content

[1.10.2] Custom slabs not rendering


Erfurt

Recommended Posts

Hey guys,

I have a problem with my slabs not rendering, other than the rendering issue it seems like everything else is working. They seem to stack correctly, but it's a bit hard to tell as the half slab is rendering as a full block in the standard black and purple texture. Not sure if it's something in my classes, or if it's something in my .json naming(highly doubt this one) and I doubt that it's something in the .json files, as the are 'copied' from how the vanilla slabs .json files is. I have added most of my classes in the spoiler and the names of my .json files, maybe someone can see the error I have made. Cause I sure can't at the moment :P

 

 

 

public abstract class EadoreSlab extends BlockSlab
{
private static final PropertyBool VARIANT = PropertyBool.create("variant");

public EadoreSlab(Material mat, String name)
{
	super(mat);
	this.setUnlocalizedName(name);
	this.setRegistryName(name);
	this.useNeighborBrightness = !this.isDouble();

	if(mat == Material.WOOD)
	{
		Blocks.FIRE.setFireInfo(this, 5, 5);
	}

	if (!this.isDouble())
	{
            setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
        }

	IBlockState blockState = this.blockState.getBaseState();
        blockState = blockState.withProperty(VARIANT, false);
        if (!this.isDouble())
        {
            blockState.withProperty(HALF, EnumBlockHalf.BOTTOM);
        }
        
        setDefaultState(blockState);
}

@Override
public String getUnlocalizedName(int meta)
{
	return this.getUnlocalizedName();
}

@Override
public Comparable<?> getTypeForItem(ItemStack stack)
{
	return false;
}

@Override
public IProperty<?> getVariantProperty()
{
	return VARIANT;
}

@Override
public int damageDropped(IBlockState state)
{
	return 0;
}

@Override
public final IBlockState getStateFromMeta(final int meta) {
	IBlockState blockState = this.getDefaultState();
        blockState = blockState.withProperty(VARIANT, false);
        if (!this.isDouble()) {
            EnumBlockHalf value = EnumBlockHalf.BOTTOM;
            if ((meta &  != 0) {
                value = EnumBlockHalf.TOP;
            }

            blockState = blockState.withProperty(HALF, value);
        }

	return blockState;
}

@Override
public final int getMetaFromState(final IBlockState state) {
        if (this.isDouble()) {
           return 0;
        }

        if ((EnumBlockHalf) state.getValue(HALF) == EnumBlockHalf.TOP) {
            return 8;
        } else {
            return 0;
        }
}

@Override
protected final BlockStateContainer createBlockState() {
        if (this.isDouble()) {
            return new BlockStateContainer(this, new IProperty[] {VARIANT});
        } else {
            return new BlockStateContainer(
                this,
                new IProperty[] {VARIANT, HALF});
        }
}
}

 

Class for the double slab, half slab class the same, other than it return false in the isDouble boolean

public class EadoreDoubleSlab extends EadoreSlab
{

public EadoreDoubleSlab(Material mat, String name)
{
	super(mat, name);
}

@Override
public boolean isDouble() 
{
	return true;
}

}

 

Itemclass for my custom slabs

public class EadoreItemSlab extends ItemSlab
{

public EadoreItemSlab(Block block, EadoreHalfSlab singleSlab, EadoreDoubleSlab doubleSlab, Boolean stacked)
{
	super(block, singleSlab, doubleSlab);
}

}

 

This is how I register the slabs.

public class BlockRegistry
{
public static Block planks_maple;

public static Block slab_half_maple;
public static Block slab_double_maple;


public static void init()
{
	planks_maple = new EadorePlanks("planks_maple");

	slab_half_maple = new EadoreHalfSlab(Material.WOOD, "slab_half_maple");
	slab_double_maple = new EadoreDoubleSlab(Material.WOOD, "slab_double_maple");
}

public static void register()
{
	registerBlock(planks_maple);

	registerSlab(slab_half_maple, slab_half_maple, slab_double_maple, false);
	registerSlab(slab_double_maple, slab_half_maple, slab_double_maple, false);
}

public static void registerRenders()
{
	registerRender(planks_maple);

	registerRender(slab_half_maple);
	registerRender(slab_double_maple);
}

public static void registerBlock(Block block)
{
	GameRegistry.register(block);
	GameRegistry.register(new ItemBlock(block).setRegistryName(block.getRegistryName()));
}

public static void registerSlab(Block block, Block singleSlab, Block doubleSlab, Boolean stacked)
{
	GameRegistry.register(block);
	GameRegistry.register(new EadoreItemSlab(block, (EadoreHalfSlab)singleSlab, (EadoreDoubleSlab)doubleSlab, stacked).setRegistryName(block.getRegistryName()));
}

public static void registerRender(Block block)
{
	Item item = Item.getItemFromBlock(block);
	ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(block.getRegistryName(), "normal"));
}

Names of the .json files

 

 

blockstates

  • slab_double_maple
  • slab_half_maple

models/item

  • maple_slab

 

 

 

 

 

I should mention that I have many blocks in my mod that works, however I can't seem to get these slabs to work.

Link to comment
Share on other sites

Can you post the log where it tells you what the issue is?

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Can you post the log where it tells you what the issue is?

[16:53:21] [Client thread/ERROR] [FML]: Could not load vanilla model parent 'em:block/slab_half_maple' for 'net.minecraft.client.renderer.block.model.ModelBlock@6e767943

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model em:block/slab_half_maple with loader VanillaLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModelOrLogError(ModelLoaderRegistry.java:203) [ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.getTextures(ModelLoader.java:478) [ModelLoader$VanillaModelWrapper.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:163) [ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:317) [ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) [ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) [ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]

at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]

at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: java.io.FileNotFoundException: em:models/block/slab_half_maple.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:118) ~[ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:868) ~[ModelLoader$VanillaLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]

... 23 more

Link to comment
Share on other sites

[16:53:21] [Client thread/ERROR] [FML]: Could not load vanilla model parent 'em:block/slab_half_maple' for 'net.minecraft.client.renderer.block.model.ModelBlock@6e767943

There's an error in your JSON file, show it.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

[16:53:21] [Client thread/ERROR] [FML]: Could not load vanilla model parent 'em:block/slab_half_maple' for 'net.minecraft.client.renderer.block.model.ModelBlock@6e767943

There's an error in your JSON file, show it.

 

I don't understand how there can be an error in that, but I digress. Here's the file.

{
    "parent": "block/half_slab",
    "textures": {
        "bottom": "em:blocks/planks_maple",
        "top": "em:blocks/planks_maple",
        "side": "em:blocks/planks_maple"
    }
}

 

I should mention that em:blocks/planks_maple is the exact same I use for a block and it's texture works fine, just so we can rule that out :)

Link to comment
Share on other sites

Could still use a little help here :)

Is block/half_slab a block json?

 

Yes it is, the vanilla slabs use it as well

Is the json in modid:block/json

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Could still use a little help here :)

Is block/half_slab a block json?

 

Yes it is, the vanilla slabs use it as well

Is the json in modid:block/json

 

Should it have to be in my mods assets folder, if I reference it from it's vanilla location, because that makes no sense to me, as I have done this with other models that worked fine

Link to comment
Share on other sites

Could still use a little help here :)

Is block/half_slab a block json?

 

Yes it is, the vanilla slabs use it as well

Is the json in modid:block/json

 

Should it have to be in my mods assets folder, if I reference it from it's vanilla location, because that makes no sense to me, as I have done this with other models that worked fine

I meant yours not the vanilla i should have specified.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Could still use a little help here :)

Is block/half_slab a block json?

 

Yes it is, the vanilla slabs use it as well

Is the json in modid:block/json

 

Should it have to be in my mods assets folder, if I reference it from it's vanilla location, because that makes no sense to me, as I have done this with other models that worked fine

I meant yours not the vanilla i should have specified.

 

Well I haven't made a copy of it into my own folder, if that's what you mean. Should I try that?

Link to comment
Share on other sites

Your json not the parent. em:block/slab_half_maple.json

 

I just noticed some of the naming was a bit wrong, but after fixing that, the model still isn't rendering correctly. Still checking all of the naming right now. But I do believe I've gotten all of them

Link to comment
Share on other sites

Your json not the parent. em:block/slab_half_maple.json

Could it be the way I register the render that's the problem?

How do you register the renderer ModelLoader.serCustomModelResourceLocation(...) in preInit?

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Your json not the parent. em:block/slab_half_maple.json

Could it be the way I register the render that's the problem?

How do you register the renderer ModelLoader.serCustomModelResourceLocation(...) in preInit?

I use this method to register my renders and yes it's in preInit :)

public static void registerRender(Block block)
{
	Item item = Item.getItemFromBlock(block);
	ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(block.getRegistryName(), "normal"));
}

 

What I find somewhat wierd is that the item is rendering fine in hand, but not when I place it, so I would think that I'm doing something wrong, I just can't figure out what it is  :-\

Link to comment
Share on other sites

Sooo...question.

Why are you using Item.getItemFromBlock when you're the one who had to create the item in the first place?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Show us your blockstate file. You only provided a model file for your block.

 

If you use the non-forge json method you need:

-a blockstate .json file

-a block model .json file

-a item model .json file

 

If you use the forge version (wich i recommend) you only need the blockstate file and you do everything inside that.

 

But first show us your blockstate file

Link to comment
Share on other sites

Show us your blockstate file. You only provided a model file for your block.

 

If you use the non-forge json method you need:

-a blockstate .json file

-a block model .json file

-a item model .json file

 

If you use the forge version (wich i recommend) you only need the blockstate file and you do everything inside that.

 

But first show us your blockstate file

 

slab_half_maple.json

{
    "variants": {
        "half=bottom": { "model": "em:slab_half_maple" },
        "half=top": { "model": "em:slab_upper_maple" }
    }
}

slab_double_maple.json

{
    "variants": {
        "normal": { "model": "em:planks_maple" }
    }
}

 

I'm using the traditional way, mostly to test if everything works, and after that's all good, I mostly try and convert it over to the forge version. Before, in this case, making more slabs.

Link to comment
Share on other sites

i see you have this error:

 

Caused by: java.io.FileNotFoundException: em:models/block/slab_half_maple.json

 

This means you do not have that file or it isn't in the right place!

 

Yeah, at the time I had some files named wrong, however that is corrected. Yet it still doesn't work.

 

Here's the newest log.

 

 

[Client thread/ERROR] [FML]: Exception loading model for variant em:slab_half_maple#half=top,variant=false for blockstate "em:slab_half_maple[half=top,variant=false]"

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model em:slab_half_maple#half=top,variant=false with loader VariantLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:241) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:338) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]

at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]

at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException

at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?]

at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1183) ~[ModelLoader$VariantLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]

... 24 more

 

 

 

I hope this is alright. But here's a picture of the problem, in the picture is only a single slab placed. I can walk over it as a normal slab and everything seems to be fine, except the texture. This is just to illustrate my problem, if someone was a bit unaware :)

http://imgur.com/a/LISWv

Link to comment
Share on other sites

Your blockstate file is missing a variant, "half=top,variant=false"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • 아시아 사다리 방법♭BCGAME88·COM♥ 헤르체고비나 사다리 접속 아시아 상투메프린시페 사다리 추천 [본사문의 텔레 JBOX7]아시아 사다리 ㏇△ 쿠푼 타지키스탄 사다리 투어 아시아 중앙아프리카 아시아 사다리 리그 [총판문의 카톡 JBOX7]아시아 사다리 ☞◁ 홀덤바 스웨덴 사다리 검증 아시아 스페인 아시아 사다리 홀덤펍 [각종 오피 커뮤니티 제작]아시아 사다리 №♣ 바카라펍 사모아 사다리 사이트 아시아 카자흐스탄 아시아 사다리 싸이트 [마케팅문의]아시아 사다리 §● 검증 벨리즈 사다리 검증 아시아 서아시아 아시아 사다리 캐쉬게임 [카지노본사]아시아 사다리 ♨♪ 사이트 폴스뷰카지노 사다리 캐쉬게임 아시아 그랜드리스카지노 아시아 사다리 방송 [스포츠본사]아시아 사다리 @▧ 투어 파나마 사다리 업체 아시아 리오올스위트카지노 아시아 사다리 여행 [토토본사 문의]아시아 사다리 ■㉿ 여행 나미비아 사다리 바카라펍 아시아 헝가리 아시아 사다리 총판 [토토총판 구매]아시아 사다리 ♥§ 여행 노르웨이 사다리 검증 아시아 상투메프린시페 아시아 사다리 투어 [카지노총판]아시아 사다리 ☎♥ 추천 마다가스카르 사다리 리그 아시아 레바논 아시아 사다리 중계 [야마토본사]아시아 사다리 ▧♩ 바카라펍 바덴바덴 사다리 쿠푼 아시아 코스타리카 아시아 사다리 영상 [바카라총판]아시아 사다리 §□ 단톡방 동유럽 사다리 캐쉬게임 아시아 네비스 아시아 사다리 접속 [경마총판]브라질 사다리 도박장 이비자그란카지노 사다리 방송 [BCGAME 비씨게임 총판문의]알림 설정 추천 구독 좋아요
    • 현금 포커 업체@BCGAME88·COM♠ 북키프로스 포커 쿠푼 현금 남아메리카 포커 모집 [본사문의 텔레 JBOX7]현금 포커 ¶♧ 투어 몰도바 포커 검증 현금 세르비아 현금 포커 총판 [총판문의 카톡 JBOX7]현금 포커 ◀↖ 카지노펍 아틀란티스카지노 포커 본사 현금 MGM카지노 현금 포커 방송 [각종 오피 커뮤니티 제작]현금 포커 ◐↖ 방송 리오올스위트카지노 포커 주소 현금 소말릴란드 현금 포커 쿠푼 [마케팅문의]현금 포커 ◎☞ 게임 앙골라 포커 도박장 현금 산마리노 현금 포커 커뮤니티 [카지노본사]현금 포커 ↕ª 동영상 미국 포커 투어 현금 남아시아 현금 포커 단톡방 [스포츠본사]현금 포커 ▽@ 리그 세이셸 포커 접속 현금 중앙아프리카 현금 포커 총판 [토토본사 문의]현금 포커 ▣# 싸이트 탄자니아 포커 싸이트 현금 카자흐스탄 현금 포커 주소 [토토총판 구매]현금 포커 ▲■ 방법 볼리비아 포커 영상 현금 이집트 현금 포커 총판 [카지노총판]현금 포커 ㉿☎ 홀덤바 오스트리아 포커 모집 현금 레소토 현금 포커 포커대회 [야마토본사]현금 포커 ▥㏘ 방법 차드 포커 포커대회 현금 한국 현금 포커 게임장 [바카라총판]현금 포커 ■▽ 캐쉬게임 키리바시 포커 게임장 현금 온두라스 현금 포커 업체 [경마총판]이비자그란카지노 포커 방법 영국 포커 중계 [BCGAME 비씨게임 총판문의]알림 설정 추천 구독 좋아요
    • 아시아 식보 홀덤펍○BCGAME88·COM♩ 포르투갈 식보 모집 아시아 라트비아 식보 검증 [본사문의 텔레 JBOX7]아시아 식보 @♨ 홀덤펍 아프리카 식보 홀덤바 아시아 바덴바덴 아시아 식보 추천 [총판문의 카톡 JBOX7]아시아 식보 ↕♬ 싸이트 칠레 식보 커뮤니티 아시아 카보베르데 아시아 식보 업체 [각종 오피 커뮤니티 제작]아시아 식보 ㏇↔ 홀덤펍 콜롬비아 식보 총판 아시아 요르단 아시아 식보 사이트 [마케팅문의]아시아 식보 ▷㉿ 게임 산마리노 식보 포커대회 아시아 서유럽 아시아 식보 접속 [카지노본사]아시아 식보 ▤♥ 단톡방 나이지리아 식보 모집 아시아 MGM카지노 아시아 식보 캐쉬게임 [스포츠본사]아시아 식보 ◇← 홀덤바 니카라과 식보 검증 아시아 몬테네그로 아시아 식보 경기 [토토본사 문의]아시아 식보 ☏↓ 커뮤니티 중앙아프리카 식보 홀덤바 아시아 폴스뷰카지노 아시아 식보 업체 [토토총판 구매]아시아 식보 ◀▷ 토너먼트 세이셸 식보 총판 아시아 리투아니아 아시아 식보 단톡방 [카지노총판]아시아 식보 ♬♧ 주소 볼리비아 식보 캐쉬게임 아시아 소말리아 아시아 식보 여행 [야마토본사]아시아 식보 №▒ 접속 남아프리카 식보 쿠푼 아시아 싱가포르 아시아 식보 중계 [바카라총판]아시아 식보 ▤☜ 검증 중앙아프리카 식보 홀덤펍 아시아 피지 아시아 식보 전략 [경마총판]베트남 식보 게임 수단 식보 사이트 [BCGAME 비씨게임 총판문의]알림 설정 추천 구독 좋아요
    • 현금 바두기 유투브◐BCGAME88·COM▷ 바하마 바두기 방법 현금 세인트빈센트 바두기 커뮤니티 [본사문의 텔레 JBOX7]현금 바두기 ♥◑ 커뮤니티 리조트월드카지노 바두기 캐쉬게임 현금 네덜란드 현금 바두기 게임장 [총판문의 카톡 JBOX7]현금 바두기 ♩◇ 방법 우즈베키스탄 바두기 카지노펍 현금 바티칸시국 현금 바두기 본사 [각종 오피 커뮤니티 제작]현금 바두기 ▧← 게임 멕시코 바두기 유투브 현금 아일랜드 현금 바두기 사이트 [마케팅문의]현금 바두기 ㈜¶ 영상 나우루 바두기 캐쉬게임 현금 에콰도르 현금 바두기 홀덤바 [카지노본사]현금 바두기 ▽◈ 본사 콜롬비아 바두기 경기 현금 베냉 현금 바두기 검증 [스포츠본사]현금 바두기 ª□ 토너먼트 아프리카 바두기 여행 현금 사모아 현금 바두기 방법 [토토본사 문의]현금 바두기 ♧★ 싸이트 키리바시 바두기 리그 현금 스웨덴 현금 바두기 홀덤펍 [토토총판 구매]현금 바두기 †※ 홀덤펍 시저스팰리스카지노 바두기 총판 현금 우크라이나 현금 바두기 홀덤펍 [카지노총판]현금 바두기 ←▶ 커뮤니티 케냐 바두기 동영상 현금 서아프리카 현금 바두기 사이트 [야마토본사]현금 바두기 ←▣ 접속 브루나이 바두기 추천 현금 케냐 현금 바두기 방법 [바카라총판]현금 바두기 ↖▷ 방송 나우루 바두기 커뮤니티 현금 몰도바 현금 바두기 모집 [경마총판]차드 바두기 투어 노르웨이 바두기 투어 [BCGAME 비씨게임 총판문의]알림 설정 추천 구독 좋아요
    • 평택만남 ☏BCGAME88·COM☎ 외발산만남 신수만남 세종만남 수하만남 jta52 가리봉만남 권농만남 압구정만남 당주만남 giv32 금산만남 입정만남 우이만남 오장만남 ncg56 계동만남 쌍문만남 사당만남 내곡만남 smp31 도곡만남 용인만남 진관만남 신수만남 frh69 삼청만남 구기만남 공평만남 공릉만남 fia48 산림만남 능동만남 용산만남 평택만남 qdy09 평동만남 합동만남 여주만남 삼성만남 pve89 군자만남 경운만남 내수만남 한남만남 ahu72 훈정만남 서빙고만남 포천만남 도원만남 gyq49 도곡만남 광주만남 서산만남 서빙고만남 syd04 이천만남 고창만남 구미만남 길음만남 alp80 천안만남 길동만남 충무만남 거창만남 twm94 대신만남 태평로만남 신계만남 남원만남 wpg87 고덕만남 화방만남 창녕만남 하왕십리만남 jgo16 경주만남 전주만남 천왕만남 천왕만남 hnl67 신천만남 배방만남 송정만남 체부만남 ehp69 여주만남 부암만남 삼전만남 구리만남 kkr04 광주만남 제천만남 명일만남 내발산만남 slt01 서귀포만남 대전만남 적선만남 김해만남 wep81 안국만남 동선만남 등촌만남 본동만남 idv38 정동만남 무학만남 세종로만남 사당만남 ixf90 삼척만남 광장만남 안암만남 오류만남 skw39
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.