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

Plutonium

FutureRaveundefined

FutureRave

@FutureRave
VIP
About
Posts
428
Topics
10
Shares
0
Groups
2
Followers
58
Following
26

Posts

Recent Best Controversial

  • Challanger verification failed
    FutureRaveundefined FutureRave

    Known issue. Currently under investigation.

    BO2 Client Support

  • [Linux UFW] Protect master port against DDOS attacks
    FutureRaveundefined FutureRave

    Hello, this is the first time I post a tutorial so please be kind :).
    So this tutorial is for anyone who hosts an MW3 server on a Linux distribution that has UFW (Like Debian, Ubuntu or Arch). I'm sure it can be replicated with iptables alone which is a module present in any Linux distro (or it can be installed on any I think).
    The information I have on game ports is true for a good old Tekno MW3 server but I'm sure the same rules apply for a server hosted with Pluto.

    Enable UFW:
    If you have followed the headless tutorial made by Spectre you have already UFW enabled. Just in case do

    sudo ufw status 
    

    It should say

    Status: active
    Logging: on (low)
    Default: deny (incoming), allow (outgoing), disabled (routed)
    New profiles: skip
    

    If not please follow Spectre tutorial as he explains how to enable ufw on Ubuntu 16/18/(and 20)
    So now that you have ufw enabled you probably also have added your custom rules for allowing traffics to the ports used by your game server(s).

    Disable IPV6
    Open with nano (or another editor) /etc/ufw/ufw.conf and add IPV6=no like this:

    # /etc/ufw/ufw.conf
    #
    IPV6=no
    # Set to yes to start on boot. If setting this remotely, be sure to add a rule
    # to allow your remote connection before starting ufw. Eg: 'ufw allow 22/tcp'
    ENABLED=yes
    
    # Please use the 'ufw' command to set the loglevel. Eg: 'ufw logging medium'.
    # See 'man ufw' for details.
    LOGLEVEL=low
    

    You don't need IPV6 IPs peeping on your server right now so just block them right away.

    Restrict access to net_authPort and net_queryPort
    These two ports don't need to be accessible by anyone but your VM/VPS IP address. Let's say that you have already put a general rule in place for these two ports and you want to replace it with a more restrictive one, how do you delete UFW rules?
    Type:

    sudo ufw status numbered
    

    A numbered list will be printed in your terminal window with all the user rules you have put in place (they can be found in /etc/ufw/user.rules)
    Let's say the ports 27017 and 27019 are your net_authPort and net_queryPort and you see this in your terminal window (when a protocol is not specified in a rule ufw will allow both udp and tcp packets and block other protocols):

    [ 5] 27017                  ALLOW IN    Anywhere                  
    [ 6] 27019                 ALLOW IN    Anywhere  
    

    now proceed to delete the old rules with these commands:

    sudo ufw delete 5
    

    (Repeat sudo ufw status numbered as now the order of the rules might have changed then delete what was the 6th rule)

    Now that we have deleted the old rules let's restrict the access to the net_authPort and net_queryPort so that only the IP address of our machine can access that port:

    sudo ufw allow from VPSIP to any port Game_port
    

    Replace VPSIP with the IP address of you VPS and the game_port with the port of net_authPort and then repeat for the net_queryPort
    Now you might think, what would have happened if I didn't bother deleting the old rules? UFW rules are applied in order! So if a packet comes in UFW will check the user's rules in the order printed by sudo ufw status numbered and when ufw finds the first rule that allows the packet to come in it will stop and allow the packet in (if there is a blocking rule afterwards it will be ignored! more on how to prevent this later).

    Restrict amounts of packet an IP can send to the master port
    I don't think the pluto devs have changed this, but basically it is known that a legitimate IP will send 2 bytes (of packets) to the master port every 10 seconds. The master port is a very vulnerable port and needs to be protected.
    We will modify the before.rules found in /etc/ufw/before.rules I will use the nano editor to accomplish this.
    The before rules are evaluated before the user rules (added via the command sudo ufw allow) so if you want to avoid messing with the order of the user rules you can modify the before.rules like I'm about to do.
    Type

    sudo nano /etc/ufw/before.rules
    

    Add these two lines after the *filter

    *filter
    :ufw-http - [0:0]
    :ufw-http-logdrop - [0:0]
    (other default lines here)
    # End required lines
    

    This is the interesting part, add these rules before the COMMIT line or they won't be processed:

    # http
    -A ufw-before-input -p tcp --dport 80   -j ufw-http
    
    # https
    -A ufw-before-input -p tcp --dport 443  -j ufw-http
    
    # tekno master port (master server port)
    -A ufw-before-input -p tcp --dport (your master port here!)  -j ufw-http
    
    # Limit connections per Class C
    -A ufw-http -p tcp --syn -m connlimit --connlimit-above 2 --connlimit-mask 24 -j ufw-http-logdrop
    
    # Limit connections per IP
    -A ufw-http -m state --state NEW -m recent --name conn_per_ip --set
    -A ufw-http -m state --state NEW -m recent --name conn_per_ip --update --seconds 1 --hitcount 1 -j ufw-http-logdrop
    
    # Limit packets per IP
    -A ufw-http -m recent --name pack_per_ip --set
    -A ufw-http -m recent --name pack_per_ip --update --seconds 1  --hitcount 2  -j ufw-http-logdrop
    
    # Finally accept
    -A ufw-http -j ACCEPT
    
    -A ufw-http-logdrop -j DROP
    COMMIT
    

    What we did above was basically tell ufw to drop (reject without sending a notice to the source) any packets that don't satisfy these rules. Now your server is protected from most DDOS attacks, I didn't mention the net_port because it seems that no matter how hard it gets ddosed nothing much happens so let's just pretend it doesn't exist (bad advice probably).

    BONUS TUTORIAL
    Want to IP ban a player you hate a lot?
    Open your before.rules again and add this rule (don't forget #comments or else ufw will not considerate a rule without an accompanying comment)

    #Block XXX IP from XXX (or whatever notation you want to add)
    -A ufw-before-input -s IPAddressHere -j DROP
    

    Again all the packets will drop, dropping means discarding a packet without telling the source, if you wish to send a response to the source about this refusal add -j REJECT instead of -j DROP but I do not recommend this.
    If you have UFW logging set to low, all rejection should be logged and saved in /var/log/ufw.log so you can see there (again with nano) who's knocking on your server. You will find that older logs are compressed and their name is changed like ufw5.gz it will be tricky to access these logs as you are not the owner of these files (the mysterious syslog is the owner) so have fun with that.

    Verify UFW rules are in place with this command:

    sudo iptables -S
    sudo iptables --list
    

    Your rules should appear somewhere in the sea of things that are going to be printed

    Thanks for reading, leave feedback in the comments below, a friend (shoutout to Zombie if you are reading this) of mine gave me these rules and I thought I wrote a tutorial for the geeks out there.

    MW3 Server Hosting Support server iw5 linux

  • [Release] MW3 Skin Creator
    FutureRaveundefined FutureRave

    Chooch You are clueless, there is no virus in here. You got called out for what you are, then you make accusations that this is a virus? Grow up.

    MW3 Modding Releases & Resources

  • đź“€All Reflective Gold AK Family's with Extra Guns!đź“€
    FutureRaveundefined FutureRave

    Very cool camos

    BO2 Modding Releases & Resources texture pack camos skins

  • Bug/Error: Challenger verification failed
    FutureRaveundefined FutureRave

    Known issue. Currently under investigation.

    BO2 Client Support

  • MSVCP140.ddl is missing - System Error
    FutureRaveundefined FutureRave

    @Mr-Android
    Can confirm this was the issue.
    Download this exe from Microsoft https://aka.ms/vs/16/release/vc_redist.x86.exe

    MW3 Server Hosting Support

  • Marathon & Dolphin Dive Perk
    FutureRaveundefined FutureRave

    Create an empty GSC file called _custom_perks.gsc in %localappdata%\Plutonium\storage\iw5\scripts\

    Copy and paste the following code inside the GSC file you just created.

    // Call Of Duty: Modern Warfare 3
    
    init()
    {
        thread onPlayerConnect();
    }
    
    onPlayerConnect()
    {
        while ( true )
        {
            level waittill( "connected", player );
            player thread onPlayerSpawned();
        }
    }
    
    onPlayerSpawned()
    {
        self endon( "disconnect" );
        
        while ( true )
        {
            self waittill( "spawned_player" );
            // remove the "//" in the line below if you also want access to the dolphin dive perk
            // self setPerk( "specialty_jumpdive", true, false );
            self setPerk( "specialty_marathon", true, false );
        }
    }
    

    Additionally, create a new empty csv file called perkTable.csv in %localappdata%\Plutonium\storage\iw5\mp\

    a0,b1,c2,d3,e4,f5,g6,h7,i8,j9
    0,specialty_null,PERKS_NONE,specialty_ks_null,PERKS_NONE,,,,specialty_null,PERKS_NONE
    1,specialty_longersprint,PERKS_LONGERSPRINT,specialty_longersprint,PERKS_DESC_LONGERSPRINT,perk1,,,specialty_fastmantle,PERKS_LONGERSPRINT_PRO
    2,specialty_fastreload,PERKS_SLEIGHT_OF_HAND,specialty_fastreload,PERKS_DESC_SLEIGHT_OF_HAND,perk1,,,specialty_quickswap,PERKS_SLEIGHT_OF_HAND_PRO
    3,specialty_scavenger,PERKS_SCAVENGER,specialty_scavenger,PERKS_DESC_SCAVENGER,perk1,,,specialty_extraammo,PERKS_SCAVENGER_PRO
    4,specialty_blindeye,PERKS_BLINDEYE,specialty_blindeye,PERKS_DESC_BLINDEYE,perk1,,,specialty_fasterlockon,PERKS_BLINDEYE_PRO
    5,specialty_paint,PERKS_PAINT,specialty_paint,PERKS_DESC_PAINT,perk1,,,specialty_paint_pro,PERKS_PAINT_PRO
    6,specialty_hardline,PERKS_HARDLINE,specialty_hardline,PERKS_DESC_HARDLINE,perk2,,,specialty_rollover,PERKS_HARDLINE_PRO
    7,specialty_coldblooded,PERKS_ASSASSIN,specialty_coldblooded,PERKS_DESC_ASSASSIN,perk2,,,specialty_spygame,PERKS_ASSASSIN_PRO
    8,specialty_heartbreaker,PERKS_ASSASSIN,specialty_coldblooded,PERKS_DESC_HEARTBREAKER,slot_null,,,specialty_null,PERKS_NONE
    9,specialty_quickdraw,PERKS_QUICKDRAW,specialty_quickdraw,PERKS_DESC_QUICKDRAW,perk2,,,specialty_fastoffhand,PERKS_QUICKDRAW_PRO
    10,specialty_twoprimaries,PERKS_OVERKILL,specialty_twoprimaries,PERKS_DESC_OVERKILL,perk2,,,specialty_overkillpro,PERKS_OVERKILL_PRO
    11,_specialty_blastshield,PERKS_BLASTSHIELD,specialty_blastshield,PERKS_DESC_BLASTSHIELD,perk2,,,specialty_stun_resistance,PERKS_BLASTSHIELD_PRO
    12,specialty_detectexplosive,PERKS_BOMB_SQUAD,specialty_bombsquad,PERKS_DESC_BOMB_SQUAD,perk3,,,specialty_selectivehearing,PERKS_BOMB_SQUAD_PRO
    13,specialty_autospot,PERKS_IRON_LUNGS,specialty_ironlungs,PERKS_DESC_IRON_LUNGS,perk3,,,specialty_holdbreath,PERKS_IRON_LUNGS_PRO
    14,specialty_bulletaccuracy,PERKS_STEADY_AIM,specialty_steadyaim,PERKS_DESC_STEADY_AIM,perk3,,,specialty_fastsprintrecovery,PERKS_STEADY_AIM_PRO
    15,specialty_steadyaimpro,PERKS_STEADY_AIM,specialty_steadyaim_upgrade,PERKS_DESC_STEADY_AIM,slot_null,,,specialty_null,PERKS_NONE
    16,specialty_quieter,PERKS_DEADSILENCE,specialty_quieter,PERKS_DESC_DEADSILENCE,perk3,,,specialty_falldamage,PERKS_DEADSILENCE_PRO
    17,specialty_stalker,PERKS_STALKER,specialty_stalker,PERKS_DESC_STALKER,perk3,,,specialty_delaymine,PERKS_STALKER_PRO
    18,specialty_fastmantle,PERKS_LONGERSPRINT_PRO,specialty_longersprint_upgrade,PERKS_UPGRADE_LONGERSPRINT,upgrade1,,,specialty_null,PERKS_NONE
    19,specialty_quickswap,PERKS_SLEIGHT_OF_HAND_PRO,specialty_fastreload_upgrade,PERKS_UPGRADE_SLEIGHT_OF_HAND,upgrade1,,,specialty_null,PERKS_NONE
    20,specialty_extraammo,PERKS_SCAVENGER_PRO,specialty_scavenger_upgrade,PERKS_UPGRADE_SCAVENGER,upgrade1,,,specialty_null,PERKS_NONE
    21,specialty_fasterlockon,PERKS_BLINDEYE_PRO,specialty_blindeye_upgrade,PERKS_UPGRADE_BLINDEYE,upgrade1,,,specialty_null,PERKS_NONE
    22,specialty_armorpiercing,PERKS_BLINDEYE_PRO,specialty_blindeye_upgrade,PERKS_UPGRADE_BLINDEYE,upgrade1,,,specialty_null,PERKS_NONE
    23,specialty_paint_pro,PERKS_PAINT_PRO,specialty_paint_upgrade,PERKS_UPGRADE_PAINT,upgrade1,,,specialty_null,PERKS_NONE
    24,specialty_rollover,PERKS_HARDLINE_PRO,specialty_hardline_upgrade,PERKS_UPGRADE_HARDLINE,upgrade2,,,specialty_null,PERKS_NONE
    25,specialty_assists,PERKS_HARDLINE_PRO,specialty_hardline_upgrade,PERKS_UPGRADE_HARDLINE,upgrade2,,,specialty_null,PERKS_NONE
    26,specialty_spygame,PERKS_ASSASSIN_PRO,specialty_coldblooded_upgrade,PERKS_UPGRADE_ASSASSIN,upgrade2,,,specialty_null,PERKS_NONE
    27,specialty_empimmune,PERKS_ASSASSIN_PRO,specialty_coldblooded_upgrade,PERKS_UPGRADE_ASSASSIN,upgrade2,,,specialty_null,PERKS_NONE
    28,specialty_fastoffhand,PERKS_QUICKDRAW_PRO,specialty_quickdraw_upgrade,PERKS_UPGRADE_QUICKDRAW,upgrade2,,,specialty_null,PERKS_NONE
    29,specialty_overkillpro,PERKS_OVERKILL_PRO,specialty_twoprimaries_upgrade,PERKS_UPGRADE_OVERKILL,upgrade2,,,specialty_null,PERKS_NONE
    30,specialty_stun_resistance,PERKS_BLASTSHIELD_PRO,specialty_blastshield_upgrade,PERKS_UPGRADE_BLASTSHIELD,upgrade2,,,specialty_null,PERKS_NONE
    31,specialty_holdbreath,PERKS_IRON_LUNGS_PRO,specialty_ironlungs_upgrade,PERKS_UPGRADE_IRON_LUNGS,upgrade3,,,specialty_null,PERKS_NONE
    32,specialty_selectivehearing,PERKS_BOMB_SQUAD_PRO,specialty_bombsquad_upgrade,PERKS_UPGRADE_BOMB_SQUAD,upgrade3,,,specialty_null,PERKS_NONE
    33,specialty_fastsprintrecovery,PERKS_STEADY_AIM_PRO,specialty_steadyaim_upgrade,PERKS_UPGRADE_STEADY_AIM,upgrade3,,,specialty_null,PERKS_NONE
    34,specialty_falldamage,PERKS_DEADSILENCE_PRO,specialty_quieter_upgrade,PERKS_UPGRADE_DEADSILENCE,upgrade3,,,specialty_null,PERKS_NONE
    35,specialty_delaymine,PERKS_STALKER_PRO,specialty_stalker_upgrade,PERKS_UPGRADE_STALKER,upgrade3,,,specialty_null,PERKS_NONE
    36,throwingknife_mp,PERKS_KNIFETHROW,equipment_throwing_knife,PERKS_DESC_KNIFETHROW,equipment,,,specialty_null,
    37,c4_mp,PERKS_C4,equipment_c4,PERKS_REMOTE_DETONATION_EXPLOSIVE,equipment,2,,specialty_null,
    38,claymore_mp,PERKS_CLAYMORE,equipment_claymore,PERKS_TRIP_ACTIVATED_EXPLOSIVE,equipment,2,,specialty_null,
    39,frag_grenade_mp,PERKS_FRAG_X_1,equipment_frag,PERKS_DESC_FRAG_X1,equipment,2,,specialty_null,
    40,semtex_mp,PERKS_SEMTEX,equipment_semtex,PERKS_DESC_SEMTEX,equipment,,,specialty_null,
    41,bouncingbetty_mp,PERKS_BOUNCINGBETTY,equipment_bouncing_betty,PERKS_DESC_BOUNCINGBETTY,equipment,,,specialty_null,
    42,specialty_tacticalinsertion,PERKS_TACTICALINSERTION,equipment_flare,PERKS_DESC_TACTICALINSERTION,equipment,1,,specialty_null,
    43,trophy_mp,PERKS_TROPHY,equipment_trophy,PERKS_DESC_TROPHY,equipment,1,,specialty_null,
    44,smoke_grenade_mp,PERKS_SMOKE_GRENADE,equipment_smoke_grenade,PERKS_DESC_SMOKE_GRENADE,equipment,2,,specialty_null,
    45,emp_grenade_mp,PERKS_EMP_GRENADE,equipment_emp_grenade,PERKS_DESC_EMP_GRENADE,equipment,2,,specialty_null,
    46,flash_grenade_mp,PERKS_FLASH_GRENADE,equipment_flash_grenade,PERKS_DESC_FLASH_GRENADE,equipment,2,,specialty_null,
    47,concussion_grenade_mp,PERKS_CONCUSSION_GRENADE,equipment_concussion_grenade,PERKS_DESC_CONCUSSION_GRENADE,equipment,2,,specialty_null,
    48,specialty_scrambler,PERKS_SCRAMBLER_ITEM,equipment_scrambler,PERKS_DESC_SCRAMBLER_ITEM,equipment,1,,specialty_null,
    49,specialty_portable_radar,PERKS_PORTABLE_RADAR_ITEM,equipment_portable_radar,PERKS_DESC_PORTABLE_RADAR_ITEM,equipment,1,,specialty_null,
    50,specialty_revenge,PERKS_REVENGE,specialty_revenge,PERKS_DESC_REVENGE,perk4,5,,specialty_null,
    51,specialty_grenadepulldeath,PERKS_MARTYRDOM,specialty_grenadepulldeath,PERKS_DROP_A_LIVE_GRENADE_WHEN,perk4,4,,specialty_null,
    52,specialty_c4death,PERKS_C4DEATH,specialty_c4death,PERKS_DESC_C4DEATH,perk4,6,,specialty_null,
    53,specialty_finalstand,PERKS_FINALSTAND,specialty_finalstand,PERKS_DESC_FINALSTAND,perk4,4,,specialty_null,
    54,specialty_juiced,PERKS_JUICED,specialty_juiced,PERKS_DESC_JUICED,perk4,4,,specialty_null,
    55,specialty_uav,PERKS_UAV,specialty_uav,PERKS_DESC_UAV,perk4,6,,specialty_null,
    56,specialty_stopping_power,PERKS_STOPPING_POWER,specialty_stopping_power,PERKS_DESC_STOPPING_POWER,perk4,5,,specialty_null,
    57,streaktype_assault,PERKS_ASSAULT,streaktype_assault,PERKS_DESC_ASSAULT,perk5,,,specialty_null,
    58,streaktype_support,PERKS_SUPPORT,streaktype_support,PERKS_DESC_SUPPORT,perk5,,,specialty_null,
    59,streaktype_specialist,PERKS_SPECIALIST,streaktype_specialist,PERKS_DESC_SPECIALIST,perk5,,,specialty_null,
    60,specialty_bulletpenetration,PERKS_DEEP_IMPACT,specialty_bulletpenetration,PERKS_DESC_DEEP_IMPACT,proficiency,,,specialty_null,
    61,specialty_marksman,PERKS_MARKSMAN,specialty_marksman,PERKS_DESC_MARKSMAN,proficiency,,,specialty_null,
    62,specialty_sharp_focus,PERKS_SHARPFOCUS,specialty_sharp_focus,PERKS_DESC_SHARPFOCUS,proficiency,,,specialty_null,
    63,specialty_bling,PERKS_BLING,specialty_bling,PERKS_DESC_BLING,proficiency,,,specialty_null,
    64,specialty_secondarybling,PERKS_SECONDARY_BLING,specialty_bling_upgrade,PERKS_DESC_SECONDARY_BLING,slot_null,,,specialty_null,
    65,specialty_pistoldeath,PERKS_LAST_STAND,specialty_pistoldeath,PERKS_PULL_OUT_YOUR_PISTOL,slot_null,,,specialty_null,
    66,specialty_armorvest,PERKS_JUGGERNAUT,specialty_armorvest,PERKS_INCREASED_HEALTH,slot_null,,,specialty_null,
    67,specialty_bulletdamage,PERKS_STOPPING_POWER,specialty_bulletdamage,PERKS_INCREASED_BULLET_DAMAGE,slot_null,,,specialty_null,
    68,specialty_light_armor,PERKS_LIGHT_ARMOR,specialty_light_armor,PERKS_DESC_LIGHT_ARMOR,slot_null,,,specialty_null,
    69,specialty_holdbreathwhileads,PERKS_HOLDBREATHWHILEADS,specialty_holdbreathwhileads,PERKS_DESC_HOLDBREATHWHILEADS,proficiency,,,specialty_null,
    70,specialty_longerrange,PERKS_LONGERRANGE,specialty_longerrange,PERKS_DESC_LONGERRANGE,proficiency,,,specialty_null,
    71,specialty_fastermelee,PERKS_FASTERMELEE,specialty_fastmeleerecovery,PERKS_DESC_FASTERMELEE,proficiency,,,specialty_null,
    72,specialty_reducedsway,PERKS_REDUCEDSWAY,specialty_reducedsway,PERKS_DESC_REDUCEDSWAY,proficiency,,,specialty_null,
    73,specialty_lightweight,PERKS_LIGHTWEIGHT,specialty_lightweight,PERKS_DESC_LIGHTWEIGHT,proficiency,,,specialty_null,
    74,specialty_moredamage,PERKS_MOREDAMAGE,specialty_moredamage,PERKS_DESC_MOREDAMAGE,proficiency,,,specialty_null,
    75,specialty_radarblip,,,,slot_null,,,,
    76,specialty_radararrow,,,,slot_null,,,,
    77,specialty_radarjuggernaut,,,,slot_null,,,,
    78,specialty_marathon,PERKS_MARATHON,specialty_marathon,PERKS_DESC_MARATHON,perk1,,,specialty_fastmantle,PERKS_MARATHON_PRO
    79,specialty_jumpdive,PERKS_JUMPDIVE,specialty_jumpdive,PERKS_DESC_JUMPDIVE,slot_null,,,specialty_null,
    perk1,0.3333,0.4941,0.6196,,,,,,
    perk2,0.5255,0.5686,0.3804,,,,,,
    perk3,0.6196,0.3373,0.3373,,,,,,
    perk4,1,0.5,0,,,,,,
    equipment,1,0.8,0.4,,,,,,
    upgrade1,1,0.8,0.4,,,,,,
    upgrade2,1,0.8,0.4,,,,,,
    upgrade3,1,0.8,0.4,,,,,,
    
    MW3 Modding Releases & Resources

  • louis vuitton animated camo
    FutureRaveundefined FutureRave

    band.PNG

    BO2 Modding Releases & Resources

  • Call of Duty Black Ops 2 Split Screen
    FutureRaveundefined FutureRave

    Methegamer333 jarvis-iron-man-meme.gif

    BO2 Client Support

  • CoD BO1
    FutureRaveundefined FutureRave

    Uranium t5x?

    General Discussion

  • G_Password doesnt do anything for my server
    FutureRaveundefined FutureRave

    We sorted it out. It will be fixed in the next update or the one after.

    BO1 Server Hosting Support

  • [ZM] Points Menu + Points System
    FutureRaveundefined FutureRave

    I guess you have to open the GSC files and fix them yourself, keep in mind that instead of asking me you should ask the mod creator.
    But the error message tells you all you need to know, open the GSC scripts and replace the forwards slashes with backslashes (or vice-versa) until it works)

    BO2 Modding Releases & Resources bo2 gsc zombies

  • Cant find T6, please help!
    FutureRaveundefined FutureRave

    You are confusing yourself. The reason why you don't see the exe when you select the folder when prompted by the Pluto launcher is that the exes are files, not folders.
    You are required to select a folder, therefore Windows hides files when the file explorer window shows up.

    BO2 Client Support

  • my ping is @ 200
    FutureRaveundefined FutureRave

    You could find a way for light beams to travel faster than the speed of light. Other than that I don't know.
    https://aws.amazon.com/what-is/latency/ See "What are the causes of network latency?" section.

    General Discussion

  • how to add password to t5zm server?
    FutureRaveundefined FutureRave

    We did some improvements in regards to T5 SP dedicated servers.
    I suggest you update your T5 server config: https://github.com/xerxes-at/T5ServerConfig
    it will come in handy for when the next update comes out as we fixed some stuff on T5 SP.

    BO1 Server Hosting Support

  • [Release] [ZM] ZOMBIES++
    FutureRaveundefined FutureRave

    Kamakaize Use another mod

    BO2 Modding Releases & Resources

  • bro sorry but I installed plutonium but I don't have the bo 2 file where do I get it?
    FutureRaveundefined FutureRave

    Steam Shop is the place we recommend buying the game from

    BO2 Client Support

  • awog
    FutureRaveundefined FutureRave

    im_foken_stup In the game support section? xD

    General Discussion

  • Can't join the Ezz server for kino der toten
    FutureRaveundefined FutureRave

    Please, search for this error message. You will find many threads that cover the same issue which have already many replies.
    You CANNOT do anything, the server needs to be restarted. Join another server.

    BO1 Client Support

  • come faccio a mettere bo1 plutonium in italiano?
    FutureRaveundefined FutureRave

    Devi comprare il gioco su Steam e già lì dovresti scaricare il gioco in italiano

    All Other Languages 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