Arma3_Exile_Mission/mpmissions/Exile.Altis/CfgExileCustomCode.cpp
2018-03-03 12:32:06 -07:00

61 lines
3.5 KiB
C++

/*
//Extended Base Mod
ExileClient_system_lootmanager_thread_spawn = "EBM\exileclient_system_lootmanager_thread_spawn.sqf";
//Persistent Tree
ExileServer_object_tree_network_chopTreeRequest="Custom\persistantTree\ExileServer_object_tree_network_chopTreeRequest.sqf";
//Exile Revive
ExileClient_object_player_death_startBleedingOut = "custom\EnigmaRevive\ExileClient_object_player_death_startBleedingOut.sqf"; //Happys Revive
ExileClient_object_player_event_onInventoryOpened = "custom\EnigmaRevive\ExileClient_object_player_event_onInventoryOpened.sqf"; //Happys Revive AntiDupe ---NEW with v0.65
//enhancedMovement
ExileClient_system_thread_initialize = "custom\enhancedMovement\ExileClient_system_thread_initialize.sqf";
*/
//Persistent Time and Weather System
ExileClient_object_player_stats_updateTemperature="custom\PTWS\ExileClient_object_player_stats_updateTemperature.sqf";
ExileClient_system_snow_thread_update="custom\PTWS\ExileClient_system_snow_thread_update.sqf";
ExileServer_system_weather_initialize="custom\PTWS\ExileServer_system_weather_initialize.sqf";
//SellCrate
ExileClient_gui_traderDialog_updateInventoryDropdown = "custom\SellCrates\ExileClient_gui_traderDialog_updateInventoryDropdown.sqf";
ExileClient_gui_wasteDumpDialog_show = "custom\SellCrates\ExileClient_gui_wasteDumpDialog_show.sqf";
ExileServer_system_trading_network_wasteDumpRequest = "custom\SellCrates\ExileServer_system_trading_network_wasteDumpRequest.sqf";
//Spawn Items in temporary vehicles
ExileServer_world_spawnVehicles="custom\addItemsToVehicles\ExileServer_world_spawnVehicles.sqf";
//RCON FIX Logs server uptime and time till restart
ExileServer_system_rcon_thread_check="custom\fixes\ExileServer_system_rcon_thread_check.sqf";
//Exile Loot Drop DLL
ExileServer_system_lootManager_dropItem = "\ExileLootDrop\ExileServer_system_lootManager_dropItem.sqf";
ExileServer_system_lootManager_spawnLootInBuilding = "\ExileLootDrop\ExileServer_system_lootManager_spawnLootInBuilding.sqf";
//ExAd
ExileClient_gui_xm8_slide = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_slide.sqf";
ExileClient_gui_xm8_show = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_show.sqf";
ExileServer_system_territory_database_load = "ExAdClient\VirtualGarage\CustomCode\ExileServer_system_territory_database_load.sqf";
//Fix for Error Foreign error: Unknown enum value: "MPKilled"
ExileServer_system_garbageCollector_deleteObject="custom\fixes\ExileServer_system_garbageCollector_deleteObject.sqf";
//Another fix for unknown enum value: PUBLIC
ExileServer_system_event_ambientFlyOver_start="custom\fixes\ExileServer_system_event_ambientFlyOver_start.sqf";
//igiload
ExileClient_object_player_event_onEnterSafezone="custom\fixes\ExileClient_object_player_event_onEnterSafezone.sqf";
//Vector Building
ExileClient_object_construction_move = "eXpochVectorBldg\ExileClient_object_construction_move.sqf";
ExileClient_gui_hud_event_onKeyDown = "eXpochVectorBldg\ExileClient_gui_hud_event_onKeyDown.sqf";
ExileClient_gui_hud_event_onKeyUp = "eXpochVectorBldg\ExileClient_gui_hud_event_onKeyUp.sqf";
ExileClient_construction_beginExistingObject = "eXpochVectorBldg\ExileClient_construction_beginExistingObject.sqf";
ExileClient_construction_beginNewObject = "eXpochVectorBldg\ExileClient_construction_beginNewObject.sqf";
ExileClient_construction_thread = "eXpochVectorBldg\ExileClient_construction_thread.sqf";
ExileClient_gui_constructionMode_update = "eXpochVectorBldg\ExileClient_gui_constructionMode_update.sqf";
ExileClient_util_world_canBuildHere = "eXpochVectorBldg\ExileClient_util_world_canBuildHere.sqf";