12
submitted 2 months ago by [email protected] to c/[email protected]
11
submitted 6 months ago by [email protected] to c/[email protected]
5
submitted 6 months ago by [email protected] to c/codzombies
6
submitted 6 months ago by [email protected] to c/codzombies
4
submitted 6 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.

5
How To Install Mods (lemmy.world)
submitted 6 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"

-1
submitted 7 months ago by [email protected] to c/[email protected]

If we can get these to accept cryptocurrencies, it will be the holy grail of ATMs! Cryptocurrencies are borderless unlike the USD and other fiat currencies. If these ATMs can accept crypto, they can be deployed around the world.

I never thought I will see the day of a Goldback ATM, especially now. So is it really a pipe dream for a crypto to Goldback ATM?

I would prefer a Monero to Goldback ATM personally since I prefer Monero when it comes to cryptocurrencies. but even a Bitcoin or Bitcoin Cash or Litecoin ATM will be an amazing leap forward.

https://goldatm.com/

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

If we can get these to accept Monero, it will be the holy grail of ATMs! Monero is borderless unlike the USD and other fiat currencies. If these ATMs can accept Monero, they can be deployed around the world.

I never thought I will see the day of a Goldback ATM, especially now. So is it really a pipe dream for XMR to Goldback ATM?

https://goldatm.com/

5
submitted 8 months ago by [email protected] to c/[email protected]

LocalSend allows you to share files to nearby devices. Available for desktop and mobile and is FOSS!

-2
Tari community (lemmy.world)
submitted 9 months ago by [email protected] to c/[email protected]

Check out the Tari communities.

[email protected]

1
submitted 10 months ago by [email protected] to c/[email protected]
1
submitted 10 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.

[-] [email protected] 8 points 11 months ago

To my understanding Datadog is not FOSS. Would you guys consider using a FOSS alternative for motoring the status of lemmy.world such as Uptime Kuma? That way your who stack is closer to being FOSS.

https://uptime.kuma.pet/

[-] [email protected] 6 points 11 months ago

Discord is the worst, matrix is not the best but way better than discord

[-] [email protected] 6 points 11 months ago* (last edited 11 months ago)

Im not a fan of no identifiers. Sure simplex is secure with it but I would like to see something like simplex that uses 24 word seed phrases to generste millions of unique identifiers the user can easily backup and restore from a piece of paper and not from a digital backup file.

[-] [email protected] 7 points 11 months ago

I can share my templeos setup?

[-] [email protected] 14 points 11 months ago

Wait, so this will allow phones with supported hardware to SMS and calls anywhere in the world, even in the middle of nowhere with no cellular coverage?

[-] [email protected] 18 points 11 months ago

Who owns or controls .world domains?

I think .ee and .ca are fine. lemmy.ca is for Canadians specifically

[-] [email protected] 10 points 11 months ago

Matrix is the federated alternative to Signal.

However it would be cool to see Signal implementing their encryption into Matrix and turning Signal into a Matrix provider, becoming a federated messanger.

[-] [email protected] 6 points 1 year ago

Newpipe needs to get on codeberg or their own forgejo instance asap

[-] [email protected] 49 points 1 year ago

Making reddit go back to their own ways is not victory. We need to get redditors onto Lemmy. It is up to us to use Lemmy and spread its awareness to redditors.

[-] [email protected] 8 points 1 year ago

Go to the search and change community from "All" to the community of your choice.

[-] [email protected] 25 points 1 year ago

If anyone does decide to leave lemmy.world, do not leave the lemmyverse. Join another lemmy instance or start your own instance. Lemmy is the future. Free, open source, federated link aggregator.

[-] [email protected] 15 points 1 year ago

Do not protest reddit. Boycott reddit for good and live in the lemmyverse.

If your lemmy instance gets unbearable, there will always be another lemmy instance to go to.

If you do use reddit, it should be to post and comment about lemmy to inform the current redditors to move to lemmyverse.

view more: next ›

comcreator

joined 1 year ago
MODERATOR OF