Artyx Will you fix the download link?
Kalitos
Posts
-
[MAP] Summit from COD:OL -
Bo2 DLCSapzXD no
-
[ZM] Highest Round Tracker ErrorMetalThunder At the moment t6 only stores the logs files in the "t6" folder, the rest is handled in the old folder.
-
Commands Bo2 (T6) -
BO1-Zombies?Urielk12 Recomiendo que revises el discord amigo.

-
how to run bo2 zombies offline -
Assign a script to another server - how?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") -
Changing max player for S&D LobbyYANK Ocean You must remove "//" from the line for the server to take that configuration.

-
Puedo ser baneado por esto?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. -
I need helpA error is giving you your game.
-
how to change juggernog max health ?//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 custom server fatal errordc_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.
-
se congela el bo2 cuando me intento unir a un servidor ayudaMegatron9987 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
-
Anyone knows how to fix this?TahjGadd It's not an error, that object doesn't work in that game mode.
-
why wont my server startolivermoe7 said in why wont my server start:
config file %s not found.
I think that's where the problem is
-
alguien sabe como meter mas perks en un mapa?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. -
bo2 bot names@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 -
[Support] Zombie Counter! HelpDon 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; } } -
Request for weekly server key limit to be exemptedklikso 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/