<?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[AutoBlockPicker for scaffold pls]]></title><description><![CDATA[<p dir="auto">Can you give me autoblockpicker for scaffold</p>
]]></description><link>https://forum.liquidbounce.net/topic/139/autoblockpicker-for-scaffold-pls</link><generator>RSS for Node</generator><lastBuildDate>Wed, 13 May 2026 00:45:04 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/139.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 03 Jul 2020 06:15:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Wed, 08 Jul 2020 02:25:28 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://forums.ccbluex.net/topic/170/autofindblock" target="_blank" rel="noopener noreferrer nofollow ugc">https://forums.ccbluex.net/topic/170/autofindblock</a></p>
]]></description><link>https://forum.liquidbounce.net/post/810</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/810</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Wed, 08 Jul 2020 02:25:28 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sun, 05 Jul 2020 03:48:34 GMT]]></title><description><![CDATA[<p dir="auto">i have do that lol</p>
]]></description><link>https://forum.liquidbounce.net/post/720</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/720</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Sun, 05 Jul 2020 03:48:34 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sun, 05 Jul 2020 01:06:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lolmc" aria-label="Profile: LolMC">@<bdi>LolMC</bdi></a> <code>mc.thePlayer.currentItem = slot - 36</code><br />
just like AutoWeapon</p>
]]></description><link>https://forum.liquidbounce.net/post/715</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/715</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sun, 05 Jul 2020 01:06:08 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sat, 04 Jul 2020 15:06:50 GMT]]></title><description><![CDATA[<p dir="auto">No<br />
some anticheat have patch spoof item in hotbar to switch item sliently(matrix patched it)</p>
]]></description><link>https://forum.liquidbounce.net/post/689</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/689</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Sat, 04 Jul 2020 15:06:50 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sat, 04 Jul 2020 14:06:34 GMT]]></title><description><![CDATA[<p dir="auto">Scaffold has this feature as well. It's called AutoBlock.</p>
]]></description><link>https://forum.liquidbounce.net/post/686</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/686</guid><dc:creator><![CDATA[Senk Ju]]></dc:creator><pubDate>Sat, 04 Jul 2020 14:06:34 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sat, 04 Jul 2020 13:29:14 GMT]]></title><description><![CDATA[<p dir="auto">No<br />
he mean<br />
when he turn on scaffold<br />
a script will automatic select the hotbar have block(becuz he too lazy to select it with hand)</p>
]]></description><link>https://forum.liquidbounce.net/post/683</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/683</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Sat, 04 Jul 2020 13:29:14 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sat, 04 Jul 2020 10:49:25 GMT]]></title><description><![CDATA[<p dir="auto">Just use InventoryCleaner. It can automatically put blocks in your hotbar.</p>
]]></description><link>https://forum.liquidbounce.net/post/676</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/676</guid><dc:creator><![CDATA[Senk Ju]]></dc:creator><pubDate>Sat, 04 Jul 2020 10:49:25 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Sat, 04 Jul 2020 04:40:34 GMT]]></title><description><![CDATA[<p dir="auto">My code:</p>
<p dir="auto">Scaffold(I am lazy so I use kt to show these, may have errors)</p>
<pre><code>private val pickerValue = BoolValue("Picker", true)
private val pickerSlotValue = IntValue("PickerSlot", 3, 1, 9)
//...
//on find slot
var slot = InventoryUtils.findAutoBlockBlock(pickerValue.get())
if (slot == -1) 
    return
else if ((slot - 9 or 35 - slot) &gt;= 0) {
    mc.playerController.windowClick(0, slot, pickerSlotValue.get() - 1, 2, mc.thePlayer)
    slot = pickerSlotValue.get() - 1
}
//...send Packet
</code></pre>
<p dir="auto">InvUtils</p>
<pre><code>@JvmStatic
fun canAutoBlock(itemStack: ItemStack) = itemStack?.item is ItemBlock &amp;&amp; itemStack?.item.block !in BLOCK_BLACKLIST

@JvmStatic
fun findAutoBlockBlock(pick: Boolean): Int = 
    (36..44).map{ it to mc.player.inventoryContainer.getSlot(it).stack }
            .filter{ canAutoBlock(it.second) }.firstOrNull()?.first ?: 
        if (pick) 
            (9..35).map{ it to mc.player.inventoryContainer.getSlot(it).stack }
                .filter{ canAutoBlock(it.second) }.maxBy{ it.second.stackSize }?.first ?: -1
        else -1
</code></pre>
<p dir="auto">enjoy <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61b.png?v=866ab33d74c" class="not-responsive emoji emoji-android emoji--stuck_out_tongue" style="height:23px;width:auto;vertical-align:middle" title=":p" alt="😛" /></p>
]]></description><link>https://forum.liquidbounce.net/post/659</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/659</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 04 Jul 2020 04:40:34 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Fri, 03 Jul 2020 07:56:34 GMT]]></title><description><![CDATA[<p dir="auto">make feature request in github<br />
or skid code ur self</p>
]]></description><link>https://forum.liquidbounce.net/post/588</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/588</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Fri, 03 Jul 2020 07:56:34 GMT</pubDate></item><item><title><![CDATA[Reply to AutoBlockPicker for scaffold pls on Fri, 03 Jul 2020 07:09:39 GMT]]></title><description><![CDATA[<p dir="auto">liquidbounce's scaffold already have it<br />
but if you want to make it not silent, you can skid scaffold's codes xdxd</p>
]]></description><link>https://forum.liquidbounce.net/post/587</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/587</guid><dc:creator><![CDATA[ChocoPie_isme]]></dc:creator><pubDate>Fri, 03 Jul 2020 07:09:39 GMT</pubDate></item></channel></rss>