kuplion 1785 Report post Posted May 27, 2018 Prevent Low Level Raiding to protect the new players on your server. This is a configurable method of protecting new players on your server from the big boys who like to wipe bases off the map before they're established. You can set the level that protection stops at, and the message the raiding parties will receive upon attempting a raid. Hacking, Hotwiring, Breaching, Grinding, and Flag Stealing can all be protected against, by just selecting the overrides you wish to use. Install Instructions.. Copy the contents of CfgExileCustomCode.hpp to the "CfgExileCustomCode" of your mission file config.cpp. Copy the "Custom" folder to the root of your mission file (if you change this location, don't forget to update your file paths in the "CfgExileCustomCode" section.) Copy the contents of CfgSaveTheBambis.hpp to the top of your mission file config.cpp, just above "class CfgClans". Download.. https://github.com/kuplion/Low-Level-Raid-Protection 18 Share this post Link to post Share on other sites
geekm0nkey 144 Report post Posted May 28, 2018 (edited) Love the concept, but is there anything we could add to prevent players from just sitting at say level 2 and never advancing? Like preventing the placing of items that store, until they move out of the bambi protection phase? or limit the protection to say xx number of days? Good work though.. Still very useful. Edited May 28, 2018 by geekm0nkey 1 Share this post Link to post Share on other sites
[FYCA] BillytheDog 30 Report post Posted May 28, 2018 Love this, thanks a bunch! really like geekm0nkeys idea about limiting it to days or perhaps from protection period to protection period. Share this post Link to post Share on other sites
kuplion 1785 Report post Posted May 28, 2018 7 hours ago, geekm0nkey said: Love the concept, but is there anything we could add to prevent players from just sitting at say level 2 and never advancing? Like preventing the placing of items that store, until they move out of the bambi protection phase? or limit the protection to say xx number of days? Good work though.. Still very useful. 1 hour ago, [FYCA] BillytheDog said: Love this, thanks a bunch! really like geekm0nkeys idea about limiting it to days or perhaps from protection period to protection period. Personally I limit use of the Virtual Garage and Base Respawn until level 3, so players have to make a choice between unraidable and additional features. 1 Share this post Link to post Share on other sites
[FYCA] BillytheDog 30 Report post Posted May 28, 2018 31 minutes ago, kuplion said: Personally I limit use of the Virtual Garage and Base Respawn until level 3, so players have to make a choice between unraidable and additional features. I like that idea, my guys would have a shit if i did that 1 Share this post Link to post Share on other sites
kuplion 1785 Report post Posted May 28, 2018 10 minutes ago, [FYCA] BillytheDog said: I like that idea, my guys would have a shit if i did that Sounds like you sound implement it just for shits and giggles. 1 Share this post Link to post Share on other sites
[FYCA] BillytheDog 30 Report post Posted May 28, 2018 haha, Kuplion says ..... lol 1 Share this post Link to post Share on other sites
geekm0nkey 144 Report post Posted June 27, 2018 On 5/28/2018 at 2:54 AM, [FYCA] BillytheDog said: Love this, thanks a bunch! really like geekm0nkeys idea about limiting it to days or perhaps from protection period to protection period. Here is my version, I've added the limit to protect for only xx number of days regardless of base level. Here are the modified files. https://drive.google.com/open?id=1pp2wAv4gTfPSqgvavbARTIIEyJT58wGs Add the following to the bottom of the exile.ini file. Spoiler ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Territory Protection Expire Count ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; [loadTerritoryDays] SQL1_1 = SELECT DATEDIFF(NOW(),`created_at`) from territory where `id` = ? Number of Inputs = 1 SQL1_INPUTS = 1 OUTPUT = 1 Add the following to the config.cpp file in your mission folder under the class CfgSaveTheBambis section. Spoiler // Only protect base for this number of days stopProtectionAfterDays = 15; Message to players was slightly changed to let them know how old the base is when they are rejected. 2 Share this post Link to post Share on other sites
[FYCA] BillytheDog 30 Report post Posted June 29, 2018 On 6/28/2018 at 5:10 AM, geekm0nkey said: Here is my version, I've added the limit to protect for only xx number of days regardless of base level. Awesome, thanks for sharing Share this post Link to post Share on other sites