Removed Weapon Spam

This commit is contained in:
Brett Nordin 2018-03-09 10:14:12 -07:00
parent 8f93784946
commit 72eb42d50d
2 changed files with 9 additions and 12 deletions

View File

@ -36,6 +36,7 @@ if ((_result select 0) isEqualTo 0) then
};
ExileServerStartTime = (call compile ("extDB3" callExtension "9:LOCAL_TIME")) select 1;
"Database protocol initialized!" call ExileServer_util_log;
"You are running Extdb3, If you run into issues please post on the forum under the extdb3 conversion." call ExileServer_util_log;
"extDB3" callExtension "9:ADD_PROTOCOL:LOG:TRADING:Exile_TradingLog";
"extDB3" callExtension "9:ADD_PROTOCOL:LOG:DEATH:Exile_DeathLog";
"extDB3" callExtension "9:ADD_PROTOCOL:LOG:TERRITORY:Exile_TerritoryLog";

View File

@ -38,15 +38,11 @@ _weaponClassNames = [];
}
forEach _arsenal;
if ((count _weaponClassNames) > 0) then
{
for "_i" from 0 to 100 do
{
"ERROR! ERROR! ERROR! ERROR! ERROR! ERROR!" call ExileServer_util_log;
};
"You have added weapons to your server that spawn in with attachments." call ExileServer_util_log;
"This will allow duping and money farming!" call ExileServer_util_log;
"To solve this, please remove the following weapons from your loot tables and trader config OR replace them with their non-attachment equivalent:" call ExileServer_util_log;
format ["%1", _weaponClassNames] call ExileServer_util_log;
"Example: Use arifle_Katiba_F instead of arifle_Katiba_ACO_pointer_snds_F." call ExileServer_util_log;
};