mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
removed obsolete function
and implemented installation.md
This commit is contained in:
parent
9d7d5496b0
commit
1c47f182b3
@ -1,38 +1,38 @@
|
|||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
This is the core package that needs to be installed for all other ExAd plugins/addons to work.
|
This is the core package that needs to be installed for all other ExAd plugins/addons to work.
|
||||||
|
|
||||||
IMPORTANT!!
|
IMPORTANT!!
|
||||||
Keep the folder struction att all time when copying over files.
|
Keep the folder struction att all time when copying over files.
|
||||||
|
|
||||||
## Client
|
## Client
|
||||||
* Copy missionconfig classes from "mpmissions\Exile.Altis\description.ext\" into your own description.ext
|
* Copy missionconfig classes from "mpmissions\Exile.Altis\description.ext\" into your own description.ext
|
||||||
Make sure their is only one appeareance of each Cfg class, e.g.
|
Make sure their is only one appeareance of each Cfg class, e.g.
|
||||||
This will break the missionfile
|
This will break the missionfile
|
||||||
```cpp
|
```cpp
|
||||||
class CfgFunctions
|
class CfgFunctions
|
||||||
{
|
{
|
||||||
#include "ExAdClient\CfgFunctions.cpp"
|
#include "ExAdClient\CfgFunctions.cpp"
|
||||||
};
|
};
|
||||||
|
|
||||||
class CfgFunctions
|
class CfgFunctions
|
||||||
{
|
{
|
||||||
#include "SOMEOTHER_ADDON\CfgFunctions.cpp"
|
#include "SOMEOTHER_ADDON\CfgFunctions.cpp"
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
This will work
|
This will work
|
||||||
```cpp
|
```cpp
|
||||||
class CfgFunctions
|
class CfgFunctions
|
||||||
{
|
{
|
||||||
#include "ExAdClient\CfgFunctions.cpp"
|
#include "ExAdClient\CfgFunctions.cpp"
|
||||||
#include "SOMEOTHER_ADDON\CfgFunctions.cpp"
|
#include "SOMEOTHER_ADDON\CfgFunctions.cpp"
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
* Copy over "Core" from "mpmissions\Exile.Altis\ExAd\Core"
|
* Copy over "Core" from "mpmissions\Exile.Altis\ExAd\Core"
|
||||||
|
|
||||||
## Server
|
## Server
|
||||||
|
|
||||||
* Navigate to "@ExileServer\addons\"
|
* Navigate to "@ExileServer\addons\"
|
||||||
* Copy "exad_core"
|
* Copy "exad_core"
|
||||||
* Pack exad_core into a .pbo file.
|
* Pack exad_core into a .pbo file.
|
||||||
|
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
class System
|
class System
|
||||||
{
|
{
|
||||||
file = "ExAdClient\Core\Functions\System";
|
file = "ExAdClient\Core\Functions\System";
|
||||||
|
class debugHandler {};
|
||||||
class serverDispatch {};
|
class serverDispatch {};
|
||||||
class incomingRequest {};
|
class incomingRequest {};
|
||||||
class initOverlay {};
|
|
||||||
class changeable {file = "ExAdClient\Core\postInit.sqf"; postInit = 1;};
|
class changeable {file = "ExAdClient\Core\postInit.sqf"; postInit = 1;};
|
||||||
};
|
};
|
||||||
class Utilities
|
class Utilities
|
||||||
|
Loading…
Reference in New Issue
Block a user