<?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[1911 50&#x2F;50 C93]]></title><description><![CDATA[<p dir="auto">With this code, you'll have a 50/50 chance of starting and respawning with either the 1911 or the C93 from Origins, and you'll start with a full magazine of your starting weapon's ammo. To use this, you'll need the “zm_expanded” or “zm_weapons” mod.</p>
<hr />
<p dir="auto">Con este código, tendrás un 50/50 de iniciar y reaparecer con 1911 o con la C93 de origins, a su vez que iniciaras con la munición del arma inicial al máximo, para esto tienes que tener el mod de "zm_expanded" o "zm_weapons".</p>
<p dir="auto"><a href="https://forum.plutonium.pw/topic/42656/release-zm-mod-zm_expanded-combining-zm_weapons-zm_perks-into-1-mod?_=1781481492517">https://forum.plutonium.pw/topic/42656/release-zm-mod-zm_expanded-combining-zm_weapons-zm_perks-into-1-mod?_=1781481492517</a></p>
<pre><code>#include maps\mp\zombies\_zm_utility;
#include maps\mp\_utility;
#include common_scripts\utility;

init()
{
    level thread on_player_connect();
}

on_player_connect()
{
    for(;;)
    {
        level waittill("connected", player);
        player thread assign_random_starter();
    }
}

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

    for(;;)
    {
        self waittill("spawned_player");
        
        weapons = self GetWeaponsListPrimaries();
        foreach (weap in weapons)
        {
            self TakeWeapon(weap);
        }

        if (RandomInt(100) &lt; 50)
        {
            self GiveWeapon("m1911_zm");
            self GiveMaxAmmo("m1911_zm");
            self SwitchToWeapon("m1911_zm");
        }
        else
        {
            self GiveWeapon("c96_zm");
            self GiveMaxAmmo("c96_zm");
            self SwitchToWeapon("c96_zm");
        }
    }
}
</code></pre>
]]></description><link>https://forum.plutonium.pw/topic/45154/1911-50-50-c93</link><generator>RSS for Node</generator><lastBuildDate>Mon, 22 Jun 2026 01:55:22 GMT</lastBuildDate><atom:link href="https://forum.plutonium.pw/topic/45154.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 Jun 2026 00:05:51 GMT</pubDate><ttl>60</ttl></channel></rss>