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

  • Banned for no reason?
    mikzyundefined mikzy

    cohkeyy maybe a staff will reply but you don't "Get banned for no reason". you did something, and it's best to come forward and not to lie about it. either way, you need to wait out the ban.

    General Discussion

  • Banned for no reason?
    mikzyundefined mikzy

    were you banned from a server or the launcher

    General Discussion

  • [Request] Chat bank
    mikzyundefined mikzy

    stupid and lame to do. but if you really cared, you could see if a dev would do it for you. even then, chances are likely non as this is stupid

    BO2 Modding Support & Discussion

  • If i want to start a trickshot server how do I add barrel stuff protection and other features that are on other trickshot servers
    mikzyundefined mikzy

    I used to be like this a year ago, so I'd feel bad if I didn't help out.
    But if I help you out, please learn GSC. It's nice to know and I learned it over the course of 2020 and I can type it away like it's nothing now.

    This works for the DSR50, and if you are not on last and you are close, it will do damage. But if you are on last and you are close, it won't do damage.

    Add this to init()

    level.playerDamageStub = level.callbackplayerdamage;
    level.callbackplayerdamage = ::Callback_PlayerDamageHook;
    

    Add this function anywhere in your code:

    Callback_PlayerDamageHook( einflictor, eattacker, idamage, idflags, smeansofdeath, sweapon, vpoint, vdir, shitloc, timeoffset, boneindex) {
     
        IsClose = Distance( self.origin, eattacker.origin ) < 400; // barrel stuff
        OnLast = (level.scorelimit - attacker.pers["kills"]) == 1;
     
        if( smeansofdeath != "MOD_TRIGGER_HURT" && smeansofdeath != "MOD_FALLING" && smeansofdeath != "MOD_SUICIDE" ) {
            if( IsSubStr( sweapon, "dsr50" ) && IsClose ) {
                if (OnLast)
                    idamage = 0;
                else
                    idamage = 10000000;
            else
                idamage = 0;
        }
    
        [[level.playerDamageStub]]( einflictor, eattacker, idamage, idflags, smeansofdeath, sweapon, vpoint, vdir, shitloc, timeoffset, boneindex );
    }
    
    BO2 Modding Support & Discussion

  • what does this mean
    mikzyundefined mikzy

    calling him rn, he got it fixed. you can lock if you need to

    Launcher Support

  • Error : client command overflow
    mikzyundefined mikzy

    What servers does this happen in? Need to know as i'm looking into this error.

    BO2 Client Support

  • [Release] Kaede Calling Card
    mikzyundefined mikzy

    bo2 plutonium custom calling card. replaces default calling card. its kaede from "Rascal Does Not Dream Of Bunny Senpai". no im not a weeb so dont even ask

    preview:
    alt text

    to use, download it and put this in your t6r/data/images folder.
    (if images doesn't exist, create it)

    download: https://mikzy.me/files/kaede/emblem_bg_default.iwi
    (if you wanna just see my release page, check here: https://mikzy.me/v2/plutonium/releases)

    BO2 Modding Releases & Resources

  • [Support] Pausing zombies game
    mikzyundefined mikzy

    HasjBlok Want to listen for chat commands? Example: if someone says "hi" in chat, you can check it in gsc?

    Use this repository here: https://github.com/fedddddd/t6-gsc-utils
    (This is meant to be a server plugin. It compiles as a dll, and goes into t6r/data/plugins. Do not inject this clientside)

    Made by fed, it adds IO functions and chat listeners into GSC with waittills.

    BO2 Modding Support & Discussion

  • Zombies zombie counter gsc problems
    mikzyundefined mikzy
    #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_utility;
    
    init()
    {
        level thread drawZombiesCounter();
    }
    
    drawZombiesCounter()
    {
        level.zombiesCounter = createServerFontString("hudsmall" , 1.2);
        level.zombiesCounter setPoint("CENTER", "CENTER", "CENTER", 190);
        while(true)
        {
        	enemies = get_round_enemy_array().size + level.zombie_total;
            if ( enemies <= 3 )
            	level.zombiesCounter.label = &"Zombies: ^3";
            else if( enemies != 0 )
                level.zombiesCounter.label = &"Zombies: ^2";
            else
            	level.zombiesCounter.label = &"Zombies: ^1";
            level.zombiesCounter setValue( enemies );
            wait 0.05;
        }
    }
    
    BO2 Modding Support & Discussion

  • [Resource] BO2 T6 Custom Texture Pack/Resources
    mikzyundefined mikzy

    nanoh This pack was deleted by accident and half of the files are gone now...

    BO2 Modding Releases & Resources

  • How sexy would this be? 👀
    mikzyundefined mikzy

    Slxxpy cool design

    General Discussion

  • [FEATURE] League Play in BO2
    mikzyundefined mikzy

    @turbofast i think stuff like CPL is doing this from a community aspect and automating the whole process and tracking ELO and stats, etc. i think Plutonium doing it officially would be cool, but it's a waste of time as community projects are already so far into doing this.

    (CPL is a COD Competitive League that is going to have servers you can queue into for Ranked gameplay)

    General Discussion

  • [Release] Playstation Controller UI Buttons for T6
    mikzyundefined mikzy

    Pistakilla looks nice

    BO2 Modding Releases & Resources

  • A couple of reasons why AW should get a client
    mikzyundefined mikzy

    Kitchen Gun don't think it has mod support, so mod support is what you could add. dedicated servers too if it doesn't have it either. plutonium can also fix any bugs the steam version has.

    General Discussion

  • intervention in snipezone rust
    mikzyundefined mikzy

    @Fr-Quikn i think you need to contact the server owners about it?

    General Discussion

  • Some maps won't load. ZOMBIES.
    mikzyundefined mikzy

    don't think you are missing zones but it may be the server? or your connection?

    BO2 Client Support

  • Failed to update file bin/discord_game_sdk.dll
    mikzyundefined mikzy

    looks like you are just missing the discord game sdk which is what plutonium uses to do discord integration stuff like the presence. if you can't download it, you probably have one of the following:

    • your firewall (antivirus) is blocking it
    • you have a VPN/proxy on

    you can also try reinstalling plutonium.exe and doing it again to see if it works.

    Launcher Support

  • BO2 GSC Map Selection System (not really mapvote)
    mikzyundefined mikzy

    Sorex ??? of course its not usable with no map rotation.

    BO2 Modding Support & Discussion
  • 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