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

Plutonium

Xerxes

Xerxes

@Xerxes
Plutonium Staff
Unfollow Follow
About
Posts
3.6k
Topics
7
Shares
0
Groups
1
Followers
359
Following
21

Posts

Recent Best Controversial

  • BO2 "Graphics" improvement
    Xerxes Xerxes

    You can, I did play this game for years with an Intel 2600k paired with an AMD HD 6970, both older than the game.

    BO2 Modding Support & Discussion mod black ops 2

  • BO2 "Graphics" improvement
    Xerxes Xerxes

    ZolarZ said in BO2 "Graphics" improvement:

    Emosewaj Lol yeah i normally run my game with lower graphics just for fps

    This game is 8 years old, your PC should not have any issues pushing out 144+ stable fps.

    Also please do keep in mind that reshade does replace a directx binary which might get detected by the anticheat as an attempt to cheat. (You can do pretty nasty things with reshade too).

    BO2 Modding Support & Discussion mod black ops 2

  • Received SV OOB "getinfo" but still won't appear in Servers list
    Xerxes Xerxes

    Take a look at the bat files to change the port permanently so that it doesn't matter what you start first.
    Also the heartbeat happens as soon as the server is ready to server players since that is the way it registers and stays on the server list. The difference between SV and CL OOB packages is that SV ones only interest the Server and the CL ones are only interesting to the Client.

    BO2 Server Hosting Support

  • Server won't show up for my friends or me
    Xerxes Xerxes

    Wavyyy
    check your portforwards.

    Cue He did not.

    BO2 Server Hosting Support

  • [Support] VIP Menu
    Xerxes Xerxes

    frosty said in VIP Menu:

    @SinkH20 I personally don't like how people are running their servers right now. They are just skidding every single gsc script they can find and trying to make profit out of it.

    We soon will require server keys and will have official server hosting rules again.

    BO2 Modding Support & Discussion vip menu gsc trickshot server

  • [Support] Custom Game Saving?
    Xerxes Xerxes

    n5LM Not possible atm as that would require a fully emulated dw backend.
    You could create a server and have all those things in the server cfg.

    BO2 Modding Support & Discussion

  • Received SV OOB "getinfo" but still won't appear in Servers list
    Xerxes Xerxes

    TheDominator4567 said in Received SV OOB "getinfo" but still won't appear in Servers list:

    it kicks me after every match rather than just changing the maps.

    Thats normal for a ZM Server.

    Judging from the Screenshot I would say you changed something since you are no longer getting any getinfo prints.
    Which port did you forward because atm your server is listening on 4978 while your game is on 4976.

    BO2 Server Hosting Support

  • Mod Menu for custom games (MP)
    Xerxes Xerxes

    mason

    No source and requires a tool that isn't even working / supported here.
    Re-Upload it with the source.

    BO2 Modding Support & Discussion modding modmenu

  • Received SV OOB "getinfo" but still won't appear in Servers list
    Xerxes Xerxes

    TheDominator4567 use the connect command and the internal IP address of the server. eg a 192.168.x.x, 172.16.x.x or a 10.x.x.x address.

    BO2 Server Hosting Support

  • Game freezing at downloading playlists?
    Xerxes Xerxes

    Try typing xui into the external console when it is frozen.

    BO2 Client Support

  • [Release] Shotgun Rank/Max Bank/All Perma-Perks
    Xerxes Xerxes

    @SinkH20 said in Shotgun Rank/Max Bank/All Perma-Perks:

    What is this for exactly?

    79e57ea0-46da-4773-a2b2-8f4958058c8b-grafik.png

    BO2 Modding Releases & Resources

  • [Support] Need help with GSC script
    Xerxes Xerxes

    kefeblo Don't recompile such a big gsc for such a small change, use _clientids.gsc

    BO2 Modding Support & Discussion

  • [Support] Disable Function (Damage) of Grenades and Tacticals
    Xerxes Xerxes

    Beatology

    You are splitting the weapon string by every _ take the first element and then compare it against a string that has an _, that is why your code is not and will never work.

    BO2 Modding Support & Discussion

  • [Support] Need Auto Team Balance GSC
    Xerxes Xerxes

    If only there was a way to get it working 🙄

    	if ( level.teambased )
    	{
    		level.alliesplayers = [];
    		level.axisplayers = [];
    		level thread onplayerconnect();
    		level thread updateteambalancedvar();
    		wait 0,15;
    		if ( level.rankedmatch || level.leaguematch )
    		{
    			level thread updateplayertimes();
    		}
    	}
    	else
    	{
    		level thread onfreeplayerconnect();
    		wait 0,15;
    		if ( level.rankedmatch || level.leaguematch )
    		{
    			level thread updateplayertimes();
    		}
    	}
    }
    
    BO2 Modding Support & Discussion

  • [Release] [GSC] Zombies Custom Powerup | Unlimited Ammo
    Xerxes Xerxes

    Ox_ Nice share, if you change func_should_always_drop like this you should be able to control whether the perk is enabled or not from the server cfg, you probably also want to rename it at the same time.

    func_should_always_drop()
    {
        if(is_true(getdvarintdefault("sv_perk_unlimited_ammo",1)))
        {
    	    return 1;
        }
        return 0;
    }
    

    is_true needs #include common_scripts/utility; and getdvarintdefault needs #include maps/mp/_utility;

    You can do the same for the duration and replace wait 20; with wait getdvarintdefault("sv_perk_unlimited_ammo_duration",20);

    Or if you don't want to do that you can also change it to maps/mp/zombies/_zm_powerups::func_should_always_drop to use the original one and make your code a bit tidier.

    BO2 Modding Releases & Resources

  • Received SV OOB "getinfo" but still won't appear in Servers list
    Xerxes Xerxes

    TheDominator4567 said in Received SV OOB "getinfo" but still won't appear in Servers list:

    Every time I try running my server I either just get "Sending heartbeat..."or I get
    "Received SV OOB "getinfo" from (IP Address:Port Number)" and my server still won't appear in the server's list. Is there any ways for me to fix this problem?
    ![0_1581148462311_Capture.PNG](Uploading 100%)

    As H3X1C already said your router does not support NAT-Loopback, but the get info lines also tell us that you have set-up everything correctly and that others do see it.

    BO2 Server Hosting Support

  • Sending Heartbeat when Loading the Server!
    Xerxes Xerxes

    @Mr-Android said in Sending Heartbeat when Loading the Server!:

    When the server is running, try visiting https://canyouseeme.org and test those port numbers. Ensure it can see you.

    If it can't, something that caught me before was that I allowed ports through my Home Profile for the firewall when my network adapter was set to guest profile. Edited guest profile too and it then worked.

    Except that won't work, since that site can only check TCP ports and Pluto exclusively uses UDP.

    e496fea5-811e-4e49-a7f2-a7a433ba08b1-grafik.png

    BO2 Server Hosting Support

  • How do i add bots in my server?
    Xerxes Xerxes

    RektInator
    They need certain dvars to be set, I tried to do that via GSC which failed, then shortly after I got to talk to RektInator I lost access to the source code before I could try to force change the dvars.
    So yeah, set a few dvars and you are good to go.

    BO2 Server Hosting Support

  • Server advertising, promotion and introduction thread.
    Xerxes Xerxes

    AWOG Community

    We are a small but professional multi gaming community we multiple performant servers hosted in central Europe.
    We mostly have CoD servers but also host BF, CS:S and DayZ, furthermore we do also play games like Destiny 2, Overwatch and Modern Warfare (2019). We can look back at 10 successful years and the core team alone can accumulate knowledge of 50+ years in IT from our professions.

    On Plutonium we were the first to

    • have a Town server on ZM.
    • restore the tombstone.
    • have working pings on the score board.
    • have custom GSC since we made that patch and had it privately for months.
    • Punish players for using EMP nades against perks.
    • host Rust and Highrise servers.

    Our CoD servers currently consist of 2x RektT5, 2x IW4x, 1x IW6x, 11x PlutoT6 (5x MP and 6x ZM) and 6 PlutoIW5 servers . We try to bring out the best of all games to its core players. To ensure the best possible experience 24/7 we are using IW4m-Admin where we do automate as much as possible and restart the servers daily for the best performance. Furthermore we do have custom map cycles based on player count, votes (map / kick / map skip) and kick high ping players.

    When automation can not solve a problem we can be easily reached by !report in-game, our Discord server and our TS³-Server.

    Website: awog.at

    TS³: ts.awog.at
    TSviewer
    IW4m-Admin: cod.awog.at

    General Discussion

  • Server advertising, promotion and introduction thread.
    Xerxes Xerxes

    This thread is to introduce and to promote your servers and to have a nice place to look up where the admins of certain servers can be reached.

    We currently have the following tags:

    • HC - Home Connection: This server / community is hosted with a residential conneciont expect lag spikes and sub-optional pings
    • NOA - NOt Affiliated: This server / Community has a name that tries to sound like they are affiliated with something they are not eg Pluto Promod

    A server with [HC|NOA] then would be hosted from home and could try to fool you into joining it by having Pluto in its name.

    0-9

    • 71stRecon

    A

    • AWOG Community 🇦🇹 🇨🇭 🇩🇪 🇪🇺 🗺
    • Aspire Sniping

    C

    • COMMUNITY OF IW4X [HC|NOA]
    • CPL

    D

    • Ducxy's Trickshot FFA
    • Duui’s Trickshot server

    F

    • Frostbite FFA
    • FusionCore Community

    G

    • GBUK
    • GOLDEN WARRIORS

    L

    • Leaf7
    • L3Servers
    • Lightning-Wolves

    N

    • NaaB Bax Gaming 🇮🇷
    • NamelessNoobs

    P

    • Promod Public Server [NOA]

    R

    • ReactionGaming
    • RURU Community

    S

    • S&RServers
    • Sinks FFA Trickshotting
    • Smoke Buddies Gaming 🇧🇷
    • Sorex Servers

    U

    • Unity Gamers

    Z

    • Zeid's Crazy Trickshot Server
    General Discussion
  • 1
  • 2
  • 177
  • 178
  • 179
  • 180
  • 181
  • 180 / 181
  • Login

  • Don't have an account? Register

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