<?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[What is the method of sending packets（Or usage）]]></title><description><![CDATA[<p dir="auto">When I write my JS, I need to send a c0epacket, but I use the method in V1, that is, the mc.thePlayer.sendQueue.addToSendQueue  method, but it doesn't work. It tells me that this method doesn't exist. So who can tell me how to send packet（Or usage .One possibility is that this function exists, but its method has changed）</p>
]]></description><link>https://forum.liquidbounce.net/topic/3245/what-is-the-method-of-sending-packets-or-usage</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 05:25:45 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/3245.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 22 Oct 2021 13:14:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Wed, 06 Apr 2022 09:32:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wowiesocl" aria-label="Profile: wowiesocl">@<bdi>wowiesocl</bdi></a> use the <code>inline code</code> option pls</p>
]]></description><link>https://forum.liquidbounce.net/post/29520</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/29520</guid><dc:creator><![CDATA[Ali00035]]></dc:creator><pubDate>Wed, 06 Apr 2022 09:32:07 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 26 Nov 2021 16:30:47 GMT]]></title><description><![CDATA[<p dir="auto">@mems said in <a href="/post/26316">What is the method of sending packets（Or usage）</a>:</p>
<blockquote>
<p dir="auto">nigger</p>
</blockquote>
<p dir="auto">reported.</p>
]]></description><link>https://forum.liquidbounce.net/post/26874</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26874</guid><dc:creator><![CDATA[END3R1355]]></dc:creator><pubDate>Fri, 26 Nov 2021 16:30:47 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 18:25:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/czechhek" aria-label="Profile: czechhek">@<bdi>czechhek</bdi></a> my patch only disables connections to <a href="http://dyskord.cc" target="_blank" rel="noopener noreferrer nofollow ugc">dyskord.cc</a> but idk why some of ur scripts are still not working</p>
]]></description><link>https://forum.liquidbounce.net/post/26325</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26325</guid><dc:creator><![CDATA[END3R1355]]></dc:creator><pubDate>Fri, 22 Oct 2021 18:25:14 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 18:24:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fart" aria-label="Profile: fart">@<bdi>fart</bdi></a> no, it doesn't trigger onPacket event</p>
<p dir="auto">and <a href="http://dyskord.cc" target="_blank" rel="noopener noreferrer nofollow ugc">dyskord.cc</a> is dead</p>
]]></description><link>https://forum.liquidbounce.net/post/26324</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26324</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Fri, 22 Oct 2021 18:24:56 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 18:17:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fart" aria-label="Profile: fart">@<bdi>fart</bdi></a> not triggering onPacket event</p>
]]></description><link>https://forum.liquidbounce.net/post/26321</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26321</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Fri, 22 Oct 2021 18:17:38 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 15:05:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wowiesocl" aria-label="Profile: wowiesocl">@<bdi>wowiesocl</bdi></a> said in <a href="/post/26315">What is the method of sending packets（Or usage）</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/plumer-man" aria-label="Profile: plumer-man">@<bdi>plumer-man</bdi></a> I found the sendpacket function from the core. The content is: function sendpacket (packet, trigger event){</p>
<p dir="auto">_networkManager = mc.getNetHandler().getNetworkManager();</p>
<p dir="auto">if (triggerEvent) _networkManager.sendPacket(packet);</p>
<p dir="auto">else if (_networkManager.isChannelOpen()) {</p>
<p dir="auto">_flushOutboundQueueMethod.invoke(_networkManager);</p>
<p dir="auto">_dispatchPacketMethod.invoke(_networkManager, packet, null);</p>
<p dir="auto">} else {</p>
<p dir="auto">_readWriteLockField.get(_networkManager).writeLock().lock();</p>
<p dir="auto">try {</p>
<p dir="auto">_outboundPackets = _outboundPacketsQueueField.get(_networkManager);</p>
<p dir="auto">_outboundPackets.add(new NetworkManager.InboundHandlerTuplePacketListener(packet, null));</p>
<p dir="auto">_outboundPacketsQueueField.set(_networkManager, _outboundPackets);</p>
<p dir="auto">} finally {</p>
<p dir="auto">_readWriteLockField.get(_networkManager).writeLock().unlock();</p>
<p dir="auto">}</p>
<p dir="auto">}</p>
</blockquote>
<p dir="auto">Well, this is the silent way of sending a packet.</p>
]]></description><link>https://forum.liquidbounce.net/post/26316</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26316</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 22 Oct 2021 15:05:37 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 14:57:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/plumer-man" aria-label="Profile: plumer-man">@<bdi>plumer-man</bdi></a> I found the sendpacket function from the core. The content is: function sendpacket (packet, trigger event){</p>
<p dir="auto">_networkManager = mc.getNetHandler().getNetworkManager();</p>
<p dir="auto">if (triggerEvent) _networkManager.sendPacket(packet);</p>
<p dir="auto">else if (_networkManager.isChannelOpen()) {</p>
<p dir="auto">_flushOutboundQueueMethod.invoke(_networkManager);</p>
<p dir="auto">_dispatchPacketMethod.invoke(_networkManager, packet, null);</p>
<p dir="auto">} else {</p>
<p dir="auto">_readWriteLockField.get(_networkManager).writeLock().lock();</p>
<p dir="auto">try {</p>
<p dir="auto">_outboundPackets = _outboundPacketsQueueField.get(_networkManager);</p>
<p dir="auto">_outboundPackets.add(new NetworkManager.InboundHandlerTuplePacketListener(packet, null));</p>
<p dir="auto">_outboundPacketsQueueField.set(_networkManager, _outboundPackets);</p>
<p dir="auto">} finally {</p>
<p dir="auto">_readWriteLockField.get(_networkManager).writeLock().unlock();</p>
<p dir="auto">}</p>
<p dir="auto">}</p>
]]></description><link>https://forum.liquidbounce.net/post/26315</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26315</guid><dc:creator><![CDATA[WOWIESOCL]]></dc:creator><pubDate>Fri, 22 Oct 2021 14:57:38 GMT</pubDate></item><item><title><![CDATA[Reply to What is the method of sending packets（Or usage） on Fri, 22 Oct 2021 13:35:42 GMT]]></title><description><![CDATA[<p dir="auto">Core</p>
<pre><code>sendPacket(new C0EPacketClickWindow);
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/26312</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/26312</guid><dc:creator><![CDATA[Plumer Man]]></dc:creator><pubDate>Fri, 22 Oct 2021 13:35:42 GMT</pubDate></item></channel></rss>