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

Plutonium

mikzyundefined

mikzy

Banned
About
Posts
308
Topics
29
Shares
0
Groups
0
Followers
65
Following
34

Posts

Recent Best Controversial

  • Is it still worth buying BO2 on Steam?
    mikzyundefined mikzy

    LambdaHidden that wonder weapon pack sounds cool

    General Discussion

  • [Support] Pause endgame for map vote?
    mikzyundefined mikzy

    Brad If this helps, you could maybe look here: https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer/blob/master/patch_mp/maps/mp/gametypes/_killcam.gsc

    BO2 Modding Support & Discussion

  • Is this legal?
    mikzyundefined mikzy

    We plan to stop serving the files for that very reason

    😱

    General Discussion question

  • [Support] Pause endgame for map vote?
    mikzyundefined mikzy

    Brad So, if you didnt have a voting system or any GSC, it would normally rotate map from server config or send you back to lobby. I think what Matrix did is make it so it doesn't call the maprotation command from the server config and basically nothing happens. So, without the voting system and (maybe Matrix's changes), the game would be paused like that forever. Adding the voting system might call the maprotate command instead and make it all work. I have no clue.

    BO2 Modding Support & Discussion

  • Lots of hackers today in BO2
    mikzyundefined mikzy

    Lots of the cheaters tend to change their name or XUID spoof. I don't think they can really do anything about it at the moment until the anticheat is officially released.

    General Discussion

  • [Resource] Trickshotting GSC LIST!
    mikzyundefined mikzy

    This looks better and performs well. Thanks for the contribution!

    BO2 Modding Releases & Resources gsc black ops 2 slides

  • [Question] Freezetag Custom Gamemode
    mikzyundefined mikzy

    While doing VIP testing for new Plutonium update, we were talking about freezetag and I think it would be cool to have in IW5. This looks pretty fun and looks like something thats possible to do.

    https://www.youtube.com/watch?v=JT7WPFRDqHg

    If anyone wants to take the challenge and do it, here you go!

    MW3 Modding Support & Discussion

  • [Resource] Trickshotting GSC LIST!
    mikzyundefined mikzy

    Deicide This is cool. Thank you for the contribution. However, the Change Class+ function you gave, that would have to be called from a menu or a bind. The change class function in this trickshotting list is so that whenever you change class, without a bind or function calling it, just in general, then it executes that code. Either way, your functions are still cool 🙂

    BO2 Modding Releases & Resources gsc black ops 2 slides

  • [Support] can't get last cooldown to work in game?
    mikzyundefined mikzy

    Zedkays Dont mind messy code but here's how you would do barrel stuff protection, snipers only, and Last Cooldown.

    On your init, put level.onPlayerDamage = ::onPlayerDamage;

    Then, somewhere in your script, put this.

    onplayerdamage( einflictor, eattacker, idamage, idflags, smeansofdeath, sweapon, vpoint, vdir, shitloc, psoffsettime )
    {
    	weaponClass = self getWeaponClass( sweapon );
    	if(weaponClass == "weapon_sniper")
    	{
    		if((int(distance(self.origin, eattacker.origin)*0.0254) < 20 ) && eattacker.pers["kills"] == 9 ) // barrel stuff protection
    		{
    			iDamage = 0; // barrel stuff protection ON and last = true
    		}
    		else
    		{
    			self.health = 1;
    			
    			/* ^^ It's a Barrel Stuff but since Person isn't on last,
    			we are going to make the Victim's health still 1 so they
    			can get to last. */
    			
    			if (smeansofdeath != "MOD_SUICIDE" && smeansofdeath != "MOD_TRIGGER_HURT" && ((level.scorelimit - eattacker.pers["kills"]) == 2) )
    			{
    				eattacker thread onLastReached();
    			}
    			
    			/* ^^ If Suicide or Trigger_Hurt, the Last Reached thread
    			will not be called. But, if not Suicide or Trigger_Hurt and
    			Person is 1 kill away from last, lets thread the onlastreach
    			(Last Cooldown) to let them know they are at last. */
    			
    		}
    	}
    	return iDamage;
    }
    
    onLastReached() 
    {
        self endon( "disconnect" );
        self endon( "cooldownSet" );
           
        for(;;) 
    	{
    	self freezeControls( true );
    	self iprintlnbold("Last ^2Cooldown");
            wait 1.5;
            self freezeControls( false );
            self notify( "cooldownSet" );
    	}
    }
    
    BO2 Modding Support & Discussion gsc black ops 2

  • [RELEASE] Ranks Plus v2 - Tic-Tac-Towo Update
    mikzyundefined mikzy

    UnOfficial huh weird

    MW3 Modding Releases & Resources

  • forum profile not updating
    mikzyundefined mikzy

    Fixed. Close

    General Discussion

  • forum profile not updating
    mikzyundefined mikzy

    i can update my bio, location, etc but cannot update my cover picture and pfp. anyone else?

    General Discussion

  • [RELEASE] Ranks Plus v2 - Tic-Tac-Towo Update
    mikzyundefined mikzy

    LUA looks so nice to mess with but im just terrible 😀
    I saw it all around BO3 and im just too lazy to touch it.

    MW3 Modding Releases & Resources

  • please can you help everytime i launch mw3 plutonuim this pops up
    mikzyundefined mikzy

    diszsy have you done everything mr android said? latest version? tried reinstalling?

    MW3 Client Support

  • please can you help everytime i launch mw3 plutonuim this pops up
    mikzyundefined mikzy

    diszsy yes plz show!!!

    MW3 Client Support

  • please can you help everytime i launch mw3 plutonuim this pops up
    mikzyundefined mikzy

    diszsy did it work

    MW3 Client Support
  • 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