<?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[Buried - Disable Timebomb to prevent Timebomb Glitch]]></title><description><![CDATA[<p dir="auto">Hello everyone,</p>
<p dir="auto">I cant find any way to disable the Timebomb not in the configs neither as scripts.</p>
<p dir="auto">But the Timebom is abused to such a demand that players suffer from it on other Servers.<br />
So I want to get rid of it.</p>
<p dir="auto">Any Ideas</p>
<p dir="auto">Thank you</p>
<p dir="auto">Shiniri</p>
]]></description><link>https://forum.plutonium.pw/topic/15933/buried-disable-timebomb-to-prevent-timebomb-glitch</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Apr 2026 14:44:41 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/15933.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 21 Nov 2021 02:34:41 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Buried - Disable Timebomb to prevent Timebomb Glitch on Sun, 27 Apr 2025 23:14:05 GMT]]></title><description><![CDATA[<p dir="auto">I'm reviving this old thread, but if you want to disable points duplication while still allowing the timebomb (for EE or regular use), you can use this code, which simply disables points duping. <img src="https://forum.plutonium.pw/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=6b8f0b5ad96" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title="🙂" alt="🙂" /><br />
in <code>scripts/zm/zm_buried</code>:</p>
<pre><code class="language-c">#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\zombies\_zm_utility;
#include maps\mp\gametypes_zm\_hud_util;
#include maps\mp\zombies\_zm_weapons;
#include maps\mp\_visionset_mgr;
#include maps\mp\zombies\_zm_audio;
#include maps\mp\zombies\_zm_blockers;
#include maps\mp\zombies\_zm_laststand;
#include maps\mp\zombies\_zm_weapon_locker;
#include maps\mp\zombies\_zm_magicbox;
#include maps\mp\zombies\_zm_perks;
#include maps\mp\zombies\_zm_score;
#include maps\mp\zombies\_zm_stats;
#include maps\mp\zombies\_zm_equipment;
#include maps\mp\zombies\_zm;
#include maps\mp\zombies\_zm_spawner;
#include maps\mp\animscripts\zm_death;
#include maps\mp\zombies\_zm_ai_basic;


main(){
        replaceFunc(maps\mp\zombies\_zm_weap_time_bomb::_time_bomb_restores_player_data_internal, ::_time_bomb_restores_player_data_internal_override);
}

_time_bomb_restores_player_data_internal_override( save_struct )
{
    self endon( "death" );
    self endon( "disconnect" );

    if ( self maps\mp\zombies\_zm_laststand::player_is_in_laststand() )
    {
        debug_time_bomb_print( "TIMEBOMB &gt;&gt; " + self.name + " in last stand, reviving..." );
        self maps\mp\zombies\_zm_laststand::auto_revive( self );
    }
    else if ( isdefined( self.sessionstate ) &amp;&amp; self.sessionstate == "spectator" )
    {
        self [[ level.spawnplayer ]]();
        self thread refresh_player_navcard_hud();
    }

    if ( isdefined( self.is_drinking ) &amp;&amp; self.is_drinking )
    {
        if ( self has_packapunch_weapon() )
            self.is_drinking++;

        self thread maps\mp\zombies\_zm_perks::perk_abort_drinking( 0.1 );
    }

    if ( self can_time_bomb_restore_data_on_player( save_struct ) )
    {
        debug_time_bomb_print( "TIMEBOMB &gt;&gt; restoring player " + self.name );

        if ( !isdefined( self.time_bomb_save_data ) &amp;&amp; !isdefined( save_struct ) )
            self.time_bomb_save_data = spawnstruct();

        if ( !isdefined( save_struct ) )
            s_temp = self.time_bomb_save_data;
        else
            s_temp = save_struct.player_saves[self getentitynumber()];

        self setorigin( s_temp.player_origin );
        self setplayerangles( s_temp.player_angles );
        self setstance( s_temp.player_stance );
        self thread _restore_player_perks_and_weapons( s_temp );
        n_difference_in_score = s_temp.points_current - self.score;


        // Comment here to avoid points duplication
        
        // if ( n_difference_in_score &gt; 0 )
        //     self maps\mp\zombies\_zm_score::add_to_player_score( n_difference_in_score );
        // else
        //     self maps\mp\zombies\_zm_score::minus_to_player_score( abs( n_difference_in_score ) );

        if ( is_weapon_locker_available_in_game() )
        {
            if ( isdefined( s_temp.weapon_locker_data ) )
                self maps\mp\zombies\_zm_weapon_locker::wl_set_stored_weapondata( s_temp.weapon_locker_data );
            else
                self maps\mp\zombies\_zm_weapon_locker::wl_clear_stored_weapondata();
        }

        if ( isdefined( s_temp.account_value ) &amp;&amp; isdefined( level.banking_map ) )
        {
            self.account_value = s_temp.account_value;
            self maps\mp\zombies\_zm_stats::set_map_stat( "depositBox", self.account_value, level.banking_map );
        }

        s_temp.save_ready = 1;

        if ( !isdefined( save_struct ) )
            self.time_bomb_save_data = s_temp;

        self ent_flag_wait( "time_bomb_restore_thread_done" );
    }
    else
    {
        debug_time_bomb_print( "TIMEBOMB &gt;&gt; restoring player " + self.name + " FAILED. No matching save detected" );
        self restore_player_to_initial_loadout();
    }

    self _give_revive_points( s_temp );
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/post/157383</link><guid isPermaLink="true">https://forum.plutonium.pw/post/157383</guid><dc:creator><![CDATA[ReuS]]></dc:creator><pubDate>Sun, 27 Apr 2025 23:14:05 GMT</pubDate></item><item><title><![CDATA[Reply to Buried - Disable Timebomb to prevent Timebomb Glitch on Mon, 22 Nov 2021 00:06:32 GMT]]></title><description><![CDATA[<p dir="auto">@THS-Shiniri Should work yes.</p>
]]></description><link>https://forum.plutonium.pw/post/63591</link><guid isPermaLink="true">https://forum.plutonium.pw/post/63591</guid><dc:creator><![CDATA[JezuzLizard]]></dc:creator><pubDate>Mon, 22 Nov 2021 00:06:32 GMT</pubDate></item><item><title><![CDATA[Reply to Buried - Disable Timebomb to prevent Timebomb Glitch on Sun, 21 Nov 2021 22:17:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jezuzlizard" aria-label="Profile: JezuzLizard"><bdi>JezuzLizard</bdi></a> said in <a href="/post/63531">Buried - Disable Timebomb to prevent Timebomb Glitch</a>:</p>
<blockquote>
<p dir="auto">scripts/zm/zm_buried</p>
</blockquote>
<p dir="auto">So basically I create a .gsc like this:</p>
<pre><code>//Place into scripts/zm/zm_buried

init() // entry point
{
    level thread onplayerconnect();
}

onplayerconnect()
{
    for(;;)
    {
        level waittill("connected", player);
        player thread onplayerspawned();
    }
}

onplayerspawned()
{
    self endon("disconnect");
    for(;;)
    {
        self waittill("spawned_player");
    }
}

main()
{
	replaceFunc( maps/mp/zombies/_zm_weap_time_bomb::add_time_bomb_to_mystery_box, ::add_time_bomb_to_mystery_box_override );
}

add_time_bomb_to_mystery_box_override()
{
	return;
}
</code></pre>
<p dir="auto">Compile it, place it into the given dir and it should remove the Timebomb entirely from the chest.</p>
<p dir="auto">Did I understand correctly, if yes damn you are my saviour !</p>
<p dir="auto"><img src="/assets/uploads/files/1637533060096-ep00000gif.gif" alt="Ep00000GIF.gif" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.plutonium.pw/post/63584</link><guid isPermaLink="true">https://forum.plutonium.pw/post/63584</guid><dc:creator><![CDATA[THS.Shiniri]]></dc:creator><pubDate>Sun, 21 Nov 2021 22:17:48 GMT</pubDate></item><item><title><![CDATA[Reply to Buried - Disable Timebomb to prevent Timebomb Glitch on Sun, 21 Nov 2021 04:33:23 GMT]]></title><description><![CDATA[<p dir="auto">@THS-Shiniri</p>
<p dir="auto">Put this code in a script in <code>scripts/zm/zm_buried</code>:</p>
<pre><code>main()
{
	replaceFunc( maps/mp/zombies/_zm_weap_time_bomb::add_time_bomb_to_mystery_box, ::add_time_bomb_to_mystery_box_override );
}

add_time_bomb_to_mystery_box_override()
{
	return;
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/post/63531</link><guid isPermaLink="true">https://forum.plutonium.pw/post/63531</guid><dc:creator><![CDATA[JezuzLizard]]></dc:creator><pubDate>Sun, 21 Nov 2021 04:33:23 GMT</pubDate></item></channel></rss>