<?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[Smooth Anims]]></title><description><![CDATA[<p dir="auto">Can someone help me with this i am trying the bind and it all works everything is smooth but its not doing the smooth animation in this case im reloading then pressing my bind and that makes it look like a reverse reload but its not doing the smooth animation and i cant figure out why all its doing is swapping like a YY.</p>
<p dir="auto">dosmooth()<br />
{<br />
if( self.smooth == 0 )<br />
{<br />
self iprintln( "Smooth Anims: ^6ON" );<br />
self thread smoothanimations1();<br />
self.smooth = 1;<br />
}<br />
else<br />
{<br />
self iprintln( "Smooth Anims: ^6OFF" );<br />
self notify( "stopSmooth" );<br />
self.smooth = 0;<br />
}</p>
<p dir="auto">}</p>
<p dir="auto">smoothanimations1()<br />
{<br />
self endon( "stopSmooth" );<br />
self endon( "disconnect" );<br />
self iprintlnbold( "^6Press [{+actionslot 1}] to use smooth animations" );<br />
self thread smoothloop();<br />
for(;;)<br />
{<br />
self waittill( "dosmooth" );<br />
wait 0.05;<br />
self unlink();<br />
self disableweapons();<br />
wait 0.05;<br />
self enableweapons();<br />
wait 0.05;<br />
self unlink();<br />
}</p>
<p dir="auto">}</p>
<p dir="auto">smoothloop()<br />
{<br />
self endon( "disconnect" );<br />
level endon( "game_ended" );<br />
for(;;)<br />
{<br />
if( self actionslotonebuttonpressed() )<br />
{<br />
self notify( "dosmooth" );<br />
}<br />
wait 0.05;<br />
}</p>
<p dir="auto">}</p>
]]></description><link>https://forum.plutonium.pw/topic/45467/smooth-anims</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Jul 2026 15:16:45 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/45467.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Jul 2026 22:49:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Smooth Anims on Sat, 11 Jul 2026 07:26:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/youtube-meckz" aria-label="Profile: YouTube Meckz"><bdi>YouTube Meckz</bdi></a> also your code can be alot shorter here should still work the same</p>
<pre><code>dosmooth()
{
	if(!isDefined(self.smooth))
	{
		self.smooth = true;
		self iprintln("Smooth Anims: ^6ON");
		self thread smoothanimations();
	}
	else
	{
		self.smooth = undefined;
		self iprintln("Smooth Anims: ^6OFF");
		self notify("stop_smooth");
	}
}

smoothanimations()
{
    self endon("stop_smooth");
    self endon("disconnect");

    self iprintlnbold("^6Press [{+actionslot 1}] to use smooth animations");

    for (;;)
    {
        if (self actionSlotOneButtonPressed())
        {
            self disableWeapons();
            wait 0.05;
            self enableWeapons();
            wait 0.05;
        }
        wait 0.05;
    }
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/post/174533</link><guid isPermaLink="true">https://forum.plutonium.pw/post/174533</guid><dc:creator><![CDATA[m7574z]]></dc:creator><pubDate>Sat, 11 Jul 2026 07:26:50 GMT</pubDate></item><item><title><![CDATA[Reply to Smooth Anims on Sat, 11 Jul 2026 07:05:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/youtube-meckz" aria-label="Profile: YouTube Meckz"><bdi>YouTube Meckz</bdi></a> because enabling and disabling your weapon is taking your weapon then giving you it essentially that's why it does the yy look, it will always do that because that's what you're calling from this bind. its hard to understand what your wanting from this code lol you say it works smooth but what's up with the reloading before hand any context and i might be able to help you</p>
]]></description><link>https://forum.plutonium.pw/post/174530</link><guid isPermaLink="true">https://forum.plutonium.pw/post/174530</guid><dc:creator><![CDATA[m7574z]]></dc:creator><pubDate>Sat, 11 Jul 2026 07:05:07 GMT</pubDate></item></channel></rss>