-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.sqf
39 lines (31 loc) · 1.42 KB
/
config.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ******************************************************************************************
// * This project is licensed under the GNU Affero GPL v3. Copyright © 2014 A3Wasteland.com *
// ******************************************************************************************
// @file Version: 1.0
// @file Name: config.sqf
// @file Author: [404] Deadbeat, [404] Costlyy, [GoT] JoSchaap, AgentRev
// @file Created: 20/11/2012 05:13
// @file Description: Main config.
// For SERVER CONFIG, values are in server\init.sqf
// Towns and cities array
cityList = compileFinal preprocessFileLineNumbers "mapConfig\towns.sqf";
config_items_jerrycans_max = compileFinal "1";
config_items_syphon_hose_max = compileFinal "1";
config_refuel_amount_default = compileFinal "0.25";
config_refuel_amounts = compileFinal str
[
["Kart_01_Base_F", 1],
["Quadbike_01_base_F", 0.5],
["Tank", 0.1],
["Air", 0.1]
];
// NOTE: Player saving and money settings moved to external config (A3Wasteland_settings\main_config.sqf), default values are set in server\default_config.sqf
// Is player saving enabled?
// config_player_saving_enabled = compileFinal "0";
// How much do players spawn with?
// config_initial_spawn_money = compileFinal "100";
if (isServer) then
{
config_territory_markers = compileFinal str call compile preprocessFileLineNumbers "mapConfig\territories.sqf";
publicVariable "config_territory_markers";
};