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

Plutonium

Kalitosundefined

Kalitos

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

Posts

Recent Best Controversial

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

    TheMast001 https://github.com/whydoesanyonecare/Plutonium_T6_Zombies_Custom_Perk_Powerup

    Temas De Español

  • Custom Gloves/Viewhands Request
    Kalitosundefined Kalitos

    emo shiro check link https://forum.plutonium.pw/tags/viewhands

    MW3 Modding Support & Discussion

  • how many cores would i need to run 4 servers ????
    Kalitosundefined Kalitos

    EZBleach Well, according to my experience, a VPS of 2 cores and at least 5 GB of ram, since the servers occupy 1 GB of ram for each one

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

  • BAN NAMELESS MP SERVER
    Kalitosundefined Kalitos

    zFacu Maybe I should try to enter the discord which is literally in the name of the server

    Temas De Español

  • Mw3 Spectator Hud
    Kalitosundefined Kalitos

    TheOreoSlayer It would be a very good implementation.

    MW3 Modding Support & Discussion

  • hello ..! I need a script to balance teams on my server...
    Kalitosundefined Kalitos

    @Snoopy__ https://github.com/efinst0rm/PlutoBO2-Autobalance/blob/master/maps/mp/teams/_teams.gsc

    Compile the code into a file named "_teams.gsc" and place the compiled file in "plutonium\storage\t6\maps\mp\teams"
    It must be called "_teams.gsc" once compiled, otherwise it won't work

    BO2 Server Hosting Support

  • Tengo un problema en la parte de setup
    Kalitosundefined Kalitos

    Deathunder Tu explicación no da mucho para entender tu problema. Quizá si publicas alguna imagen del error o detallas más tu problema. Puedan ayudarte

    Temas De Español

  • Plutonium IW5 Bot Warfare Issue
    Kalitosundefined Kalitos

    plant_velder https://github.com/ineedbots/iw5_bot_warfare/releases

    MW3 Modding Support & Discussion

  • How to ban cheaters from my server?
    Kalitosundefined Kalitos

    PedreteJB If you have a server, you must manage it with IW4MAdmin. Follow the guide this will allow you to manage remotely through your web panel or directly from the game using the commands.
    https://github.com/RaidMax/IW4M-Admin

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

  • se puede abrir Call of duty blo1 o 2 sin red internet ,rooter?
    Kalitosundefined Kalitos

    no. Plutonium necesita internet para verificar el inicio de sesión.

    Temas De Español

  • [Release] [GSC] MapEdit
    Kalitosundefined Kalitos

    S3VDITO Correct me if I'm wrong but I think the elevators should run it in a separate thread. Such that:

    thread createElevator((0, 0, 0), 512, (0, 0, 0));
    
    MW3 Modding Releases & Resources

  • Commands Bo2 (T6)
    Kalitosundefined Kalitos

    FakerHisSon95 https://github.com/mjkzy/t6-zm-chat-bank

    BO2 Server Hosting Support

  • [Support] Permanent information message in the player screen !Help
    Kalitosundefined Kalitos

    RuinasYm0_0 https://plutonium.pw/docs/modding/loading-mods/#t6

    BO2 Modding Support & Discussion

  • estan caidos los server? no entra mi cuenta
    Kalitosundefined Kalitos

    XPanquesitoX que versión de plutonium estás usando ?

    Temas De Español

  • [Release] UT2004 announcer
    Kalitosundefined Kalitos

    Brentdevent The download link only gets a flat file.

    MW3 Modding Releases & Resources

  • Commands Bo2 (T6)
    Kalitosundefined Kalitos

    FakerHisSon95 No, those are private scripts.

    BO2 Server Hosting Support

  • drop points
    Kalitosundefined Kalitos

    @Arlene-Excalibur No, but you must write at least the first 4 or 5 letters. Sometimes you may have to write the whole name

    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