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

Plutonium

Kalitosundefined

Kalitos

@Kalitos
About
Posts
872
Topics
38
Shares
0
Groups
0
Followers
105
Following
25

Posts

Recent Best Controversial

  • [MAP] Summit from COD:OL
    Kalitosundefined Kalitos

    Artyx Will you fix the download link?

    MW3 Modding Releases & Resources

  • Bo2 DLC
    Kalitosundefined Kalitos

    SapzXD no

    BO2 Client Support

  • [ZM] Highest Round Tracker Error
    Kalitosundefined Kalitos

    MetalThunder At the moment t6 only stores the logs files in the "t6" folder, the rest is handled in the old folder.

    BO2 Modding Support & Discussion

  • Commands Bo2 (T6)
    Kalitosundefined Kalitos

    FakerHisSon95 https://forum.plutonium.pw/topic/25278/release-zombies-mustbeafk-simple-customizable-afk-system?_=1688646185520

    BO2 Server Hosting Support

  • BO1-Zombies?
    Kalitosundefined Kalitos

    Urielk12 Recomiendo que revises el discord amigo.
    ce5bf0cb-a762-4f31-8cbc-5149e5dd96a2-image.png

    Temas De Español

  • how to run bo2 zombies offline
    Kalitosundefined Kalitos

    im_foken_stup https://forum.plutonium.pw/topic/30141/offline-launcher-for-plutonium

    BO2 Client Support

  • Assign a script to another server - how?
    Kalitosundefined Kalitos

    MrGamerPros You can add a check in the main function to differentiate which server to run the script on. You can do it by differentiating the ports of each one.
    getdvar("net_port")

    BO2 Modding Support & Discussion

  • Changing max player for S&D Lobby
    Kalitosundefined Kalitos

    YANK Ocean You must remove "//" from the line for the server to take that configuration.
    1f87721e-481e-4ba5-98d1-6079c4f4cefc-image.png

    BO2 Server Hosting Support

  • Puedo ser baneado por esto?
    Kalitosundefined Kalitos

    Rewinds22 los mods que tu instales no funcionarán en servidores públicos, solo en partidas privadas. A menos que seas propietario del servidor y lo instales en él.
    Mods para que funcionen en servidores deben instalarse en el servidor.
    Y serás baneado si haces algo que modifique el juego a nivel de la memoria como injectar algo.

    Temas De Español

  • I need help
    Kalitosundefined Kalitos

    A error is giving you your game.

    BO2 Client Support

  • how to change juggernog max health ?
    Kalitosundefined Kalitos

    MH11

            //jugg health bonus
    	level.juggHealthBonus = getDvarIntDefault( "juggHealthBonus", 160 );
    	level.zombie_vars[ "zombie_perk_juggernaut_health" ] = level.juggHealthBonus;	
    	//perma jugg health bonus 
    	level.permaJuggHealthBonus = getDvarIntDefault( "permaJuggHealthBonus", 190 );
    	level.zombie_vars[ "zombie_perk_juggernaut_health_upgrade" ] = level.permaJuggHealthBonus;
    
    BO2 Modding Support & Discussion

  • bo2 custom server fatal error
    Kalitosundefined Kalitos

    dc_sj_pe It may be due to missing game files. Make sure you have all the files. If you got the game on steam, check the files.

    BO2 Server Hosting Support

  • se congela el bo2 cuando me intento unir a un servidor ayuda
    Kalitosundefined Kalitos

    Megatron9987 Suele pasar cuando no dejas cargar por completo la lista de servidores. Ya sea en MP o ZOMBIES. Deja cargar toda la lista de servidores y luego entra

    Temas De Español

  • Anyone knows how to fix this?
    Kalitosundefined Kalitos

    TahjGadd It's not an error, that object doesn't work in that game mode.

    BO2 Client Support

  • why wont my server start
    Kalitosundefined Kalitos

    olivermoe7 said in why wont my server start:

    config file %s not found.

    I think that's where the problem is

    BO2 Server Hosting Support

  • alguien sabe como meter mas perks en un mapa?
    Kalitosundefined Kalitos

    TheMast001 https://github.com/whydoesanyonecare/Plutonium-versions-of-T6-custom-survival-maps
    También puedes usar estos scriptcomo base y revisar el gsc para añadir más perks personalizados.

    Temas De Español

  • bo2 bot names
    Kalitosundefined Kalitos

    @venezia-azic If the file does not exist, just create
    %localappdata%\Plutonium\storage\t6\bots.txt
    it and inside each line you must put a name, if you want to put a CLANTAG, put a name followed by the clan tag separated by a comma. Example:

    name1,TAG1
    name2,TAG2
    
    BO2 Client Support

  • [Support] Zombie Counter! Help
    Kalitosundefined Kalitos

    Don Mishi prueba esto

    /*
    *	 Black Ops 2 - GSC Studio by iMCSx
    *
    *	 Creator : vkarl
    *	 Project : arma
    *    Mode : Zombies
    *	 Date : 2020/03/25 - 10:53:48	
    *
    */	
    
    #include common_scripts\utility;
    #include maps\mp\zombies\_zm;
    #include maps\mp\zombies\_zm_utility;
    #include maps\mp\gametypes_zm\_hud_util;
    #include maps\mp\gametypes_zm\_hud_message;
    
    init()
    {
    	level.clientid = 0;
    	level.perk_purchase_limit = 9;
    	level thread onplayerconnect();
    	drawZombiesCounter();
    }
    
    onplayerconnect()
    {
    	for ( ;; )
    	{
    		level waittill( "connecting", player );
    		player.clientid = level.clientid;
    		level.clientid++;
    	}
    }
    
    
    createServerText(font, text, fontScale, point, relativePoint, x, y, color, glowColor, alpha, glowAlpha, sort, team) {
    	elem = createServerFontString(font, fontScale, team);
    	elem setPoint(point, relativePoint, x, y);
    	elem setText(text);
    	elem.color = color;
    	elem.glowColor = glowColor;
    	elem.alpha = alpha;
    	elem.glowAlpha = glowAlpha;
    	elem.sort = sort;
    	
    	return elem;
    }
    
    drawZombiesCounter()
    {
        level.zombiesCountDisplay = createServerFontString("Objective" , 1.7);
        level.zombiesCountDisplay setPoint("RIGHT", "CENTER", 315, "CENTER");
    
        thread updateZombiesCounter();
    }
    
    updateZombiesCounter()
    {
        level endon("stopUpdatingZombiesCounter");
    
        while(true)
        {
            zombiesCount = get_current_zombie_count();
            level.zombiesCountDisplay SetText("Zombies: " + zombiesCount);
    
            waitForZombieCountChanged("stopUpdatingZombiesCounter");
        }
    }
    
    recreateZombiesCounter()
    {
        level notify("stopUpdatingZombiesCounter");
    
        thread updateZombiesCounter();
    }
    
    waitForZombieCountChanged(endonNotification)
    {
        level endon(endonNotification);
    
        oldZombiesCount = get_current_zombie_count();
    
        while(true)
        {
            newZombiesCount = get_current_zombie_count();
    
            if(oldZombiesCount != newZombiesCount)
            {
                return;
            }
    
            wait 0.05;
        }
    }
    
    BO2 Modding Support & Discussion

  • Request for weekly server key limit to be exempted
    Kalitosundefined Kalitos

    klikso They are security measures implemented by the developers to prevent the abuse of server Keys and previously there were people who did not respect the limit of online servers. Those people were banned and other accounts were immediately created and more server keys were created. https://plutonium.pw/docs/server/platform/how-many-servers-can-i-host/

    BO2 Server Hosting 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