Epoch/Server_Install_Pack/@epochhive/epochah.hpp

134 lines
4.2 KiB
C++
Raw Normal View History

2015-05-07 18:43:36 +00:00
// Anti Hack
antihack_Enabled = "true"; // built-in Anti-Hack
antihack_maxTravelDistance = 30; // anti-teleport max travel distance
antihack_TPcenterDistance = 30; // anti-teleport distance from start
antihack_cfgPatchesCheck = "true"; // cfgPatches (AddOn Check)
2015-05-07 18:43:36 +00:00
antihack_PVSPrefix = "EPAH_"; // used to help whitelist pveh variables in BE without BEC and watchdog, leave blank to use no prefix.
antihack_cfgPatchesMode[] = {2}; // 0 == BAN - 1 = LOG, 2 = KICK
2015-11-08 15:26:38 +00:00
antihack_ahInitAuthCfg[] = {0,180}; // 0 == BAN - 1 = LOG, 60 = ban or log if anti hack is not started in 180 seconds
2016-09-01 00:29:08 +00:00
antihack_whitelistedCfgPatches[] = {}; //
antihack_banReason = "EpochMod Autoban";
antihack_kickReason = "EpochMod Autokick";
antihack_banReasons[] = {
"Mod mismatch, check that the mods you have enabled match server."
};
antihack_banDuration = 5; // Default 5 minute ban. -1 = permanent ban.
antihack_kickReasons[] = {
"Mod mismatch, check that the mods you have enabled match server."
};
antihack_checkFilesNew[] = { //script check, leave it blank to disable it
Release 0.3.8 (#502) * first build for 0.3.8 * 0.3.8.0190 * 0.3.8.0202 * 0.3.8.0213 * 0.3.7.0214 * 0.3.8.0222 * 0.3.8.0246 * 0.3.8.0247 fixed typo * 0.3.8.0249 more fixes for server compiler * 0.3.8.0256 * add build number and simple batch file for packing * match build number with internal * add build numbers to server pbo's and mission files also reworked build script for more options * 0.3.8.0261 * 0.3.8.0261 * 0.3.8.0283 * 0.3.8.0284 * changelog * 0.3.8.0307 * 0.3.8.0311 * remove old BEC plugin * update redis-server.exe to latest build and full config * 0.3.8.0314 * 0.3.8.0315 * inverse logic This should correctly prevent spawning these units nearby jammer or protection zones * use pushbackUnique here * optimized loot function by using selectRandom instead of slower sqf logic * 0.3.8.0316 * make use of new getDir functionality instead of BIS fnc * add lower disconnect value to server.cfg * use new getpos functionality * 0.3.8.0317 * 0.3.8.0319 * 0.3.8.0327 * 0.3.8.0338 changelog update tba * changelog * 0.3.8.0341 * BE update * 0.3.8.0353 * changelog * removed duplicates * 0.3.8.0355 fixed error in getIDC * 0.3.8.0356 revert to BIS_fnc_param as params threw errors * 0.3.8.0357 fixes for #496 #497 * 0.3.8.0359 fixed #497 fixed #496 * 0.3.8.0365 * 0.3.8.0371 * 0.3.8.0373 * 0.3.8.0379 * 0.3.8.0381 * 0.3.8.0386 * 0.3.8.0393 * 0.3.8.0395 * 0.3.8.0396 * 0.3.8.0397 * 0.3.8.0406 * 0.3.8.0409 * 0.3.8.0410 loot balance suppress error in spawnloot make near object check based on building size * 0.3.8.0412 * 0.3.8.0414 removed classes with scope 0 test remove loot trash on gear for #498 fixed #501 * 0.3.8.0415 * same
2016-04-08 20:21:46 +00:00
{"epoch_code\compile\setup\EPOCH_clientInit.sqf", "EPOCH_clientInit"},
{"epoch_code\compile\EPOCH_onEachFrame.sqf", "EPOCH_onEachFrame"},
{"epoch_code\compile\setup\EPOCH_client_rejectPlayer.sqf", "EPOCH_client_rejectPlayer"},
{"epoch_code\compile\setup\EPOCH_clientRespawn.sqf", "EPOCH_clientRespawn"}
2015-05-07 18:43:36 +00:00
};
antihack_addActionCheck = "true"; // false to disable addAction checks
2017-07-28 16:57:10 +00:00
antihack_antiTeleportCheck = "true"; // false to disable antiTeleport checks
2015-11-08 15:26:38 +00:00
adminMenu_Owner[] = {};
2015-05-07 18:43:36 +00:00
adminMenu_OwnerSetting[] = {
"ESP-PLAYER",
"ESP-VEHICLE",
"ESP-LOOT",
//"OLD-ESP",
//"OLD-MAP",
"PLAYER-TELEPORT",
"MAP-TELEPORT",
"INFRONT-TELEPORT",
"MAP-PLAYER",
"MAP-CORPSE",
"MAP-LOOT",
"MAP-ANIMALS",
2015-05-07 18:43:36 +00:00
"MAP-VEHICLE",
"MAP-AI",
"MAP-TRADER",
"MAP-BASEBUILDING",
2015-05-07 18:43:36 +00:00
"TARGET-HEAL",
"TARGET-AMMO",
"TARGET-KILL",
"TARGET-CRYPTO",
"TARGET-VEHICLEREPAIR",
"VEHICLEFLIP",
"BANPANNEL",
"SPAWN-MENU",
"FREE-CAM",
"INVISIBLE",
// "SPAWNLOOT",
"GODMODE",
"HEAL",
"VEHICLEREPAIR"
};
adminMenu_High[] = {};
adminMenu_HighSetting[] = {"PLAYER-TELEPORT","MAP-TELEPORT","TARGET-HEAL","TARGET-AMMO","TARGET-KILL","VEHICLEFLIP","BANPANNEL"};
adminMenu_Low[] = {};
adminMenu_LowSetting[] = {"PLAYER-TELEPORT","MAP-TELEPORT","TARGET-HEAL"};
adminMenu_BanReasons[] = {"Traderzone","Hacking","Glitch","Combat Log"};
adminMenu_cryptoCfg[] = {2500,1000,500,100,50,-1000};
//You can find the Key Codes here: https://community.bistudio.com/wiki/DIK_KeyCodes#F1..15
adminMenu_menuKey = 0x3B;
adminMenu_infrontTeleport = 0x06;
2019-08-19 18:05:20 +00:00
adminMenu_JumpUp = 0x05;
2015-05-07 18:43:36 +00:00
/*
AH CONFIG README
adminMenu_Owner[] = {
{"STEAMID64","ADMINNAME1"},
{"STEAMID64","ADMINNAME2"},
{"STEAMID64","ADMINNAME3"} //<- No comma on the last entry
2015-11-08 15:26:38 +00:00
};
2015-05-07 18:43:36 +00:00
adminMenu_High[] = {
{"STEAMID64","ADMINNAME4"},
{"STEAMID64","ADMINNAME5"},
{"STEAMID64","ADMINNAME6"} //<- No comma on the last entry
};
adminMenu_Low[] = {
{"STEAMID64","ADMINNAME7"},
{"STEAMID64","ADMINNAME8"},
{"STEAMID64","ADMINNAME9"} //<- No comma on the last entry
};
ADMINNAME will be used for the Admin log instead of in-game name.
Available Settings:
"PLAYER-TELEPORT" => Teleport Admin To Player and Player To Admin
"MAP-TELEPORT" => Click on Map to Teleport
"INFRONT-TELEPORT" => Teleport you infront
"FREE-CAM" => Free flying Cam
"INVISIBLE" => Make Playermodel invisible but other player can still hear your steps
"GODMODE" => Godmode for yourself which heal you as well
"HEAL" => Heal yourself
"VEHICLEREPAIR" => Repeair the vehicle you're looking on, or be inside
"MAP-PLAYER" => Player Marker
"MAP-CORPSE" => Corpse (Dead Player etc.) Marker
"MAP-LOOT" => Loot Marker
"MAP-VEHICLE" => Vehicle Marker
"MAP-AI" => AI Marker
"MAP-BASEBUILDING" => Base Building Marker
"ESP-PLAYER" => 3D ESP for Player
"ESP-VEHICLE" => 3D ESP for Vehicles
"ESP-LOOT" => 3D ESP for Loot Objects
"OLD-ESP" => Old 3D ESP
"OLD-MAP" => Old Map Marker
"TARGET-CRYPTO" => Give crypto to target
"TARGET-HEAL" => Heal Target
"TARGET-AMMO" => Give Target Ammo
"TARGET-KILL" => Kill Target
"TARGET-VEHICLEREPAIR" => Repair the Vehicle if target is inside of a vehicle
"VEHICLEFLIP" => Flip Vehicle
"BANPANNEL" => Access to Banpannel
"SPAWNLOOT" => Spawn Loot in Buildings (within 25m)
"SPAWN-MENU" => Access to Spawn Menu
2015-11-08 15:26:38 +00:00
*/