<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to construct the liquidbounce problem]]></title><description><![CDATA[<p dir="auto">I used idea to build a liquidbounce, but I couldn't find the API- java.jar How to solve this problem</p>
]]></description><link>https://forum.liquidbounce.net/topic/1704/how-to-construct-the-liquidbounce-problem</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 10:13:28 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/1704.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 23 Mar 2021 12:04:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Mon, 31 May 2021 00:20:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/miky08p" aria-label="Profile: miky08p">@<bdi>miky08p</bdi></a>  if it work before thealtening error, you can just dowbload then replace to 1.8.9-Forge and you finished</p>
]]></description><link>https://forum.liquidbounce.net/post/18213</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/18213</guid><dc:creator><![CDATA[TheMossYT]]></dc:creator><pubDate>Mon, 31 May 2021 00:20:17 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 05 May 2021 13:13:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/themossyt" aria-label="Profile: themossyt">@<bdi>themossyt</bdi></a> i Will try thanks, buy i know the configuration for' running It?</p>
]]></description><link>https://forum.liquidbounce.net/post/16590</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/16590</guid><dc:creator><![CDATA[miky08p]]></dc:creator><pubDate>Wed, 05 May 2021 13:13:04 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 05 May 2021 12:38:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/miky08p" aria-label="Profile: miky08p">@<bdi>miky08p</bdi></a> if you lazy to download the file<br />
Here the code</p>
<pre><code>buildscript {

    repositories {
        jcenter()
        mavenLocal()
        mavenCentral()

        maven { url 'https://files.minecraftforge.net/maven' }
        maven { url 'https://plugins.gradle.org/m2' }
        maven { url 'https://repo.spongepowered.org/maven' }
    }

    dependencies {
        classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: kotlin_version
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '2.1-SNAPSHOT'
        classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.6-SNAPSHOT'
        classpath group: 'com.github.jengelman.gradle.plugins', name: 'shadow', version: '4.0.4'
    }
}

// Languages
apply plugin: 'java'
apply plugin: 'kotlin'

// IDE
apply plugin: 'idea'

// Minecraft
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'

// Jar packaging
apply plugin: 'com.github.johnrengelman.shadow'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding = 'UTF-8'

sourceSets {
    main.java.srcDirs += 'src/main/java'
    main.java.srcDirs += '../shared/main/java'
    main.resources.srcDirs += '../shared/main/resources'
}


compileKotlin {
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

compileTestKotlin {
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

idea {
    module {
        inheritOutputDirs = true
    }
}

archivesBaseName = 'LiquidBounce'

minecraft {
    version = '1.8.9-11.15.1.2318-1.8.9'
    runDir = 'run'
    mappings = 'stable_22'
    makeObfSourceJar = false
}

repositories {
    mavenLocal()
    mavenCentral()
    jcenter()

    maven { url 'https://jitpack.io' }
    maven { url 'https://repo.spongepowered.org/maven/' }
}

dependencies {
    compile('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
        exclude module: 'launchwrapper'
    }

    compile 'com.jagrosh:DiscordIPC:0.4'
    compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_version

    implementation 'com.github.TheAltening:TheAltening4j:d0771f42d3'
    implementation 'com.github.TheAltening:TheAlteningAuth4j:-SNAPSHOT'
    compile 'com.github.TheAltening:TheAltening4j:api-2.0-SNAPSHOT'
    compile 'com.github.TheAltening:TheAlteningAuth4j:-SNAPSHOT'
    compile('commons-io:commons-io') {
        version {
            strictly '2.5'
        }
    }

    compile fileTree(include: ['*.jar'], dir: 'libs')
}

processResources {
    inputs.property 'version', project.version
    inputs.property 'mcversion', project.minecraft.version

    from(sourceSets.main.resources.srcDirs) {
        include 'mcmod.info'

        expand 'version':project.version, 'mcversion':project.minecraft.version
    }

    from(sourceSets.main.resources.srcDirs) {
        exclude 'mcmod.info'
    }

    rename '(.+_at.cfg)', 'META-INF/$1'
}

mixin {
    add sourceSets.main, 'liquidbounce.mixins.refmap.json'
}

jar {
    manifest.attributes(
            'MixinConfigs': 'liquidbounce.forge.mixins.json',
            'tweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
            'TweakOrder': 0,
            'FMLCorePluginContainsFMLMod': 'net.ccbluex.liquidbounce.injection.forge.MixinLoader',
            'FMLCorePlugin': 'net.ccbluex.liquidbounce.injection.forge.TransformerLoader',
            'FMLAT': 'liquidbounce_at.cfg',
            'Manifest-Version': 1.0,
            'Main-Class': 'net.ccbluex.liquidinstruction.LiquidInstructionKt'
    )
}

shadowJar {
    dependencies {
        include(dependency('org.spongepowered:mixin'))
        include(dependency('com.jagrosh:DiscordIPC'))
        include(dependency('org.slf4j:slf4j-api'))
        include(dependency('log4j:log4j:1.2.17'))
        include(dependency('org.scijava:native-lib-loader'))
        include(dependency('com.kohlschutter.junixsocket:junixsocket-common'))
        include(dependency('com.kohlschutter.junixsocket:junixsocket-native-common'))

        include(dependency('org.jetbrains.kotlin:kotlin-stdlib'))

        include(dependency('com.github.TheAltening:TheAltening4j'))
        include(dependency('com.github.TheAltening:TheAlteningAuth4j'))
    }

    exclude 'dummyThing'
    exclude 'LICENSE.txt'

    classifier = ''
}

reobf { shadowJar { mappingType = 'SEARGE' } }
tasks.reobfShadowJar.mustRunAfter shadowJar

configurations {
    external
    compile.extendsFrom external
}

build.dependsOn shadowJar
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/16588</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/16588</guid><dc:creator><![CDATA[TheMossYT]]></dc:creator><pubDate>Wed, 05 May 2021 12:38:53 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 05 May 2021 12:36:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/miky08p" aria-label="Profile: miky08p">@<bdi>miky08p</bdi></a> try this build.gradle, I try it and it work<br />
<a href="/assets/uploads/files/1620218162017-build.gradle-in-there.zip">build.gradle in there.zip</a><br />
Replace it in 1.8.9-forge and the build.gradle file are in there</p>
]]></description><link>https://forum.liquidbounce.net/post/16587</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/16587</guid><dc:creator><![CDATA[TheMossYT]]></dc:creator><pubDate>Wed, 05 May 2021 12:36:33 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Fri, 16 Apr 2021 09:34:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gking" aria-label="Profile: gking">@<bdi>gking</bdi></a> what i Need to change, i have the extact same issue</p>
]]></description><link>https://forum.liquidbounce.net/post/14659</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/14659</guid><dc:creator><![CDATA[miky08p]]></dc:creator><pubDate>Fri, 16 Apr 2021 09:34:45 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Mon, 05 Apr 2021 02:38:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gking" aria-label="Profile: gking">@<bdi>gking</bdi></a> said in <a href="/post/13036">How to construct the liquidbounce problem</a>:</p>
<blockquote>
<p dir="auto">d0771f42d3<br />
what link ?</p>
</blockquote>
]]></description><link>https://forum.liquidbounce.net/post/13800</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13800</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Mon, 05 Apr 2021 02:38:45 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 14:49:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gking" aria-label="Profile: gking">@<bdi>gking</bdi></a> what link</p>
]]></description><link>https://forum.liquidbounce.net/post/13041</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13041</guid><dc:creator><![CDATA[Aftery]]></dc:creator><pubDate>Wed, 24 Mar 2021 14:49:19 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 13:58:34 GMT]]></title><description><![CDATA[<p dir="auto">change master-SNAPSHOT to d0771f42d3<br />
because SNAPSHOT is crashed<br />
you can use this link</p>
]]></description><link>https://forum.liquidbounce.net/post/13036</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13036</guid><dc:creator><![CDATA[Gking]]></dc:creator><pubDate>Wed, 24 Mar 2021 13:58:34 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:20:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wangtian297" aria-label="Profile: wangtian297">@<bdi>wangtian297</bdi></a></p>
<p dir="auto">hmmm idk</p>
<p dir="auto">it says finished so maybe try to run it.? idk</p>
]]></description><link>https://forum.liquidbounce.net/post/13028</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13028</guid><dc:creator><![CDATA[Riodoro]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:20:19 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:18:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/riodoro" aria-label="Profile: riodoro">@<bdi>riodoro</bdi></a> useless<br />
<img src="/assets/uploads/files/1616588307764-j-g1n-96-zxpmi-lbbwl-96-dnd-x.png" alt="J$G1NDND)X.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/13027</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13027</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:18:37 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:15:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wangtian297" aria-label="Profile: wangtian297">@<bdi>wangtian297</bdi></a></p>
<p dir="auto">try this build.gradle:</p>
<p dir="auto"><a href="/assets/uploads/files/1616588077038-build.gradle.zip">build.gradle.zip</a></p>
<p dir="auto">this one schould work<br />
just put it in the forge-1.8.9 folder and try again</p>
]]></description><link>https://forum.liquidbounce.net/post/13026</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13026</guid><dc:creator><![CDATA[Riodoro]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:15:17 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:11:13 GMT]]></title><description><![CDATA[<p dir="auto">![)JO%SD7R<a href="/assets/uploads/files/1616587828147-jo-sd7r-1-l-96-ixfb-96-q76.png">()1{L<code>IXFB</code>Q76.png</a><br />
How to solve this problem? I have compiled it successfully before, but now it is not clear that there is a problem</p>
]]></description><link>https://forum.liquidbounce.net/post/13025</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13025</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:11:13 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:04:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/riodoro" aria-label="Profile: riodoro">@<bdi>riodoro</bdi></a> Another question<br />
<img src="/assets/uploads/files/1616587474136-mb-2gkbe-pd3c-96-kv7tg_4r2.png" alt="MB$2GKBE~PD3C`KV7TG_4R2.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/13023</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13023</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:04:41 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:04:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ohno" aria-label="Profile: ohno">@<bdi>ohno</bdi></a></p>
<p dir="auto">its works...</p>
<p dir="auto">it looks like they changed something</p>
<p dir="auto">i changed it like this an it works lol</p>
]]></description><link>https://forum.liquidbounce.net/post/13022</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13022</guid><dc:creator><![CDATA[Riodoro]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:04:35 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 12:01:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ohno" aria-label="Profile: ohno">@<bdi>ohno</bdi></a> It's no use to him. Thank you</p>
]]></description><link>https://forum.liquidbounce.net/post/13021</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13021</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Wed, 24 Mar 2021 12:01:07 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 11:55:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wangtian297" aria-label="Profile: wangtian297">@<bdi>wangtian297</bdi></a> <img src="/assets/uploads/files/1616586903087-f17e0783-5c52-4ed4-b8f6-d24770ef20d5-image.png" alt="f17e0783-5c52-4ed4-b8f6-d24770ef20d5-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/13019</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13019</guid><dc:creator><![CDATA[ohno]]></dc:creator><pubDate>Wed, 24 Mar 2021 11:55:06 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 11:54:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/riodoro" aria-label="Profile: riodoro">@<bdi>riodoro</bdi></a> ...<br />
its 4j...</p>
]]></description><link>https://forum.liquidbounce.net/post/13018</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13018</guid><dc:creator><![CDATA[ohno]]></dc:creator><pubDate>Wed, 24 Mar 2021 11:54:46 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 11:42:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wangtian297" aria-label="Profile: wangtian297">@<bdi>wangtian297</bdi></a></p>
<p dir="auto">open the build.gradle in the forge 1.8.9 folder<br />
goto line 83<br />
and change  these lines</p>
<p dir="auto">from this:</p>
<pre><code>implementation 'com.github.TheAltening:API-Java:master-SNAPSHOT'
implementation 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
compile 'com.github.TheAltening:API-Java:api-2.0-SNAPSHOT'
compile 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
</code></pre>
<p dir="auto">to this:</p>
<pre><code>implementation 'com.github.TheAltening:TheAltening4j:master-SNAPSHOT'
implementation 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
compile 'com.github.TheAltening:TheAltening4j:api-2.0-22541fa70f-1'
compile 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
</code></pre>
<p dir="auto">This schoud fix it <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=866ab33d74c" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.liquidbounce.net/post/13015</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13015</guid><dc:creator><![CDATA[Riodoro]]></dc:creator><pubDate>Wed, 24 Mar 2021 11:42:55 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Wed, 24 Mar 2021 11:18:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ohno" aria-label="Profile: ohno">@<bdi>ohno</bdi></a> No, it's the problem<br />
![_]<a href="/assets/uploads/files/1616584687436-_-o-uuy91p3il56kcq5-m.png">{O(UUY91P3IL56KCQ5}M.png</a></p>
]]></description><link>https://forum.liquidbounce.net/post/13013</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13013</guid><dc:creator><![CDATA[wangtian297]]></dc:creator><pubDate>Wed, 24 Mar 2021 11:18:17 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Tue, 23 Mar 2021 13:50:40 GMT]]></title><description><![CDATA[<p dir="auto">decompress this archive to:</p>
<pre><code>C:\Users\ur user\.gradle\caches\modules-2\files-2.1
</code></pre>
<p dir="auto"><a href="/assets/uploads/files/1616507431728-com.github.thealtening.zip">archive.zip</a></p>
]]></description><link>https://forum.liquidbounce.net/post/12972</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/12972</guid><dc:creator><![CDATA[ohno]]></dc:creator><pubDate>Tue, 23 Mar 2021 13:50:40 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Tue, 23 Mar 2021 12:56:10 GMT]]></title><description><![CDATA[<p dir="auto">java.jar <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/customizations/b07ff9ed-5c74-43f8-87c2-5744453f9f2c-axocooler.gif?v=866ab33d74c" class="not-responsive emoji emoji-customizations emoji--axocooler" style="height:23px;width:auto;vertical-align:middle" title=":axocooler:" alt="undefined" /> <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/customizations/b07ff9ed-5c74-43f8-87c2-5744453f9f2c-axocooler.gif?v=866ab33d74c" class="not-responsive emoji emoji-customizations emoji--axocooler" style="height:23px;width:auto;vertical-align:middle" title=":axocooler:" alt="undefined" /></p>
]]></description><link>https://forum.liquidbounce.net/post/12956</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/12956</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Tue, 23 Mar 2021 12:56:10 GMT</pubDate></item><item><title><![CDATA[Reply to How to construct the liquidbounce problem on Tue, 23 Mar 2021 12:54:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wangtian297" aria-label="Profile: wangtian297">@<bdi>wangtian297</bdi></a> what?</p>
]]></description><link>https://forum.liquidbounce.net/post/12954</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/12954</guid><dc:creator><![CDATA[Aftery]]></dc:creator><pubDate>Tue, 23 Mar 2021 12:54:50 GMT</pubDate></item></channel></rss>