<?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 Quick Revive]]></title><description><![CDATA[<p dir="auto">This script uses a unused perk <code>specialty_healthregen</code> to make you heal almost instantly (does not affect the time it takes to start healing). you can check it using a health hud of your choice. Write this code in your %localappdata%\Plutonium\storage\t6\raw\scripts\zm folder,  naming it anything with a .gsc prefix.</p>
<p dir="auto">Was inspired and used code from <a href="https://forum.plutonium.pw/topic/42798/enhanced-speedcola?_=1777703519516">Enhanced SpeedCola</a> by <a class="plugin-mentions-user plugin-mentions-a" href="/user/demios4w4" aria-label="Profile: Demios4w4"><bdi>Demios4w4</bdi></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 monitorQuickRevivePerks();
    }
}

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

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

        if ( self HasPerk( "specialty_quickrevive" ) )
        {
            if ( !self HasPerk( "specialty_healthregen" ) )
            {
                self SetPerk( "specialty_healthregen" );
            }
           
        }
        else
        {
            if ( self HasPerk( "specialty_healthregen" ) )
            {
                self UnsetPerk( "specialty_healthregen" );
            }
            
        }
    }
}

perk_give_override( perk )
{
    self SetPerk( perk );

    if ( perk == "specialty_quickrevive" )
    {
        self SetPerk( "specialty_healthregen" );

    }
}

perk_lose_override( perk )
{
    self UnsetPerk( perk );

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

    }
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/topic/44761/enhanced-quick-revive</link><generator>RSS for Node</generator><lastBuildDate>Mon, 04 May 2026 00:53:02 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/44761.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 02 May 2026 06:38:09 GMT</pubDate><ttl>60</ttl></channel></rss>