<?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[[RELEASE] No Overheat Jet Gun&#x2F;Paralyzer]]></title><description><![CDATA[<p dir="auto">Here is a simple toggle on/off function for those who were wanting to have a no overheat/unlimited Jet Gun or Paralyzer works for both depending on what weapon your using. Example shown is with Jet Gun but works with Paralyzer non pap and pap'd.</p>
<p dir="auto"><img src="/assets/uploads/files/1770386447091-t6zmnooverheat1-resized.png" alt="t6zmnooverheat1.png" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1770386459282-t6zmnooverheat2-resized.png" alt="t6zmnooverheat2.png" class=" img-fluid img-markdown" /></p>
<pre><code>mzNoOverheatToggle()
{
    if(!isDefined(self.mznooverheat))
    {
        self.mznooverheat = true;
        if(!isDefined(level.jetgun_explode_original))
        {
            level.jetgun_explode_original = level.explode_overheated_jetgun;
        }
        self thread mzNoOverheat();
        self iprintln("No Overheat: ^2Enabled");
    }
    else
    {
        self.mznooverheat = undefined;
        self notify("mz_nooverheat_end");
        if(isDefined(level.jetgun_explode_original))
        {
            level.explode_overheated_jetgun = level.jetgun_explode_original;
        }
        self iprintln("No Overheat: ^1Disabled");
    }
}

mzNoOverheat()
{
    self endon("disconnect");
    self endon("mz_nooverheat_end");
    
    while(true)
    {
        currentWeapon = self getCurrentWeapon();
        
        if(currentWeapon == "slowgun_zm" || currentWeapon == "slowgun_upgraded_zm")
        {
            self setWeaponOverHeating(0, 0);
        }
        else if(currentWeapon == "jetgun_zm")
        {
            self setWeaponOverHeating(0, 0);
            level.explode_overheated_jetgun = false;
        }
        
        wait 0.05;
    }
}
</code></pre>
<p dir="auto">Video clip <a href="https://youtu.be/1TeGK8jNUbc" target="_blank" rel="noopener noreferrer nofollow ugc">link</a></p>
]]></description><link>https://forum.plutonium.pw/topic/43987/release-no-overheat-jet-gun-paralyzer</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 17:06:23 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/43987.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Feb 2026 14:05:23 GMT</pubDate><ttl>60</ttl></channel></rss>