Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates internal version number to v1.6 #58

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion OpenRVS/classes/OpenRVS.uc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class OpenRVS extends Object;

const OPENRVS_VERSION = "v1.5";
const OPENRVS_VERSION = "v1.6";
// This URL returns the latest release version from GitHub over HTTP.
const LATEST_VERSION_URL = "http://api.openrvs.org/latest";

Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ A patch to fix Red Storm Entertainment's mistakes (intentional and otherwise). A

## Installing or Updating OpenRVS (Client Instructions)

1. Download the latest release ZIP from the
[Releases page](https://github.com/OpenRVS-devs/OpenRVS/releases).
1. Stop your game if it's running.
2. Extract the contents of the OpenRVS ZIP file to your game's `system`
directory. For Steam, this is `steamapps\common\Rainbow Six 3 Gold\system`.
Expand All @@ -23,22 +25,24 @@ A patch to fix Red Storm Entertainment's mistakes (intentional and otherwise). A

## Installing or Updating OpenRVS (Server Instructions)

1. Stop your server process if it's running.
2. Extract the contents of the OpenRVS ZIP file to your game's `system`
1. Download the latest release ZIP from the
[Releases page](https://github.com/OpenRVS-devs/OpenRVS/releases).
2. Stop your server process if it's running.
3. Extract the contents of the OpenRVS ZIP file to your game's `system`
directory.
3. Edit `RavenShield.mod` in your game's `Mods` directory, and add the following:
4. Edit `RavenShield.mod` in your game's `Mods` directory, and add the following
lines. NOTE: The `OpenRVS.OpenBeacon` line should replace the
`IpDrv.UdpBeacon` line. This may not be compatible with N4Admin installations.
```ini
ServerActors=OpenRVS.OpenServer
ServerActors=OpenRVS.OpenBeacon
ServerActors=OpenRenderFix.OpenFix
ServerPackages=OpenRenderFix
```
NOTE: The `OpenRVS.OpenBeacon` line should replace the `IpDrv.UdpBeacon` line.
This may not be compatible with N4Admin installations.
4. Edit `system/RavenShield.ini`, and ensure that your `ServerBeaconPort` is set
5. Edit `system/RavenShield.ini`, and ensure that your `ServerBeaconPort` is set
to exactly 1000 above your server's `Port`, and that `BeaconPort` is exactly
2000 above your server's `Port`.
5. Launch the server!
6. Launch the server!

NOTE: Server admins can ban users by IP address in the `BanList.ini` file, found
in your game's `Server` directory.
Expand Down