Skip to content

Python3-based Ultima Online Patcher for servers that use a Manifest file.

License

Notifications You must be signed in to change notification settings

Ohkthx/uopatcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

{ "version": [1, 0, 11] }

Patreon donate button Buy me a coffee! Ko-fi
Required Python Version. No data.
Discord connect button.

Ultima Online Manifest Patcher

This application is used to provide cross-platform support to shards/servers that utilize a Manifest-based patching technique. The original patching concept is accredited to Voxpire with his ServUO/IPL used for installing, patching, and launching custom Ultima Online shards clients. To get this project up and running, you will need to know the root url and port required to access that data.

Feel free to join the Ultima Online: Linux and MacOS community by clicking ACCEPT INVITE button above.

If you are interested in an open-sourced cross-platform (x) installer, patcher, and launcher (IPL)... then check out my other project @Ohkthx/xIPL that utilizes this and implements similar functionality as Voxpire's IPL mentioned above. The xIPL extends this patcher further with the other elements an IPL must contain beyond just patching.

Requirements

Current requirements are at least Python Version 3.9.1, however with slight tweaking by removing the typing/type safety can make it on earlier Python3 versions. All external package requirements have been removed to allow for easier installation. You can check your python version with the following commands:

# One of these should work.
python --version
python3 --version

Configuration

Configuration file is located in the root directory, named config.ini, and generated after the first launch of the application. You will need to change the defaults for the patching to work. Defaults are below.

[DEFAULT]
debug = False
skip_prompt = False
verbose = True
local_root = client
remote_root = patch.example.com
remote_port = 8080
  • debug - Shows additional output used for troubleshooting.
  • skip_prompt - Skips prompting the user about the installation directory, useful for automation.
  • verbose - Shows additional text including progress on downloading a file.
  • local_root - Root directory to save the patch files in.
  • remote_root - Root URL/URI to obtain the Manifest, Hashes, and additional patch files.
  • remote_port - Port used to access the resources.

Arguments / Flags

These are optional arguments that can be passed to core.py at start to modify the application at run-time. These OVERRIDE the configuration file in the even two options are the same.

usage: core.py [-h] [--has-update] [--config CONFIG] [--version] [--verbose]

Install and Patch UO.

optional arguments:
  -h, --help       show this help message and exit
  --has-update     Checks if an update is available or not.
  --config CONFIG  Pass the 'config.ini' to use.
  --version        Returns the version of the script.
  --verbose        Overrides VERBOSE in config.ini.

Running

Use the command below to start the patcher, remember that upon first time execution, it will generate the config.ini file that must be updated with the correct remote resources to pull patches.

python3 uopatcher/core.py

# OR, this is optional way to start it.
make start

Releases

No releases published

Packages

No packages published