-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.lua
142 lines (142 loc) · 2.96 KB
/
settings.lua
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
data:extend({
-- Startup
{
type = "int-setting",
name = "ion-cannon-radius",
setting_type = "startup",
order = "a",
default_value = 25,
minimum_value = 2,
maximum_value = 500
},
{
type = "int-setting",
name = "ion-cannon-heatup-multiplier",
setting_type = "startup",
order = "b",
default_value = 2,
minimum_value = 1,
maximum_value = 50
},
{
type = "int-setting",
name = "ion-cannon-laser-damage",
setting_type = "startup",
order = "c",
default_value = 2500,
minimum_value = 1
},
{
type = "int-setting",
name = "ion-cannon-explosion-damage",
setting_type = "startup",
order = "d",
default_value = 1000,
minimum_value = 1
},
{
type = "bool-setting",
name = "ion-cannon-flames",
setting_type = "startup",
order = "e",
default_value = true
},
{
type = "bool-setting",
name = "ion-cannon-bob-updates",
setting_type = "startup",
order = "f",
default_value = true
},
-- Runtime (global)
{
type = "bool-setting",
name = "ion-cannon-auto-targeting",
setting_type = "runtime-global",
order = "a",
default_value = true
},
{
type = "bool-setting",
name = "ion-cannon-target-worms",
setting_type = "runtime-global",
order = "b",
default_value = true
},
{
type = "bool-setting",
name = "ion-cannon-auto-target-visible",
setting_type = "runtime-global",
order = "c",
default_value = true
},
{
type = "int-setting",
name = "ion-cannon-cooldown-seconds",
setting_type = "runtime-global",
order = "d",
default_value = 300,
minimum_value = 2
},
{
type = "int-setting",
name = "ion-cannon-chart-tag-duration",
setting_type = "runtime-global",
order = "e",
default_value = 720,
minimum_value = 120
},
{
type = "int-setting",
name = "ion-cannon-min-cannons-ready",
setting_type = "runtime-global",
order = "f",
default_value = 2,
minimum_value = 0
},
{
type = "bool-setting",
name = "ion-cannon-cheat-menu",
setting_type = "runtime-global",
order = "g",
default_value = false
},
-- Runtime (per player)
{
type = "bool-setting",
name = "ion-cannon-play-voices",
setting_type = "runtime-per-user",
order = "a",
default_value = true
},
{
type = "string-setting",
name = "ion-cannon-voice-style",
setting_type = "runtime-per-user",
order = "b",
default_value = "CommandAndConquer",
allowed_values = {"CommandAndConquer", "TiberianSunEVA", "TiberianSunCABAL"}
},
{
type = "bool-setting",
name = "ion-cannon-play-klaxon",
setting_type = "runtime-per-user",
order = "c",
default_value = true
},
{
type = "int-setting",
name = "ion-cannon-ready-ticks",
setting_type = "runtime-per-user",
order = "d",
default_value = 300,
minimum_value = 1
},
{
type = "bool-setting",
name = "ion-cannon-custom-alerts",
setting_type = "runtime-per-user",
order = "e",
default_value = true
}
})