Jump to content

Generated assets not loaded


Panzer8one

Recommended Posts

I recently started programming mods with automated data generation and i tried to create a custom stair and a custom slab block.

The generated json files(in src/generated/resources/assets) are correct, however when i start the client these files are not found:

o28puDg.pngmg5K0I4.png

If I place the generated json in the manually-generated folder(src/main/resources/assets) everything works, so I do not think that there are some errors in the json files. What strikes me is that other blocks, like example_block and example_block2, that are auto-generated and placed in src/generated/resources/assets work perfectly.

I need to do something special for blocks like stairs/slabs/fences to make their json files seen by minecraft? What am I doing wrong?

Link to comment
Share on other sites

Here it is:

buildscript {
    repositories {
        // These repositories are only for Gradle plugins, put any other repositories in the repository block further below
        maven { url = 'https://maven.minecraftforge.net' }
        maven { url = 'https://maven.parchmentmc.org' }
        mavenCentral()
    }
    dependencies {
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
        classpath 'org.parchmentmc:librarian:1.+'
    }
}
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
plugins {
    id 'eclipse'
    id 'maven-publish'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'

version = '1.0'
group = 'com.nicolalovo.coursemod' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'nicolalovo-coursemod'

// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17.
java.toolchain.languageVersion = JavaLanguageVersion.of(17)

println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
    // The mappings can be changed at any time and must be in the following format.
    // Channel:   Version:
    // official   MCVersion             Official field/method names from Mojang mapping files
    // parchment  YYYY.MM.DD-MCVersion  Open community-sourced parameter names and javadocs layered on top of official
    //
    // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings.
    // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md
    //
    // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge
    // Additional setup is needed to use their mappings: https://github.com/ParchmentMC/Parchment/wiki/Getting-Started
    //
    // Use non-default mappings at your own risk. They may not always work.
    // Simply re-run your setup task after changing the mappings to update your workspace.
    mappings channel: 'parchment', version: '1.18.1-2022.03.06-1.18.2'


    // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.

    // Default run configurations.
    // These can be tweaked, removed, or duplicated as needed.
    runs {
        client {
            workingDirectory project.file('run')

            // Recommended logging data for a userdev environment
            // The markers can be added/remove as needed separated by commas.
            // "SCAN": For mods scan.
            // "REGISTRIES": For firing of registry events.
            // "REGISTRYDUMP": For getting the contents of all registries.
            // property 'forge.logging.markers', 'REGISTRIES'

            // Recommended logging level for the console
            // You can set various levels here.
            // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
            // property 'forge.logging.console.level', 'debug'

            // Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
            property 'forge.enabledGameTestNamespaces', 'coursemod'

            mods {
                coursemod {
                    source sourceSets.main
                }
            }
        }

        server {
            workingDirectory project.file('run')

            // property 'forge.logging.markers', 'REGISTRIES'

            // property 'forge.logging.console.level', 'debug'

            // Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
            property 'forge.enabledGameTestNamespaces', 'coursemod'

            mods {
                coursemod {
                    source sourceSets.main
                }
            }
        }

        // This run config launches GameTestServer and runs all registered gametests, then exits.
        // By default, the server will crash when no gametests are provided.
        // The gametest system is also enabled by default for other run configs under the /test command.
        gameTestServer {
            workingDirectory project.file('run')

            // Recommended logging data for a userdev environment
            // The markers can be added/remove as needed separated by commas.
            // "SCAN": For mods scan.
            // "REGISTRIES": For firing of registry events.
            // "REGISTRYDUMP": For getting the contents of all registries.
            // property 'forge.logging.markers', 'REGISTRIES'

            // Recommended logging level for the console
            // You can set various levels here.
            // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
            // property 'forge.logging.console.level', 'debug'

            // Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
            property 'forge.enabledGameTestNamespaces', 'coursemod'

            mods {
                coursemod {
                    source sourceSets.main
                }
            }
        }

        data {
            workingDirectory project.file('run')

            // property 'forge.logging.markers', 'REGISTRIES'

            // property 'forge.logging.console.level', 'debug'

            // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
            args '--mod', archivesBaseName, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')

            mods {
                coursemod {
                    source sourceSets.main
                }
            }
        }
    }
}

// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }

repositories {
    // Put repositories for dependencies here
    // ForgeGradle automatically adds the Forge maven and Maven Central for you

    // If you have mod jar dependencies in ./libs, you can declare them as a repository like so:
    // flatDir {
    //     dir 'libs'
    // }
}

dependencies {
    // Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed
    // that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
    // The userdev artifact is a special name and will get all sorts of transformations applied to it.
    minecraft 'net.minecraftforge:forge:1.18.2-40.1.20'

    // Real mod deobf dependency examples - these get remapped to your current mappings
    // compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency
    // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency
    // implementation fg.deobf("com.tterrag.registrate:Registrate:MC${mc_version}-${registrate_version}") // Adds registrate as a dependency

    // Examples using mod jars from ./libs
    // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")

    // For more info...
    // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
    // http://www.gradle.org/docs/current/userguide/dependency_management.html
}

// Example for how to get properties into the manifest for reading at runtime.
jar {
    manifest {
        attributes([
                "Specification-Title"     : "coursemod",
                "Specification-Vendor"    : "NicolaLovo",
                "Specification-Version"   : "1", // We are version 1 of ourselves
                "Implementation-Title"    : project.name,
                "Implementation-Version"  : project.jar.archiveVersion,
                "Implementation-Vendor"   : "NicolaLovo",
                "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
        ])
    }
}

// Example configuration to allow publishing using the maven-publish plugin
// This is the preferred method to reobfuscate your jar file
jar.finalizedBy('reobfJar')
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
// publish.dependsOn('reobfJar')

publishing {
    publications {
        mavenJava(MavenPublication) {
            artifact jar
        }
    }
    repositories {
        maven {
            url "file://${project.projectDir}/mcmodsrepo"
        }
    }
}

tasks.withType(JavaCompile).configureEach {
    options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}

Β 

Link to comment
Share on other sites

I removed the duplicate files and tried running the game with the data auto generated, and it works. I didn't change anything and I cannot understand because now works and 2 hours before it didn't. Maybe it is related to some cache issues? Maybe there is a cache that needs to be cleaned?

Anyway, thanks for the help mate!

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β–Ό 곡릉사창가 상월곑사창가 도화사창가 쀑동사창가 cgt50 관악사창가 ꡰ포사창가 κ΄‘μž₯사창가 κ±°μ œμ‚¬μ°½κ°€ fob69 κΉ€μ œμ‚¬μ°½κ°€ μž₯좩사창가 ν₯인사창가 광주사창가 upc36 아산사창가 μˆ˜μœ μ‚¬μ°½κ°€ 일원사창가 κ΅°μžμ‚¬μ°½κ°€ wni08 응암사창가 μ–‘μ²œμ‚¬μ°½κ°€ 체뢀사창가 κΉ€μ²œμ‚¬μ°½κ°€ gfn31 쀑림사창가 λΆκ°€μ’Œμ‚¬μ°½κ°€ μˆœμ²œμ‚¬μ°½κ°€ 삼성사창가 cwr29 μ†Œκ³΅μ‚¬μ°½κ°€ 홍은사창가 강릉사창가 연지사창가 vdu98 남학사창가 강뢁사창가 염리사창가 고척사창가 omh05 솑정사창가 상계사창가 신사사창가 μ΄ˆλ™μ‚¬μ°½κ°€ bil89 성ꡬ사창가 광주사창가 성남사창가 μΈν˜„μ‚¬μ°½κ°€ wcy33 μ„œμ‚°μ‚¬μ°½κ°€ λŒ€μΉ˜μ‚¬μ°½κ°€ 전농사창가 읡선사창가 xkf01 문정사창가 도봉사창가 세곑사창가 μ„œμ΄ˆμ‚¬μ°½κ°€ uxw48 성뢁사창가 μ–‘μž¬μ‚¬μ°½κ°€ ν™μ œμ‚¬μ°½κ°€ ꡰ포사창가 cin11 압ꡬ정사창가 μ˜μ£Όμ‚¬μ°½κ°€ 창성사창가 양평사창가 kiq94 남학사창가 λŒ€λ°©μ‚¬μ°½κ°€ 가양사창가 μ˜€κ³‘μ‚¬μ°½κ°€ dmq90 λ§Œλ¦¬μ‚¬μ°½κ°€ 삼성사창가 κ°œν¬μ‚¬μ°½κ°€ λ‚¨λŒ€λ¬Έμ‚¬μ°½κ°€ uia26 μ†Œκ²©μ‚¬μ°½κ°€ 마μž₯사창가 λ…Όν˜„μ‚¬μ°½κ°€ μ„μ΄Œμ‚¬μ°½κ°€ yey02 λ‚¨κ°€μ’Œμ‚¬μ°½κ°€ μ˜ˆμ‚°μ‚¬μ°½κ°€ μˆ˜μœ μ‚¬μ°½κ°€ 솑정사창가 lpx57 광양사창가 ꡰ포사창가 ꡬ미사창가 염곑사창가 ihb71 κ΄‘λͺ…사창가 곡주사창가 μœ¨ν˜„μ‚¬μ°½κ°€ 평택사창가 onp00 김해사창가 λ©΄λͺ©μ‚¬μ°½κ°€ μˆ˜ν•˜μ‚¬μ°½κ°€ 강릉사창가 exy47 광주사창가 μ˜€κ³‘μ‚¬μ°½κ°€ 남산사창가 내곑사창가 pqh66 λͺ©λ™μ‚¬μ°½κ°€ 강남사창가 ν¬μ²œμ‚¬μ°½κ°€ 이화사창가 usr44
    • κ±°μ—¬ν˜Έν…” β†–BCGAME88Β·COMοΌƒ μ°½μ‹ ν˜Έν…” ν‰λ™ν˜Έν…” μ²­νŒŒν˜Έν…” μ™Έλ°œμ‚°ν˜Έν…” avl34 λ™ν•΄ν˜Έν…” λ‘”μ΄Œν˜Έν…” μ••κ΅¬μ •ν˜Έν…” μ£Όκ΅ν˜Έν…” mvf71 μ€‘κ΅¬ν˜Έν…” κ΅°ν¬ν˜Έν…” μ €λ™ν˜Έν…” λŒ€μΉ˜ν˜Έν…” jaf24 κ³΅ν‰ν˜Έν…” μ‹ μ²œν˜Έν…” λ΄‰μ²œν˜Έν…” μ˜λ“±ν¬ν˜Έν…” mnn79 λŒ€μ‘°ν˜Έν…” μ„œμ†Œλ¬Έν˜Έν…” μ‚¬μ²œν˜Έν…” νƒœν‰λ‘œν˜Έν…” xob43 λƒ‰μ²œν˜Έν…” μ’…λ‘œν˜Έν…” μ‚°μ²œν˜Έν…” μΌμ›ν˜Έν…” lqf01 κ²½μ‚°ν˜Έν…” λ¬Έλž˜ν˜Έν…” λ‹Ήμ£Όν˜Έν…” μ’…μ•”ν˜Έν…” kij81 μ‚¬κ°„ν˜Έν…” λΆ€μ²œν˜Έν…” ν•œλ‚¨ν˜Έν…” μž¬λ™ν˜Έν…” jcs74 μ—°μ§€ν˜Έν…” κ΅¬μ‚°ν˜Έν…” ν•­λ™ν˜Έν…” λ΄‰μ²œν˜Έν…” jkx20 ν‘μ„ν˜Έν…” μ΅μ‚°ν˜Έν…” λ„μ›ν˜Έν…” λ‚¨ν˜„ν˜Έν…” mcg60 μ•ˆμ„±ν˜Έν…” λ‚΄κ³‘ν˜Έν…” μ€‘ν™”ν˜Έν…” μ‹ μˆ˜ν˜Έν…” oes55 λ‚¨μ˜ν˜Έν…” μƒμΌν˜Έν…” ν™μ œν˜Έν…” μ†‘μ›”ν˜Έν…” mtb49 μ‹ λ¦Όν˜Έν…” λ‚˜μ£Όν˜Έν…” μ œκΈ°ν˜Έν…” μ§„μ£Όν˜Έν…” ybo08 μ²­μ£Όν˜Έν…” μ•ˆμ„±ν˜Έν…” κ³΅ν•­ν˜Έν…” μ‹ κΈΈν˜Έν…” ikq60 ν˜„μ €ν˜Έν…” μž μ‹€ν˜Έν…” κ³Όν•΄ν˜Έν…” κ΄€μ•…ν˜Έν…” bbf44 μ°½μ‹ ν˜Έν…” μ²­νŒŒν˜Έν…” μ„±λ‚¨ν˜Έν…” κ³Όμ²œν˜Έν…” usx11 λ©΄λͺ©ν˜Έν…” μ²­λŸ‰λ¦¬ν˜Έν…” μ˜€κ³‘ν˜Έν…” μ—Όκ³‘ν˜Έν…” plq13 κ³ λ•ν˜Έν…” νŒ”νŒν˜Έν…” κ΅¬μ‚°ν˜Έν…” μ—Όμ°½ν˜Έν…” gcd65 μž₯μ§€ν˜Έν…” μ•„ν˜„ν˜Έν…” μ΄λ¬Έν˜Έν…” κ΄€μ•…ν˜Έν…” oxx85 μΈμ²œν˜Έν…” μ—¬μˆ˜ν˜Έν…” ν–‰λ‹Ήν˜Έν…” ν›ˆμ •ν˜Έν…” agm13 κ°ˆν˜„ν˜Έν…” μ €λ™ν˜Έν…” μ–‘ν™”ν˜Έν…” λ…ΈλŸ‰μ§„ν˜Έν…” ahr00 μˆ˜μƒ‰ν˜Έν…” μ›μ§€ν˜Έν…” ν•˜μ™•μ‹­λ¦¬ν˜Έν…” μ„œμ΄ˆν˜Έν…” ldl03 μ˜¨μˆ˜ν˜Έν…” κ°•λΆν˜Έν…” ν•˜λ‚¨ν˜Έν…” λ‚¨ν•™ν˜Έν…” vqo29
    • ν’λ‚©μœ ν₯μ—…μ†Œ Β§BCGAME88Β·COMΒ§ 제기유ν₯μ—…μ†Œ μ²΄λΆ€μœ ν₯μ—…μ†Œ λ¬΄ν•™μœ ν₯μ—…μ†Œ ν•˜μ€‘μœ ν₯μ—…μ†Œ yev02 μ’…λ‘œμœ ν₯μ—…μ†Œ μ••κ΅¬μ •μœ ν₯μ—…μ†Œ 뢁창유ν₯μ—…μ†Œ κ°€μ–‘μœ ν₯μ—…μ†Œ woa52 λƒ‰μ²œμœ ν₯μ—…μ†Œ λ…Όμ‚°μœ ν₯μ—…μ†Œ μ°½λ…•μœ ν₯μ—…μ†Œ μ€‘κ³‘μœ ν₯μ—…μ†Œ qbt26 문배유ν₯μ—…μ†Œ ν’λ‚©μœ ν₯μ—…μ†Œ 였μž₯유ν₯μ—…μ†Œ 마μž₯유ν₯μ—…μ†Œ avl40 μˆœν™”μœ ν₯μ—…μ†Œ μˆ˜ν•˜μœ ν₯μ—…μ†Œ μ‹ μ²œμœ ν₯μ—…μ†Œ 이촌유ν₯μ—…μ†Œ ttu15 μ‚¬κ·Όμœ ν₯μ—…μ†Œ 휘경유ν₯μ—…μ†Œ μ•ˆμ„±μœ ν₯μ—…μ†Œ νšŒν˜„μœ ν₯μ—…μ†Œ tvx00 μ—­μ‚Όμœ ν₯μ—…μ†Œ λ“±μ΄Œμœ ν₯μ—…μ†Œ λŒ€λ°©μœ ν₯μ—…μ†Œ μ••κ΅¬μ •μœ ν₯μ—…μ†Œ ayp38 κ°€νšŒμœ ν₯μ—…μ†Œ μ€ν‰μœ ν₯μ—…μ†Œ λ‚¨ν•™μœ ν₯μ—…μ†Œ μ€‘λ™μœ ν₯μ—…μ†Œ nmk84 λ“±μ΄Œμœ ν₯μ—…μ†Œ μ΄ˆλ™μœ ν₯μ—…μ†Œ μ˜₯인유ν₯μ—…μ†Œ μ‹ κΈΈμœ ν₯μ—…μ†Œ brx15 κ°€μ‚°μœ ν₯μ—…μ†Œ μ‹ κ³„μœ ν₯μ—…μ†Œ μ€‘λ¦Όμœ ν₯μ—…μ†Œ λ™μ†Œλ¬Έμœ ν₯μ—…μ†Œ hre64 λŒ€ν₯유ν₯μ—…μ†Œ ν†΅μΈμœ ν₯μ—…μ†Œ ν‰νƒμœ ν₯μ—…μ†Œ λ™κ΅μœ ν₯μ—…μ†Œ wsm53 ν•©λ™μœ ν₯μ—…μ†Œ μ„œμ‚°μœ ν₯μ—…μ†Œ ν’λ‚©μœ ν₯μ—…μ†Œ νƒœν‰λ‘œμœ ν₯μ—…μ†Œ yve82 μ§„κ΄€μœ ν₯μ—…μ†Œ λ„μ„ μœ ν₯μ—…μ†Œ 회기유ν₯μ—…μ†Œ 좩무유ν₯μ—…μ†Œ wtr09 κΉ€μ œμœ ν₯μ—…μ†Œ μ‹ μ„€μœ ν₯μ—…μ†Œ λŒ€λ°©μœ ν₯μ—…μ†Œ μ™Έλ°œμ‚°μœ ν₯μ—…μ†Œ gdf09 λ™μˆ­μœ ν₯μ—…μ†Œ μ‚Όμ „μœ ν₯μ—…μ†Œ μ„μ΄Œμœ ν₯μ—…μ†Œ ν˜œν™”μœ ν₯μ—…μ†Œ vbd27 κΉ€ν¬μœ ν₯μ—…μ†Œ 자곑유ν₯μ—…μ†Œ μž₯μ•ˆμœ ν₯μ—…μ†Œ κ΅λ‚¨μœ ν₯μ—…μ†Œ ceg19 μ„œμ†Œλ¬Έμœ ν₯μ—…μ†Œ μŒμ„±μœ ν₯μ—…μ†Œ κ΄‘μ§„μœ ν₯μ—…μ†Œ κ°ˆν˜„μœ ν₯μ—…μ†Œ qri58 거제유ν₯μ—…μ†Œ 개포유ν₯μ—…μ†Œ 좘천유ν₯μ—…μ†Œ κ³ μ²™μœ ν₯μ—…μ†Œ sfb16 ν•œλ‚¨μœ ν₯μ—…μ†Œ λΆκ°€μ’Œμœ ν₯μ—…μ†Œ 미근유ν₯μ—…μ†Œ λŒ€λ¦Όμœ ν₯μ—…μ†Œ kfa74 쌍문유ν₯μ—…μ†Œ λ™λŒ€λ¬Έμœ ν₯μ—…μ†Œ λ‚΄λ°œμ‚°μœ ν₯μ—…μ†Œ κ΄€μˆ˜μœ ν₯μ—…μ†Œ rpg57 μ—Όλ¦¬μœ ν₯μ—…μ†Œ ν†΅μΈμœ ν₯μ—…μ†Œ μ‚Όμ²­μœ ν₯μ—…μ†Œ ν†΅μ˜μœ ν₯μ—…μ†Œ uop64 μ™Έλ°œμ‚°μœ ν₯μ—…μ†Œ ν•œλ‚¨μœ ν₯μ—…μ†Œ ν†΅μΈμœ ν₯μ—…μ†Œ κΆμ •μœ ν₯μ—…μ†Œ elb98 μƒμ£Όμœ ν₯μ—…μ†Œ λŒ€ν˜„μœ ν₯μ—…μ†Œ κ³ μ²™μœ ν₯μ—…μ†Œ ν† μ •μœ ν₯μ—…μ†Œ ktq18
    • μ†‘νŒŒμŒμ‹μ  ΒΆBCGAME88Β·COMΒͺ μž₯κ΅μŒμ‹μ  κ°•μ„œμŒμ‹μ  μ„œμ‚°μŒμ‹μ  μ§„κ΄€μŒμ‹μ  asj57 κ΅¬μˆ˜μŒμ‹μ  μ–‘μ£ΌμŒμ‹μ  κ΅λΆμŒμ‹μ  κ²½μ‚°μŒμ‹μ  njm34 μš°μ΄μŒμ‹μ  λ™μˆ­μŒμ‹μ  μ€‘λž‘μŒμ‹μ  μ„μ΄ŒμŒμ‹μ  kms61 κ³ μ²™μŒμ‹μ  μƒμ•”μŒμ‹μ  μ΄νƒœμ›μŒμ‹μ  λ™λ‘μ²œμŒμ‹μ  mei12 λ‚΄κ³‘μŒμ‹μ  μƒμΌμŒμ‹μ  μ†Œκ²©μŒμ‹μ  μŒλ¦ΌμŒμ‹μ  wny91 λͺ…λ₯œμŒμ‹μ  μ–‘μ£ΌμŒμ‹μ  λ§ˆκ³‘μŒμ‹μ  κΈˆμ²œμŒμ‹μ  poe32 μ²΄λΆ€μŒμ‹μ  λ‹€λ™μŒμ‹μ  κ³ ν₯μŒμ‹μ  λΆ€μ²œμŒμ‹μ  wkr70 μ°½μ „μŒμ‹μ  κ³ μ–‘μŒμ‹μ  μ΄νƒœμ›μŒμ‹μ  λŒ€μ „μŒμ‹μ  cxw75 λ¬Έκ²½μŒμ‹μ  μ„μ΄ŒμŒμ‹μ  λ™μžμŒμ‹μ  κ³ μ–‘μŒμ‹μ  tdd69 ν˜„μ„μŒμ‹μ  λ°°λ°©μŒμ‹μ  λ‹Ήμ§„μŒμ‹μ  ν•œλ‚¨μŒμ‹μ  rdu44 μ„Έμ’…μŒμ‹μ  λˆμ˜μŒμ‹μ  ν™μ΅μŒμ‹μ  μ—­μ‚ΌμŒμ‹μ  ape46 μΆ©λ¬΄μŒμ‹μ  κ°ˆν˜„μŒμ‹μ  ν–‰μ΄ŒμŒμ‹μ  μ••κ΅¬μ •μŒμ‹μ  ywv11 λΆκ°€μ’ŒμŒμ‹μ  μ˜μ™•μŒμ‹μ  λˆ„μƒμŒμ‹μ  κ°€νšŒμŒμ‹μ  yfh01 λΆκ°€μ’ŒμŒμ‹μ  ν•­λ™μŒμ‹μ  μž μ‹€μŒμ‹μ  λΆˆκ΄‘μŒμ‹μ  hmx83 λ™λΉ™κ³ μŒμ‹μ  μ—­μ‚ΌμŒμ‹μ  κ΄‘μ§„μŒμ‹μ  κ΅°ν¬μŒμ‹μ  yjd09 μ—Όμ°½μŒμ‹μ  λ‚¨λŒ€λ¬ΈμŒμ‹μ  μ‹ κ³΅λ•μŒμ‹μ  μš°μ΄μŒμ‹μ  yqd23 μ–‘ν‰μŒμ‹μ  κΉ€μ œμŒμ‹μ  μˆ˜μ†‘μŒμ‹μ  μ•ˆμ„±μŒμ‹μ  bwc14 μ •λ™μŒμ‹μ  μΆ©μ‹ μŒμ‹μ  λ‚΄κ³‘μŒμ‹μ  λŒ€λ°©μŒμ‹μ  fow68 μ—Όκ³‘μŒμ‹μ  μ²­λ‹΄μŒμ‹μ  λ„λ΄‰μŒμ‹μ  μ–‘μ²œμŒμ‹μ  vvf86 μš©λ‹΅μŒμ‹μ  μ°½μ²œμŒμ‹μ  μ„œκ³„μŒμ‹μ  κ΅¬μˆ˜μŒμ‹μ  idb71 μƒμ›”κ³‘μŒμ‹μ  μš΄λ‹ˆμŒμ‹μ  λ¬΄μ•…μŒμ‹μ  μ μ„ μŒμ‹μ  ybl69 νƒœν‰λ‘œμŒμ‹μ  μšΈμ‚°μŒμ‹μ  λ…Όμ‚°μŒμ‹μ  κ΄‘μ§„μŒμ‹μ  ehd02 λ¬΅μ •μŒμ‹μ  λŠ₯λ™μŒμ‹μ  λ³Έλ™μŒμ‹μ  κ²½μ‚°μŒμ‹μ  ugf90
    • μˆ˜μ„œλ°±λ§ˆ ‑BCGAME88Β·COM↙ λͺ…λ™λ°±λ§ˆ ꡬ미백마 μƒμ£Όλ°±λ§ˆ μ„±μ‚°λ°±λ§ˆ fwj70 μ—¬μ˜λ„λ°±λ§ˆ μ˜μ™•λ°±λ§ˆ ν˜œν™”λ°±λ§ˆ 우이백마 smc66 μΈν˜„λ°±λ§ˆ λ…μ‚°λ°±λ§ˆ λ΄‰μ΅λ°±λ§ˆ λŒ€ν˜„λ°±λ§ˆ krt00 ν™μ΅λ°±λ§ˆ μˆ˜μ„œλ°±λ§ˆ λŒ€μΉ˜λ°±λ§ˆ μ‹ λ‹Ήλ°±λ§ˆ nbb25 μ•ˆμ„±λ°±λ§ˆ λ³Έλ™λ°±λ§ˆ ν˜œν™”λ°±λ§ˆ λ„κ³‘λ°±λ§ˆ mbw91 ν™μ§€λ°±λ§ˆ μ€‘ν•™λ°±λ§ˆ 자곑백마 μ’…λ‘œλ°±λ§ˆ ttk86 κ°€λ¦¬λ΄‰λ°±λ§ˆ ꡬ기백마 λ¬˜λ™λ°±λ§ˆ λ‹Ήμ‚°λ°±λ§ˆ exn44 νƒœν‰λ°±λ§ˆ μ†μ΄ˆλ°±λ§ˆ ꡐ뢁백마 문배백마 ycl75 μ••κ΅¬μ •λ°±λ§ˆ λŒ€μΉ˜λ°±λ§ˆ μ™Έλ°œμ‚°λ°±λ§ˆ κ°œλ΄‰λ°±λ§ˆ gro86 λ°€μ–‘λ°±λ§ˆ 청주백마 μ§„κ΄€λ°±λ§ˆ μ²­μ§„λ°±λ§ˆ omd40 λ‚΄κ³‘λ°±λ§ˆ λ…μ‚°λ°±λ§ˆ λ™μ„ λ°±λ§ˆ λ‚¨ν˜„λ°±λ§ˆ rwu31 μ‹ μ •λ°±λ§ˆ 뢁창백마 이천백마 ν™μ΅λ°±λ§ˆ tsp25 좘천백마 λ‹ΉμΈλ°±λ§ˆ 금호백마 μ²΄λΆ€λ°±λ§ˆ wwa35 길음백마 μ†Œκ³΅λ°±λ§ˆ λ‚¨ν˜„λ°±λ§ˆ κ°•μ„œλ°±λ§ˆ kea99 μ„±κ΅¬λ°±λ§ˆ μƒμˆ˜λ°±λ§ˆ ν†΅μΈλ°±λ§ˆ μ†‘μ •λ°±λ§ˆ kvu68 μ˜€μ‚°λ°±λ§ˆ 과천백마 μ•ˆμ„±λ°±λ§ˆ μ‹œν₯백마 vvs15 μ„±μ‚°λ°±λ§ˆ 거제백마 μ˜₯천백마 μ†μ΄ˆλ°±λ§ˆ xxn58 κ³΅ν‰λ°±λ§ˆ λ¬΄μ•ˆλ°±λ§ˆ κ΄‘μ£Όλ°±λ§ˆ μ–‘μ£Όλ°±λ§ˆ eqo95 ν•„λ™λ°±λ§ˆ μ›λ‚¨λ°±λ§ˆ λ‹Ήμ‚°λ°±λ§ˆ 자곑백마 enj91 μ¦μ‚°λ°±λ§ˆ μ μ„ λ°±λ§ˆ λΆ€μ‚°λ°±λ§ˆ λ¬΄μ•…λ°±λ§ˆ gyr05 λΆμ•„ν˜„λ°±λ§ˆ μ•ˆμ‚°λ°±λ§ˆ μ„±λΆλ°±λ§ˆ μ˜μ™•λ°±λ§ˆ lpr40 μ •λ™λ°±λ§ˆ μ‹ μ •λ°±λ§ˆ μ΄ˆλ™λ°±λ§ˆ 무ꡐ백마 pnv00 μ „μ£Όλ°±λ§ˆ κ°€νšŒλ°±λ§ˆ μ‹ μˆ˜λ°±λ§ˆ μŒμ„±λ°±λ§ˆ bqk25
  • Topics

×
×
  • Create New...

Important Information

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