This set of instructions is assuming that the Exile server/client files have not be modded in any way. IE, you haven’t changed any ExileServer_* or ExileClient_* files.
Advanced Banking is split up into three parts: SQL/extDB2, Server side, and Client side
Add to the top
//Advance Banking by Shix and WolfkillArcadia
[] execVM "AdvancedBanking\AdvBanking_Client_Init.sqf";
Add to the top
//Advance Banking by Shix and WolfkillArcadia
#include "AdvancedBanking\Dialog\AdvBanking_Client_Defines.hpp"
#include "AdvancedBanking\Dialog\AdvBanking_Client_ATMDialog.hpp"
Add at the bottom if you don’t have RscTitles
class RscTitles
{
//Advance Banking
#include "AdvancedBanking\Dialog\AdvBanking_Client_CreditCard.hpp"
};
If you do have an RscTitles
Add then inside the {}
//Advance Banking
#include "AdvancedBanking\Dialog\AdvBanking_Client_CreditCard.hpp"
class CfgInteractionMenus
class CfgInteractionMenus {, add #include "CfgInteractionMenus.hpp"
class CfgExileCustomCode
Add the following inside the {} for class CfgExileCustomCode
ExileClient_gui_xm8_slide_apps_onOpen = "ClientOverrides\ExileClient_gui_xm8_slide_apps_onOpen.sqf";
ExileClient_gui_xm8_slide_players_onOpen = "ClientOverrides\ExileClient_gui_xm8_slide_players_onOpen.sqf";
So it looks like this:
class CfgExileCustomCode {
ExileClient_gui_xm8_slide_apps_onOpen = "ClientOverrides\ExileClient_gui_xm8_slide_apps_onOpen.sqf";
ExileClient_gui_xm8_slide_players_onOpen = "ClientOverrides\ExileClient_gui_xm8_slide_players_onOpen.sqf";
}; 5. If you have a `class CfgNetworkMessages {}` already, add `#include "CfgNetworkMessages.hpp"` inside it.
1. If you don't have `class CfgNetworkMessages {}`: At the end of the file, add
class CfgNetworkMessages
{
#include "CfgNetworkMessages.hpp"
};