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

Plutonium

dontknowletsplundefined

dontknowletspl

@dontknowletspl
About
Posts
337
Topics
22
Shares
0
Groups
0
Followers
90
Following
9

Posts

Recent Best Controversial

  • [Release] [Zombies] Black Ops 2 Alternative Ammo Types
    dontknowletsplundefined dontknowletspl

    @Marvin-Diaz should be fixed now. report back if it still kills you or other players since i do not have time to test it.

    BO2 Modding Releases & Resources

  • A Simple Pause Script for BO2 Zombies
    dontknowletsplundefined dontknowletspl

    hima_simple should maybe change

    level.gamestate setText("");
    

    to

    level.gamestate destroy();
    
    BO2 Modding Support & Discussion

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    Bickylotheboist black ops 2 and bo2 are boht same game..

    BO2 Modding Releases & Resources

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    Bickylotheboist Cannot really help you if you do not provide any information about the files being in correct folders.. all i can say use the installion script again and only play in custom games. (it is working fine for me so it should work fine for you aswell)

    BO2 Modding Releases & Resources

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    lilpoop yes the maps are set with dvar in the .lua file. In this case lab is

    set CUSTOM_MAP 5
    

    on dedicated server the .lua file is not there to set the dvar so it load up any map that is on the server.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    dontknowletsplundefined dontknowletspl

    @Altansar-exe the code was missing some wait time in tomb thats why it was not working it is updated now and should work fine.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    dontknowletsplundefined dontknowletspl

    Kalitos this is fixed now but may cause issues with firesale powerup.

    BO2 Modding Releases & Resources

  • Any chance of controller only lobbies?
    dontknowletsplundefined dontknowletspl

    TheRevvX you could always host your own server which kick players who do not use controller.

    This is just example script and you should modify it as you like.

    ( player will be kicked if he tries to type in chat in game )

    #include maps/mp/gametypes/_hud_util;
    #include maps/mp/_utility;
    #include common_scripts/utility;
    init()
    {        
        level thread onplayerconnect();
    }
    
    onplayerconnect()
    {
        for ( ;; )
        {
            level waittill( "connected", player );
            player thread check_controller();
        }        
    }
    
    check_controller()
    {
        level endon("end_game"); //able to type when end game
        self endon("disconnect");
        for(;;)
        {
            if(!self GamepadUsedLast()) 
            {
                iprintln("^1" + self.name + "^7 has been kicked for not using controller");
                wait 2;
                kick( self getentitynumber(), "EXE_PLAYERKICKED" );
                break;
            }
            wait 1;
        }
    }
    
    General Discussion

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    TheBoyDex like the install guide says you have to reinstall the files after every update and use the "Start Plutonium without update.bat" file so the updater does not remove the needed files.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    TheBoyDex can you be more specific? maybe add picture because i have no idea what you mean by private file.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Black Ops 2 Chaos Mode
    dontknowletsplundefined dontknowletspl

    Caguamita when does it crash? have you tested it in other maps? for me it is working fine in origins.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    dontknowletsplundefined dontknowletspl

    Kalitos there should not be anything in the script that block the box from moving so make sure that your other scripts does not have dvar like setdvar( "magic_chest_movable", "0" ); because once it is set you have to set it back to 1 if you want the box to move.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Black Ops 2 Nacht Der Untoten
    dontknowletsplundefined dontknowletspl

    *Bbngamer34*

    are you sure its my map which does this? there is nothing in the code that changes the speed more then it originally would.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] "Custom Survival Maps" option for custom games
    dontknowletsplundefined dontknowletspl

    depdog i think you are the same guy who asked help on discord. issue was that you were using perks in box and custom survival maps scripts and some maps have same check that perks in box has and that makes box give double model.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Black Ops 2 Alternative Ammo Types
    dontknowletsplundefined dontknowletspl

    guyiguess Fixed

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Black Ops 2 Alternative Ammo Types
    dontknowletsplundefined dontknowletspl

    iGuitarRayi

    Thank you for reporting this problem. Did not have time to test it in all maps when i made it this is why i forgot to add leroys damagecallback. it is now fixed and link is updated.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    dontknowletsplundefined dontknowletspl

    NexT-_McDonalds it is working fine for me in mob of the dead. i tested with server and private match. so next question is are you using some other mods which may cause issues with this script and because of that crash the game.

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    dontknowletsplundefined dontknowletspl

    NexT-_McDonalds well this is weird because there is nothing that affects players reviving but i will have a look if i can figure out what the issue is.

    are you using this on server or in private match?

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Rooftop/Bridge - Custom survival maps
    dontknowletsplundefined dontknowletspl

    @AD-BOY7 you can share ideas in #suggestions channel

    https://discord.gg/mtAsvArAJD

    BO2 Modding Releases & Resources

  • [Release] [Zombies] Rooftop/Bridge - Custom survival maps
    dontknowletsplundefined dontknowletspl

    @AD-BOY7 said in [Release] [Zombies] Rooftop/Bridge - Custom survival maps:

    você já adicionou um jeito de fazer upgrade no tomarolk

    not yet sorry.

    you can share ideas what i could use so player can upgrade the tomahawk

    BO2 Modding Releases & Resources
  • 1
  • 2
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 13 / 17
  • Login

  • Don't have an account? Register

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