diff --git a/README.md b/README.md index 852c15a..0b38acc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -

+ +# Arma 3 After Action Replay *Addon* Component + +

Project Version @@ -12,25 +15,31 @@

-

+

Requires the latest version of CBA A3

-# Arma 3 After Action Replay *Addon* Component - Server Side addon for capturing unit movement and behaviour to a database for After Action Replays on a website. -### WIP +Being built along side the [web component](https://github.com/alexcroox/R3-Web). + +### Install + +1. Download the [latest release](https://github.com/alexcroox/R3/releases/latest) +2. Create a folder `/R3Extension/` in `/%appdata%/local/` and create a `config.properties` file with [this template](https://github.com/alexcroox/R3/blob/master/extension/config.properties) +3. Create a MySQL database with [this structure](https://github.com/alexcroox/R3-Web/blob/master/db-template.sql) +4. Enter your db details into `config.properties` +5. Add @R3 to your server startup mod list -This is a heavy work in progress, don't expect anything to work at this stage. -Being built along side the [web component](https://github.com/alexcroox/R3-Web). ### Special thanks ACE3 dev team for providing [coding guidelines](http://ace3mod.com/wiki/development/coding-guidelines.html) and the [project template](https://github.com/acemod/arma-project-template) this was created from. -[ARK] Kami for building the custom extension +[ARK] Kami for building the custom db extension + [ARK] Chairbourne for providing CUP source for the vehicle icons + [NRF1] Crazy for working with me on the original AAR as part of the old 5th Rifles mission framework. diff --git a/addons/main/script_mod.hpp b/addons/main/script_mod.hpp index 734b195..2f29d51 100644 --- a/addons/main/script_mod.hpp +++ b/addons/main/script_mod.hpp @@ -5,7 +5,7 @@ #define MAJOR 1 #define MINOR 0 -#define PATCHLVL 4 +#define PATCHLVL 5 #define BUILD 0 #define VERSION MAJOR.MINOR.PATCHLVL.BUILD diff --git a/mod.cpp b/mod.cpp index 49a36bc..9c135c2 100644 --- a/mod.cpp +++ b/mod.cpp @@ -6,7 +6,6 @@ description = "After Action Replays"; logo = "logo_aar_ca.paa"; logoOver = "logo_aar_ca.paa"; tooltip = "After Action Replay System"; -tooltipOwned = "AAR Owned?"; overview = "Server Side addon for capturing unit movement to a database for After Action Replays on a website"; author = "Titan"; overviewPicture = "logo_ace3_ca.paa";