Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

way2sexyundefined

way2sexy

@way2sexy
About
Posts
9
Topics
4
Groups
0
Followers
3
Following
3

Posts

Recent Best Controversial

  • Black Ops 2 Zombies Reimagined
    way2sexyundefined way2sexy

    is there a way to have the original text font and not the new one?


  • spread + firerate + fog .gsc
    way2sexyundefined way2sexy

    Can someone help me with getting this gsc script to work. It doesn't change in game, I have to go into the console can change each value for it to work.

    #include maps\mp_utility;
    #include common_scripts\utility;
    #include maps\mp\zombies_zm_utility;
    #include maps\mp\gametypes_zm_hud_util;
    
    init()
    {
        level thread on_player_connect();
    }
    
    on_player_connect()
    {
        while(true)
        {
            level waittill("connecting", player);
            player thread on_player_spawned();
        }
    }
    
    on_player_spawned()
    {
        level endon("end_game");
        self endon("disconnect");
    
        self waittill("spawned_player");  // Wait until the player is spawned
        self set_client_dvars();
    }
    
    set_client_dvars()
    {
        self setClientDvar("perk_weapSpreadMultiplier", 0.25);
        self setClientDvar("perk_weapRateMultiplier", 0.65);
        self setClientDvar("r_fog", 0);  // Disable fog
    }
    

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    way2sexyundefined way2sexy

    appreciate what your doing for this community! use to love playing this and kind of got burnt out. since playing with this mod and the perk one its come back. do you have an idea when they mods will be combined?


  • ZM- raygun mark2 + semtex on spawn
    way2sexyundefined way2sexy

    second script i made.

    semtex only equips on maps that have them.

    how to use in game↓

    WIN+R : %localappdata% -> search plutonium, storage, t6, scripts, zm.
    create the folder if you cannot find the folder scripts or zm.

    #include maps\mp\zombies\_zm_utility;
    #include maps\mp_utility;
    #include common_scripts\utility;
    #include maps\mp\gametypes_zm_hud_util;
    #include maps\mp\gametypes_zm_hud_message;
    #include maps\mp\zombies\_zm_weapons;
    
    init()
    {
    	level thread onplayerconnect();
    }
    
    onplayerconnect()
    {
    	for(;;)
    	{
    		level waittill("connected", player);
    		player thread onplayerspawned();
    	}
    }
    
    onplayerspawned()
    {
    	self endon("disconnect");
    	for(;;)
    	{
    		self waittill("spawned_player");
    		self giveweapon("raygun_mark2_zm");
    		self switchtoweapon("raygun_mark2_zm");
    		self takeweapon(self get_player_lethal_grenade());
    		self set_player_lethal_grenade("sticky_grenade_zm");
    		self giveweapon(self get_player_lethal_grenade());
    		self setweaponammoclip(self get_player_lethal_grenade(), 4);
    	}
    }
    
  • 1 / 1
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate