<?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[Enhanced StaminUp]]></title><description><![CDATA[<p dir="auto">This script allows for unlimited sprint when you have StaminUp. Script was based off my <a href="https://forum.plutonium.pw/topic/44761/enhanced-quick-revive">Enhanced Quick Revive</a> which in turn was based off of <a href="https://forum.plutonium.pw/topic/42798/enhanced-speedcola?_=1777703519516">Enhanced Speed Cola</a></p>
<pre><code>#include maps\_utility;
#include common_scripts\utility;
#include maps\_zombiemode_utility;


init()
{

    level thread onPlayerConnect();
    
}

onPlayerConnect()
{
    for(;;)
    {
        level waittill( "connected", player );
        player thread monitorStaminUpPerks();
    }
}

monitorStaminUpPerks()
{
    self endon( "disconnect" );

    for(;;)
    {
        self waittill_any( "perk_acquired", "perk_lost" );

        if ( self HasPerk( "specialty_longersprint" ) )
        {
            if ( !self HasPerk( "specialty_unlimitedsprint" ) )
            {
                self SetPerk( "specialty_unlimitedsprint" );
            }
           
        }
        else
        {
            if ( self HasPerk( "specialty_unlimitedsprint" ) )
            {
                self UnsetPerk( "specialty_unlimitedsprint" );
            }
            
        }
    }
}

perk_give_override( perk )
{
    self SetPerk( perk );

    if ( perk == "specialty_longersprint" )
    {
        self SetPerk( "specialty_unlimitedsprint" );

    }
}

perk_lose_override( perk )
{
    self UnsetPerk( perk );

    if ( perk == "specialty_quickrevive" )
    {
        self UnsetPerk( "specialty_unlimitedsprint" );

    }
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/topic/44780/enhanced-staminup</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 14:37:17 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/44780.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 03 May 2026 17:03:34 GMT</pubDate><ttl>60</ttl></channel></rss>