1
4
submitted 7 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]

There are several ways to share mods with others. This guide will show you the easiest way to share mods with others gamers.


Sharing The Link To The Original Source

Many mods for the game are still available and being hosted online. However many of these websites can contain many ads and popups when downloading mods from these websites.


Bittorent

Bittorrent has been around for years and is a good way to share files with others. All you need to do is seed the mod folder and share the .torrent file or a magnet link of the torrent to those you wish to share the mod with for them to download the mod. The file transfer is done peer-to-peer and even those who are downloading the torrent can also share parts of the file they have downloaded to others in the swarm, making it an efficient way to share large files.

It is recommended you add trackers to the torrents. ngosang/trackerslist is a good source for getting a good list of trackers which is updated frequently. To share a torrent, you need to setup port forwarding for your Bittorrent client to allow your torrent to be shared with others. It is highly recommended that even those who are downloading the torrent also have port forwarding setup for their Bittorrent client which can increase download speeds and allow downloaders to also share the torrent.

To use Bittorrent, all users will need a Bittorrent client. The Bittorrent client I would recommend is qBittorrent.


File Sharing Services

There are several websites online which allow users to upload files to which will generate a link that can be shared to others to download the file. Many of these services are not privacy friendly, are sketchy, and even have file size restrictions which prevent you from upload the mod itself which is not usually a small file.

The service that is recommended is Send which is a open source file sharing service which anyone can self host if they so wish. There are several public instances available for anyone to use which allow for large files to be temporary hosted. The file transfer is end-to-end encrypted and many of the instances are fast when it comes to upload and download speeds.

When using a file sharing service, you will most likely need to take the mod folder and create an archive file of the mod folder to upload it, such as a ZIP archive. There are many file archive clients out there but the two I recommend is 7-Zip and PeaZip. Both clients support many different archive formats.

2
5
How To Install Mods (lemmy.world)
submitted 7 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]

A guide on how to install mods for Call of Duty: World at War.


Executable Installation

Download the mod and run the EXE. The EXE will be an installer which will guide you in installing the mod.

If your using Plutonium, you will need to install the mod in the Plutonium mods folder. During the installation, it may include an option to change the folder on where to install the mod, which in this case you will change the folder to the Plutonium mods folder. In most cases however, the mod will be installed in the mods folder for the base game, by being installed in the primary folder or the secondary folder. It is highly recommended to create a symbolic link for making the installation of mods for Plutonium seamless and have the mods folder become the same as the mods folder for the base game. Read Symbolic Link section for instructions on how to create a symbolic link. The alternative is after installing each mod in the base game mods folder, you will need to move the mod from the primary folder or secondary folder to the Plutonium folder. Read Mods Folder Paths section on where these directories are located on your computer.

BE CAUTIOUS TO NOT INSTALL MALWARE WHEN RUNNING AN EXE INSTALLER.

Manual Installation

To install mods manually you need to extract the archive files (ZIP, 7Z, RAR, etc) into the mods folder. Read Mods Folder Paths section on where these directories are located on your computer.

If your using Plutonium, the mods need to be installed in a separate folder in order to be accessed when using Plutonium. It is highly recommended to create a symbolic link for making the installation of mods for Plutonium seamless and have the mods folder become the same as the mods folder for the base game. Read Symbolic Link section for instructions on how to create a symbolic link.

Inside the mods folder will be the folder that is the name of the mod itself and all of the mod files will go inside this folder. For example... \mods\Super_Cool_Zombie_Map


Mods Folder Paths

These are the mods folder paths for the game. For the base game in most cases it will be the primary folder. If there is no primary folder path at all, you will have to use the secondary folder path. Due note that the secondary folder path is different on Linux (When using Wine or Proton).

Read Access AppData Folder section for instructions on how to open the AppData folder on Windows.

Primary Folder

C:\Users\(Username)\AppData\Local\Activision\CoDWaW\mods\(Mod Name)

Secondary Folder

Windows: C:\Users\(Username)\AppData\Local\VirtualStore\Program Files (x86)\Activision\CoDWaW\mods\(Mod Name)

Linux: (Prefix)/drive_c/users/(Username)/Local Settings/Application Data/Activision/CoDWaW/mods/(Mod Name)

Plutonium Folder

C:\Users\(Username)\AppData\Local\Plutonium\storage\t4\mods\(Mod Name)


Access AppData Folder

To open up your AppData folder in Windows, press the Windows key + R key and type appdata and press Enter to open the AppData folder.


Symbolic Link

If you are using Plutonium, it is recommended you create a symbolic link of the mods folder to replace the Plutonium mods folder. By creating a symbolic link for the mods folder, the mods folder will be shared for the base game and Plutonium. This makes installing mods easier as well.

To create a symbolic link, first you will need to delete the mods folder inside the C:\Users(Username)\AppData\Local\Plutonium\storage\t4 folder Read Access AppData Folder section on how to get access to your AppData folder on Windows. Then you will need to find the folder of the mods folder for the base game. Read Mods Folder Paths section to get the primary folder path and secondary folder path and find out which of these two directories is used as the mods folder for the base game. Once you found the mods folder for the base game, you need to launch a terminal application. On Windows you can use either Command Prompt or Powershell. On Linux, the default terminal application will work. In the terminal application, enter the following command for the terminal application you are using and folder path (Primary/Secondary) to create the symbolic link.

Command Prompt (Primary Folder)

mklink /J "C:\Users\(Username)\AppData\Local\Plutonium\storage\t4\mods" "C:\Users\(Username)\AppData\Local\Activision\CoDWaW\mods"

Command Prompt (Secondary Folder)

mklink /J "C:\Users\(Username)\AppData\Local\Plutonium\storage\t4\mods" "C:\Users\(Username)\AppData\Local\VirtualStore\Program Files (x86)\Activision\CoDWaW\mods"

Powershell (Primary Folder)

New-Item -ItemType Junction -Path "C:\Users\(Username)\AppData\Local\Plutonium\storage\t4\mods" -Target "C:\Users\(Username)\AppData\Local\Activision\CoDWaW\mods"

Powershell (Secondary Folder)

New-Item -ItemType Junction -Path "C:\Users\(Username)\AppData\Local\Plutonium\storage\t4\mods" -Target "C:\Users\(Username)\AppData\Local\VirtualStore\Program Files (x86)\Activision\CoDWaW\mods"

Linux (Primary Folder)

ln -s "(Prefix)/drive_c/users/(Username)/Local/Activision/CoDWaW/mods" "(Prefix)/drive_c/users/(Username)/AppData/Local/Plutonium/storage/t4/mods"

Linux (Secondary Folder)

ln -s "(Prefix)/drive_c/users/(Username)/Local Settings/Application Data/Activision/CoDWaW/mods" "(Prefix)/drive_c/users/(Username)/AppData/Local/Plutonium/storage/t4/mods"

3
1
submitted 11 months ago by [email protected] to c/[email protected]

This Lemmy community is looking for moderators. If you wish to become a moderator, please message me or leave a comment in this thread.

Call of Duty: World at War Zombies

1 readers
1 users here now

Lemmy community for the Call of Duty: World at War game zombies mode.


Guides

How To Install Mods

How To Share Mods With Others


Rules

Discussions must be around the Call of Duty: World at War (2008) game zombie mode.


Simular Communities

[email protected]

[email protected]

[email protected]

founded 11 months ago
MODERATORS