github-linguist 4.8.0 → 4.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/grammars/source.assembly.json +121 -0
- data/grammars/source.gdscript.json +102 -7
- data/grammars/source.papyrus.skyrim.json +1328 -0
- data/grammars/source.pawn.json +736 -0
- data/grammars/source.perl6fe.json +1 -1
- data/grammars/source.puppet.json +47 -101
- data/grammars/source.renpy.json +2 -2
- data/grammars/source.shell.json +2 -1
- data/grammars/source.terra.json +146 -0
- data/grammars/source.toml.json +24 -1
- data/grammars/source.yaml.json +1 -0
- data/grammars/text.html.vue.json +0 -1
- data/lib/linguist/blob.rb +1 -1
- data/lib/linguist/heuristics.rb +1 -1
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +35 -12
- data/lib/linguist/lazy_blob.rb +1 -0
- data/lib/linguist/repository.rb +3 -0
- data/lib/linguist/samples.json +634 -157
- data/lib/linguist/shebang.rb +2 -2
- data/lib/linguist/version.rb +1 -1
- metadata +11 -19
- data/grammars/source.asm.x86.json +0 -182
- data/grammars/source.autoit.3.json +0 -132
- data/grammars/source.clips.json +0 -80
- data/grammars/source.compiled-papyrus.json +0 -11
- data/grammars/source.idris.json +0 -537
- data/grammars/source.inno.json +0 -69
- data/grammars/source.nix.json +0 -1200
- data/grammars/source.papyrus-assembly.json +0 -266
- data/grammars/source.papyrus.json +0 -231
- data/grammars/source.plsql.oracle.json +0 -642
- data/grammars/source.scad.json +0 -152
- data/grammars/text.html.creole.json +0 -329
@@ -1,266 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"fileTypes": [
|
3
|
-
"pas"
|
4
|
-
],
|
5
|
-
"foldingStartMarker": "^\\s*\\.(info|userFlagsRef)",
|
6
|
-
"foldingStopMarker": "^\\s*\\.(endInfo|endUserFlagsRef)",
|
7
|
-
"name": "Papyrus Assembly",
|
8
|
-
"patterns": [
|
9
|
-
{
|
10
|
-
"include": "#string"
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"include": "#numeric"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"include": "#boolean"
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"include": "#semicolon-comment"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"begin": "(?i)^\\s*(\\.)(function)\\s+(\\w+)((\\s+\\w+)*)",
|
23
|
-
"beginCaptures": {
|
24
|
-
"3": {
|
25
|
-
"name": "entity.name.function.papyrus-assembly"
|
26
|
-
},
|
27
|
-
"4": {
|
28
|
-
"name": "storage.modifier.papyrus-assembly"
|
29
|
-
}
|
30
|
-
},
|
31
|
-
"end": "(?i)^\\s*(\\.)(endFunction)\\b",
|
32
|
-
"patterns": [
|
33
|
-
{
|
34
|
-
"captures": {
|
35
|
-
"3": {
|
36
|
-
"name": "storage.type.papyrus-assembly"
|
37
|
-
}
|
38
|
-
},
|
39
|
-
"match": "(?i)^\\s*(\\.)(return)\\s+(\\w+)"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"include": "$self"
|
43
|
-
}
|
44
|
-
]
|
45
|
-
},
|
46
|
-
{
|
47
|
-
"captures": {
|
48
|
-
"4": {
|
49
|
-
"name": "variable.other.temp.papyrus-assembly"
|
50
|
-
},
|
51
|
-
"5": {
|
52
|
-
"name": "variable.other.papyrus-assembly"
|
53
|
-
},
|
54
|
-
"6": {
|
55
|
-
"name": "storage.type.papyrus-assembly"
|
56
|
-
},
|
57
|
-
"8": {
|
58
|
-
"name": "storage.modifier.papyrus-assembly"
|
59
|
-
}
|
60
|
-
},
|
61
|
-
"match": "(?i)^\\s*(\\.)(variable|local|property)\\s+((::\\w+)|(\\w+))\\s+(\\w+)(\\s+(\\w+))?"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"captures": {
|
65
|
-
"4": {
|
66
|
-
"name": "variable.parameter.temp.papyrus-assembly"
|
67
|
-
},
|
68
|
-
"5": {
|
69
|
-
"name": "variable.parameter.papyrus-assembly"
|
70
|
-
},
|
71
|
-
"6": {
|
72
|
-
"name": "storage.type.papyrus-assembly"
|
73
|
-
}
|
74
|
-
},
|
75
|
-
"match": "(?i)^\\s*(\\.)(param)\\s+((::\\w+)|(\\w+))\\s+(\\w+)"
|
76
|
-
},
|
77
|
-
{
|
78
|
-
"begin": "(?i)^\\s*(\\.)(code)\\b",
|
79
|
-
"end": "(?i)^\\s*(\\.)(endCode)\\b",
|
80
|
-
"patterns": [
|
81
|
-
{
|
82
|
-
"include": "#code"
|
83
|
-
}
|
84
|
-
]
|
85
|
-
}
|
86
|
-
],
|
87
|
-
"repository": {
|
88
|
-
"boolean": {
|
89
|
-
"match": "(?i)\\b(true|false)\\b",
|
90
|
-
"name": "constant.language.bool.papyrus-assembly"
|
91
|
-
},
|
92
|
-
"code": {
|
93
|
-
"patterns": [
|
94
|
-
{
|
95
|
-
"include": "#string"
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"include": "#numeric"
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"include": "#boolean"
|
102
|
-
},
|
103
|
-
{
|
104
|
-
"include": "#semicolon-comment"
|
105
|
-
},
|
106
|
-
{
|
107
|
-
"match": "(?i)(::(state|NoneVar|temp\\d+)|\\bself)\\b",
|
108
|
-
"name": "variable.language.code.papyrus-assembly"
|
109
|
-
},
|
110
|
-
{
|
111
|
-
"captures": {
|
112
|
-
"1": {
|
113
|
-
"name": "keyword.control.return.code.papyrus-assembly"
|
114
|
-
}
|
115
|
-
},
|
116
|
-
"match": "(?i)^\\s*(RETURN)\\b"
|
117
|
-
},
|
118
|
-
{
|
119
|
-
"captures": {
|
120
|
-
"1": {
|
121
|
-
"name": "keyword.operator.callmethod.code.papyrus-assembly"
|
122
|
-
}
|
123
|
-
},
|
124
|
-
"match": "(?i)^\\s*(CALLMETHOD)\\s+(\\w+)"
|
125
|
-
},
|
126
|
-
{
|
127
|
-
"captures": {
|
128
|
-
"1": {
|
129
|
-
"name": "keyword.operator.callmethod.code.papyrus-assembly"
|
130
|
-
},
|
131
|
-
"2": {
|
132
|
-
"name": "storage.type.code.papyrus-assembly"
|
133
|
-
}
|
134
|
-
},
|
135
|
-
"match": "(?i)^\\s*(CALLSTATIC)\\s+(\\w+)\\s+(\\w+)"
|
136
|
-
},
|
137
|
-
{
|
138
|
-
"captures": {
|
139
|
-
"1": {
|
140
|
-
"name": "keyword.operator.callparent.code.papyrus-assembly"
|
141
|
-
}
|
142
|
-
},
|
143
|
-
"match": "(?i)^\\s*(CALLPARENT)\\s+(\\w+)"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"captures": {
|
147
|
-
"1": {
|
148
|
-
"name": "keyword.operator.code.papyrus-assembly"
|
149
|
-
}
|
150
|
-
},
|
151
|
-
"match": "(?i)^\\s*(PROPGET|PROPSET)\\b"
|
152
|
-
},
|
153
|
-
{
|
154
|
-
"captures": {
|
155
|
-
"1": {
|
156
|
-
"name": "keyword.operator.cast.code.papyrus-assembly"
|
157
|
-
}
|
158
|
-
},
|
159
|
-
"match": "(?i)^\\s*(CAST)\\b"
|
160
|
-
},
|
161
|
-
{
|
162
|
-
"captures": {
|
163
|
-
"1": {
|
164
|
-
"name": "keyword.operator.arithmetic.code.papyrus-assembly"
|
165
|
-
}
|
166
|
-
},
|
167
|
-
"match": "(?i)^\\s*((I|F)ADD|(I|F)SUBTRACT|(I|F)NEGATE|(I|F)MULTIPLY|(I|F)DIVIDE|IMOD)\\b"
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"captures": {
|
171
|
-
"1": {
|
172
|
-
"name": "keyword.operator.logical.code.papyrus-assembly"
|
173
|
-
}
|
174
|
-
},
|
175
|
-
"match": "(?i)^\\s*(COMPAREEQ|COMPAREGT(E)?|COMPARELT(E)?|NOT)\\b"
|
176
|
-
},
|
177
|
-
{
|
178
|
-
"captures": {
|
179
|
-
"1": {
|
180
|
-
"name": "keyword.operator.string.code.papyrus-assembly"
|
181
|
-
}
|
182
|
-
},
|
183
|
-
"match": "(?i)^\\s*(STRCAT)\\b"
|
184
|
-
},
|
185
|
-
{
|
186
|
-
"captures": {
|
187
|
-
"1": {
|
188
|
-
"name": "keyword.operator.assignment.code.papyrus-assembly"
|
189
|
-
}
|
190
|
-
},
|
191
|
-
"match": "(?i)^\\s*(ASSIGN)\\b"
|
192
|
-
},
|
193
|
-
{
|
194
|
-
"captures": {
|
195
|
-
"1": {
|
196
|
-
"name": "keyword.operator.array.code.papyrus-assembly"
|
197
|
-
}
|
198
|
-
},
|
199
|
-
"match": "(?i)^\\s*(ARRAYCREATE|ARRAYLENGTH|ARRAYGETELEMENT|ARRAYSETELEMENT|ARRAYFINDELEMENT|ARRAYRFINDELEMENT)\\b"
|
200
|
-
},
|
201
|
-
{
|
202
|
-
"captures": {
|
203
|
-
"1": {
|
204
|
-
"name": "keyword.control.jump.code.papyrus-assembly"
|
205
|
-
},
|
206
|
-
"2": {
|
207
|
-
"name": "entity.name.tag.label.code.papyrus-assembly"
|
208
|
-
}
|
209
|
-
},
|
210
|
-
"match": "(?i)^\\s*(JUMP)\\s+(\\w+)"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"captures": {
|
214
|
-
"1": {
|
215
|
-
"name": "keyword.control.jump.code.papyrus-assembly"
|
216
|
-
},
|
217
|
-
"4": {
|
218
|
-
"name": "entity.name.tag.label.code.papyrus-assembly"
|
219
|
-
}
|
220
|
-
},
|
221
|
-
"match": "(?i)^\\s*(JUMP(F|T))\\s+(\\S+)\\s+(\\w+)"
|
222
|
-
},
|
223
|
-
{
|
224
|
-
"captures": {
|
225
|
-
"1": {
|
226
|
-
"name": "entity.name.tag.label.code.papyrus-assembly"
|
227
|
-
},
|
228
|
-
"2": {
|
229
|
-
"name": "keyword.control.label.code.papyrus-assembly"
|
230
|
-
}
|
231
|
-
},
|
232
|
-
"match": "(?i)^\\s*(\\w+)(:)"
|
233
|
-
},
|
234
|
-
{
|
235
|
-
"captures": {
|
236
|
-
"1": {
|
237
|
-
"name": "keyword.code.papyrus-assembly"
|
238
|
-
}
|
239
|
-
},
|
240
|
-
"match": "(?i)\\b(RETURN|CALLMETHOD|CALLSTATIC|CALLPARENT|PROPGET|PROPSET|CAST|(I|F)ADD|(I|F)SUBTRACT|(I|F)NEGATE|(I|F)MULTIPLY|(I|F)DIVIDE|IMOD|COMPAREEQ|COMPAREGT(E)?|COMPARELT(E)?|NOT|STRCAT|ASSIGN|ARRAYCREATE|ARRAYLENGTH|ARRAYGETELEMENT|ARRAYSETELEMENT|ARRAYFINDELEMENT|ARRAYRFINDELEMENT|JUMP|JUMP(F|T))\\b"
|
241
|
-
}
|
242
|
-
]
|
243
|
-
},
|
244
|
-
"numeric": {
|
245
|
-
"match": "\\b[\\d.]+\\b",
|
246
|
-
"name": "constant.numeric.papyrus-assembly"
|
247
|
-
},
|
248
|
-
"semicolon-comment": {
|
249
|
-
"match": ";.*$",
|
250
|
-
"name": "comment.line.semicolon.code.papyrus-assembly"
|
251
|
-
},
|
252
|
-
"string": {
|
253
|
-
"begin": "\"",
|
254
|
-
"end": "\"",
|
255
|
-
"name": "string.quoted.double.papyrus-assembly",
|
256
|
-
"patterns": [
|
257
|
-
{
|
258
|
-
"match": "\\\\.",
|
259
|
-
"name": "constant.character.escape.papyrus-assembly"
|
260
|
-
}
|
261
|
-
]
|
262
|
-
}
|
263
|
-
},
|
264
|
-
"scopeName": "source.papyrus-assembly",
|
265
|
-
"uuid": "290b91f5-9e96-42ed-bd90-77a045345370"
|
266
|
-
}
|
@@ -1,231 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"comment": "",
|
3
|
-
"fileTypes": [
|
4
|
-
"psc"
|
5
|
-
],
|
6
|
-
"firstLineMatch": "(?i)^scriptname",
|
7
|
-
"foldingStartMarker": "(?i)^\\s*(state|event|(\\S+\\s+)?function)",
|
8
|
-
"foldingStopMarker": "(?i)^\\s*(endstate|endevent|endfunction)",
|
9
|
-
"name": "Papyrus",
|
10
|
-
"patterns": [
|
11
|
-
{
|
12
|
-
"begin": "(?<!\\\\)\"",
|
13
|
-
"end": "(?<!\\\\)\"",
|
14
|
-
"name": "string.quoted.double.papyrus"
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"begin": "(?<!\\\\)'",
|
18
|
-
"end": "(?<!\\\\)'",
|
19
|
-
"name": "string.quoted.single.papyrus"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"begin": ";/",
|
23
|
-
"end": "/;",
|
24
|
-
"name": "comment.block.papyrus"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"match": "(;).*$\\n?",
|
28
|
-
"name": "comment.line.semicolon.papyrus"
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"begin": "{",
|
32
|
-
"end": "}",
|
33
|
-
"name": "comment.documentation.papyrus"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"captures": {
|
37
|
-
"1": {
|
38
|
-
"name": "support.type.other.scriptname-declaration.papyrus"
|
39
|
-
},
|
40
|
-
"2": {
|
41
|
-
"name": "entity.type.scriptname.papyrus"
|
42
|
-
},
|
43
|
-
"4": {
|
44
|
-
"name": "variable.language.extends.papyrus"
|
45
|
-
},
|
46
|
-
"5": {
|
47
|
-
"name": "entity.other.inherited-class.papyrus"
|
48
|
-
},
|
49
|
-
"7": {
|
50
|
-
"name": "variable.language.conditional.papyrus"
|
51
|
-
}
|
52
|
-
},
|
53
|
-
"match": "(?i)^\\s*(scriptname)\\s+(\\w+)(\\s+(extends)\\s+(\\S+))?(\\s+(conditional))?",
|
54
|
-
"name": "meta.scriptname-declaration.papyrus"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"begin": "(?i)(property)\\s+(\\S+)",
|
58
|
-
"beginCaptures": {
|
59
|
-
"1": {
|
60
|
-
"name": "keyword.other.property.papyrus"
|
61
|
-
},
|
62
|
-
"2": {
|
63
|
-
"name": "variable.other.property.papyrus"
|
64
|
-
}
|
65
|
-
},
|
66
|
-
"end": "(?i)\\b(auto|autoreadonly)?(\\s+conditional)?\\n",
|
67
|
-
"endCaptures": {
|
68
|
-
"1": {
|
69
|
-
"name": "variable.language.auto.papyrus"
|
70
|
-
},
|
71
|
-
"2": {
|
72
|
-
"name": "variable.language.conditional.papyrus"
|
73
|
-
}
|
74
|
-
},
|
75
|
-
"name": "meta.property.papyrus",
|
76
|
-
"patterns": [
|
77
|
-
{
|
78
|
-
"include": "$self"
|
79
|
-
}
|
80
|
-
]
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"begin": "(?i)\\b(function|event)\\s+([^\\(]*)\\(",
|
84
|
-
"beginCaptures": {
|
85
|
-
"1": {
|
86
|
-
"name": "keyword.control.functionstart.papyrus"
|
87
|
-
},
|
88
|
-
"2": {
|
89
|
-
"name": "entity.name.function.papyrus"
|
90
|
-
}
|
91
|
-
},
|
92
|
-
"end": "\\)",
|
93
|
-
"name": "meta.function.papyrus",
|
94
|
-
"patterns": [
|
95
|
-
{
|
96
|
-
"include": "#params"
|
97
|
-
}
|
98
|
-
]
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"captures": {
|
102
|
-
"1": {
|
103
|
-
"name": "keyword.control.statestart.papyrus"
|
104
|
-
},
|
105
|
-
"2": {
|
106
|
-
"name": "entity.name.section.papyrus"
|
107
|
-
}
|
108
|
-
},
|
109
|
-
"match": "(?i)\\b(state)\\s+(.*)\\n",
|
110
|
-
"name": "meta.state.papyrus"
|
111
|
-
},
|
112
|
-
{
|
113
|
-
"match": "(?i)\\b(conditional)\\s*$",
|
114
|
-
"name": "variable.language.conditional.papyrus"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"include": "#constants"
|
118
|
-
},
|
119
|
-
{
|
120
|
-
"match": "&&|\\|\\||\\=\\=|!\\=|<\\=|>\\=|>|<",
|
121
|
-
"name": "keyword.operator.logical.papyrus"
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"match": "\\+|\\-|\\*|/|!|%",
|
125
|
-
"name": "keyword.operator.arithmetic.papyrus"
|
126
|
-
},
|
127
|
-
{
|
128
|
-
"match": "\\=|\\+\\=|-\\=|\\*\\=|/\\=|%\\=",
|
129
|
-
"name": "keyword.operator.assignment.papyrus"
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"match": "(?i)\\b(if|else|elseif|endif|while|endwhile|return)\\b",
|
133
|
-
"name": "keyword.control.flow.papyrus"
|
134
|
-
},
|
135
|
-
{
|
136
|
-
"match": "(?i)\\b(import)\\b",
|
137
|
-
"name": "keyword.control.papyrus"
|
138
|
-
},
|
139
|
-
{
|
140
|
-
"match": "(?i)\\b(global|hidden|native)\\b",
|
141
|
-
"name": "storage.modifier.papyrus"
|
142
|
-
},
|
143
|
-
{
|
144
|
-
"match": "(?i)\\b(self|parent|extends|auto)\\b",
|
145
|
-
"name": "variable.language.papyrus"
|
146
|
-
},
|
147
|
-
{
|
148
|
-
"match": "(?i)\\b(endstate)\\b",
|
149
|
-
"name": "keyword.control.stateend.papyrus"
|
150
|
-
},
|
151
|
-
{
|
152
|
-
"match": "(?i)\\b(endfunction)\\b",
|
153
|
-
"name": "keyword.control.functionend.papyrus"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"match": "(?i)\\b(endevent)\\b",
|
157
|
-
"name": "keyword.control.eventend.papyrus"
|
158
|
-
},
|
159
|
-
{
|
160
|
-
"match": "(?i)\\b(endproperty)\\b",
|
161
|
-
"name": "keyword.control.propertyend.papyrus"
|
162
|
-
},
|
163
|
-
{
|
164
|
-
"include": "#base-types"
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"include": "#class-types"
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"include": "#builtin-funcs"
|
171
|
-
}
|
172
|
-
],
|
173
|
-
"repository": {
|
174
|
-
"base-types": {
|
175
|
-
"match": "(?i)\\b(int|string|float|bool)\\b",
|
176
|
-
"name": "storage.type.papyrus"
|
177
|
-
},
|
178
|
-
"constants": {
|
179
|
-
"patterns": [
|
180
|
-
{
|
181
|
-
"match": "\\b(?i:(\\d+\\.\\d*(e[\\-\\+]?\\d+)?))(?=[^a-zA-Z_])",
|
182
|
-
"name": "constant.numeric.float.papyrus"
|
183
|
-
},
|
184
|
-
{
|
185
|
-
"match": "\\b([1-9]+[0-9]*|0x+[0-9a-fA-F]*|0)",
|
186
|
-
"name": "constant.numeric.integer.papyrus"
|
187
|
-
},
|
188
|
-
{
|
189
|
-
"match": "(?i)\\b(true|false|none)\\b",
|
190
|
-
"name": "constant.language.bool.papyrus"
|
191
|
-
}
|
192
|
-
]
|
193
|
-
},
|
194
|
-
"builtin-funcs": {
|
195
|
-
"match": "(?i)\\b(addinventoryeventfilter|dispel|getbaseobject|getcasteractor|gettargetactor|onactivate|onanimationevent|onanimationeventunregistered|onattachedtocell|oncellattach|oncelldetach|oncellload|onclose|oncombatstatechanged|oncontainerchanged|ondeath|ondestructionstagechanged|ondetachedfromcell|ondying|oneffectfinish|oneffectstart|onequipped|ongainlos|ongetup|ongrab|onhit|onitemadded|onitemremoved|onload|onlocationchange|onlockstatechanged|onlostlos|onmagiceffectapply|onobjectequipped|onobjectunequipped|onopen|onpackagechange|onpackageend|onpackagestart|onplayerbowshot|onplayerloadgame|onraceswitchcomplete|onread|onrelease|onreset|onsell|onsit|onsleepstart|onsleepstop|onspellcast|ontrackedstatsevent|ontranslationcomplete|ontranslationfailed|ontraphit|ontraphitstart|ontraphitstop|ontrigger|ontriggerenter|ontriggerleave|onunequipped|onunload|onupdate|onupdategametime|onwardhit|registerforanimationevent|registerforlos|registerforsinglelosgain|registerforsingleloslost|registerforsingleupdate|registerforsingleupdategametime|registerforsleep|registerfortrackedstatsevent|registerforupdate|registerforupdategametime|removeallinventoryeventfilters|removeinventoryeventfilter|startobjectprofiling|stopobjectprofiling|unregisterforanimationevent|unregisterforlos|unregisterforsleep|unregisterfortrackedstatsevent|unregisterforupdate|unregisterforupdategametime|addperk|addshout|addspell|addtofaction|allowbleedoutdialogue|allowpcdialogue|attachashpile|canflyhere|cleararrested|clearexpressionoverride|clearextraarrows|clearforcedlandingmarker|clearforcedmovement|clearkeepoffsetfromactor|clearlookat|damageactorvalue|damageav|dismount|dispelallspells|dispelspell|docombatspellapply|drawweapon|enableai|enddeferredkill|equipitem|equipshout|equipspell|evaluatepackage|forceactorvalue|forceav|forcemovementdirection|forcemovementdirectionramp|forcemovementrotationspeed|forcemovementrotationspeedramp|forcemovementspeed|forcemovementspeedramp|forcetargetangle|forcetargetdirection|forcetargetspeed|getactorbase|getactorvalue|getactorvaluepercentage|getav|getavpercentage|getbaseactorvalue|getbaseav|getbribeamount|getcombatstate|getcombattarget|getcrimefaction|getcurrentpackage|getdialoguetarget|getequippeditemtype|getequippedshield|getequippedshout|getequippedspell|getequippedweapon|getfactionrank|getfactionreaction|getflyingstate|getforcedlandingmarker|getgoldamount|gethighestrelationshiprank|getkiller|getlevel|getleveledactorbase|getlightlevel|getlowestrelationshiprank|getnobleedoutrecovery|getplayercontrols|getrace|getrelationshiprank|getsitstate|getsleepstate|getvoicerecoverytime|hasassociation|hasfamilyrelationship|haslos|hasmagiceffect|hasmagiceffectwithkeyword|hasparentrelationship|hasperk|hasspell|isalarmed|isalerted|isallowedtofly|isarrested|isarrestingtarget|isbeingridden|isbleedingout|isbribed|ischild|iscommandedactor|isdead|isdetectedby|isdoingfavor|isequipped|isessential|isflying|isghost|isguard|ishostiletoactor|isincombat|isinfaction|isinkillmove|isintimidated|isonmount|isplayerslastriddenhorse|isplayerteammate|isrunning|issneaking|issprinting|istrespassing|isunconscious|isweapondrawn|keepoffsetfromactor|kill|killessential|killsilent|makeplayerfriend|modactorvalue|modav|modfactionrank|modfavorpoints|modfavorpointswithglobal|movetopackagelocation|onenterbleedout|openinventory|pathtoreference|playidle|playidlewithtarget|playsubgraphanimation|removefromallfactions|removefromfaction|removeperk|removeshout|removespell|resethealthandlimbs|restoreactorvalue|restoreav|resurrect|sendassaultalarm|sendtrespassalarm|setactorvalue|setalert|setallowflying|setallowflyingex|setalpha|setattackactoronsight|setav|setbribed|setcrimefaction|setcriticalstage|setdoingfavor|setdontmove|setexpressionoverride|seteyetexture|setfactionrank|setforcedlandingmarker|setghost|setheadtracking|setintimidated|setlookat|setnobleedoutrecovery|setnotshowonstealthmeter|setoutfit|setplayercontrols|setplayerresistingarrest|setplayerteammate|setrace|setrelationshiprank|setrestrained|setsubgraphfloatvariable|setunconscious|setvehicle|setvoicerecoverytime|showbartermenu|showgiftmenu|startcannibal|startcombat|startdeferredkill|startsneaking|startvampirefeed|stopcombat|stopcombatalarm|trapsoul|unequipall|unequipitem|unequipitemslot|unequipshout|unequipspell|unlockowneddoorsincell|willintimidatesucceed|wornhaskeyword|getclass|getdeadcount|getgiftfilter|getsex|isinvulnerable|isprotected|isunique|setessential|setinvulnerable|setprotected|getowningquest|getactorowner|getfactionowner|isattached|isinterior|reset|setactorowner|setfactionowner|setfogcolor|setfogplanes|setfogpower|setpublic|centeroncell|centeroncellandwait|closeuserlog|dbsendplayerposition|debugchannelnotify|dumpaliasdata|getconfigname|getplatformname|getversionnumber|messagebox|notification|openuserlog|playermovetoandwait|quitgame|sendanimationevent|setfootik|setgodmode|showrefposition|startscriptprofiling|startstackprofiling|stopscriptprofiling|stopstackprofiling|takescreenshot|toggleai|togglecollisions|togglemenus|trace|traceandbox|traceconditional|tracestack|traceuser|play|stop|ishostile|canpaycrimegold|getcrimegold|getcrimegoldnonviolent|getcrimegoldviolent|getinfamy|getinfamynonviolent|getinfamyviolent|getreaction|getstolenitemvaluecrime|getstolenitemvaluenocrime|isfactionincrimegroup|isplayerexpelled|modcrimegold|modreaction|playerpaycrimegold|sendplayertojail|setally|setcrimegold|setcrimegoldviolent|setenemy|setplayerenemy|setplayerexpelled|setreaction|getformid|getgoldvalue|haskeyword|playerknows|addform|find|getat|getsize|hasform|removeaddedform|revert|addachievement|addhavokballandsocketconstraint|addperkpoints|advanceskill|calculatefavorcost|clearprison|cleartempeffects|disableplayercontrols|enablefasttravel|enableplayercontrols|fadeoutgame|fasttravel|findclosestactor|findclosestactorfromref|findclosestreferenceofanytypeinlist|findclosestreferenceofanytypeinlistfromref|findclosestreferenceoftype|findclosestreferenceoftypefromref|findrandomactor|findrandomactorfromref|findrandomreferenceofanytypeinlist|findrandomreferenceofanytypeinlistfromref|findrandomreferenceoftype|findrandomreferenceoftypefromref|forcefirstperson|forcethirdperson|getform|getformfromfile|getgamesettingfloat|getgamesettingint|getgamesettingstring|getplayer|getplayergrabbedref|getplayerslastriddenhorse|getrealhourspassed|getsunpositionx|getsunpositiony|getsunpositionz|hidetitlesequencemenu|incrementskill|incrementskillby|incrementstat|isactivatecontrolsenabled|iscamswitchcontrolsenabled|isfasttravelcontrolsenabled|isfasttravelenabled|isfightingcontrolsenabled|isjournalcontrolsenabled|islookingcontrolsenabled|ismenucontrolsenabled|ismovementcontrolsenabled|isplayersungazing|issneakingcontrolsenabled|iswordunlocked|playbink|precachechargen|precachechargenclear|querystat|quittomainmenu|removehavokconstraints|requestautosave|requestmodel|requestsave|sendwerewolftransformation|servetime|setallowflyingmountlandingrequests|setbeastform|setcameratarget|sethudcartmode|setinchargen|setplayeraidriven|setplayerreportcrime|setsittingrotation|setsungazeimagespacemodifier|shakecamera|shakecontroller|showfirstpersongeometry|showlimitedracemenu|showracemenu|showtitlesequencemenu|showtrainingmenu|starttitlesequence|teachword|triggerscreenblood|unlockword|usinggamepad|get|getvalue|getvalueint|mod|setvalue|setvalueint|apply|applycrossfade|popto|remove|removecrossfade|learnalleffects|learneffect|learnnexteffect|sendstoryevent|sendstoryeventandwait|getkeyworddata|getreftypealivecount|getreftypedeadcount|hascommonparent|hasreftype|iscleared|isloaded|issamelocation|setcleared|setkeyworddata|clear|forcelocationto|getlocation|getassociatedskill|abs|acos|asin|atan|ceiling|cos|degreestoradians|floor|pow|radianstodegrees|sin|sqrt|tan|resethelpmessage|show|showashelpmessage|add|activate|adddependentanimatedobjectreference|additem|addkeyifneeded|addtomap|applyhavokimpulse|blockactivation|calculateencounterlevel|canfasttraveltomarker|cleardestruction|countlinkedrefchain|createdetectionevent|damageobject|delete|deletewhenable|disable|disablelinkchain|disablenowait|dropobject|enable|enablelinkchain|enablenowait|forceaddragdolltoworld|forceremoveragdollfromworld|getanglex|getangley|getanglez|getanimationvariablebool|getanimationvariablefloat|getanimationvariableint|getcurrentdestructionstage|getcurrentlocation|getcurrentscene|getdistance|geteditorlocation|getheadingangle|getheight|getitemcount|getitemhealthpercent|getkey|getlength|getlinkedref|getlocklevel|getmass|getnthlinkedref|getopenstate|getparentcell|getpositionx|getpositiony|getpositionz|getscale|getselfasactor|gettriggerobjectcount|getvoicetype|getwidth|getworldspace|haseffectkeyword|hasnode|ignorefriendlyhits|interruptcast|is3dloaded|isactivatechild|isactivationblocked|isdeleted|isdisabled|isenabled|isfurnitureinuse|isfurnituremarkerinuse|isignoringfriendlyhits|isindialoguewithplayer|isininterior|isinlocation|islockbroken|islocked|ismapmarkervisible|isnearplayer|knockareaeffect|lock|moveto|movetoifunloaded|movetointeractionlocation|movetomyeditorlocation|movetonode|movetowhenunloaded|ontranslationalmostcomplete|placeactoratme|placeatme|playanimation|playanimationandwait|playgamebryoanimation|playimpacteffect|playsyncedanimationandwaitss|playsyncedanimationss|playterraineffect|processtraphit|pushactoraway|ramprumble|removeallitems|removedependentanimatedobjectreference|removeitem|say|sendstealalarm|setactorcause|setangle|setanimationvariablebool|setanimationvariablefloat|setanimationvariableint|setdestroyed|setlocklevel|setmotiontype|setnofavorallowed|setopen|setposition|setscale|splinetranslateto|splinetranslatetoref|splinetranslatetorefnode|stoptranslation|tethertohorse|translateto|translatetoref|waitforanimationevent|gettemplate|completeallobjectives|completequest|failallobjectives|getalias|getcurrentstageid|getstage|getstagedone|isactive|iscompleted|isobjectivecompleted|isobjectivedisplayed|isobjectivefailed|isstagedone|isstarting|isstopped|isstopping|modobjectiveglobal|onstoryactivateactor|onstoryaddtoplayer|onstoryarrest|onstoryassaultactor|onstorybribenpc|onstorycastmagic|onstorychangelocation|onstorycraftitem|onstorycrimegold|onstorycure|onstorydialogue|onstorydiscoverdeadbody|onstoryescapejail|onstoryflatternpc|onstoryhello|onstoryincreaselevel|onstoryincreaseskill|onstoryinfection|onstoryintimidatenpc|onstoryjail|onstorykillactor|onstorynewvoicepower|onstorypayfine|onstorypicklock|onstoryplayergetsfavor|onstoryrelationshipchange|onstoryremovefromplayer|onstoryscript|onstoryservedtime|onstorytrespass|setactive|setcurrentstageid|setobjectivecompleted|setobjectivedisplayed|setobjectivefailed|setstage|start|updatecurrentinstanceglobal|forcerefifempty|forcerefto|getactorref|getactorreference|getref|getreference|trytoaddtofaction|trytoclear|trytodisable|trytodisablenowait|trytoenable|trytoenablenowait|trytoevaluatepackage|trytokill|trytomoveto|trytoremovefromfaction|trytoreset|trytostopcombat|forcestart|isactioncomplete|isplaying|cast|playandwait|setinstancevolume|stopinstance|mute|pause|setfrequency|setvolume|unmute|unpause|preload|remotecast|unload|captureframerate|endframeratecapture|gametimetostring|getaverageframerate|getbudgetcount|getbudgetname|getcurrentbudget|getcurrentgametime|getcurrentmemory|getcurrentrealtime|getmaxframerate|getminframerate|isinmenumode|overbudget|randomfloat|randomint|setinibool|setinifloat|setiniint|setinistring|startframeratecapture|wait|waitgametime|waitmenumode|fire|findweather|forceactive|getclassification|getcurrentweather|getcurrentweathertransition|getoutgoingweather|getskymode|releaseoverride|on3dloaded|ongamereload|onmenuclose|onmenuinitialized|onmenuopen|onmenureinitialized|onreceivedatarequest|onreceiveprefix|onstartup|registerdynamicevents|registerevents|unregisterdynamicevents|unregisterevents|updatetints|getmenuname|onfailedloadmenu|onloadmenu|onunloadmenu|openmenu|setpropertyint|onconsumeitem|resetmenu|setpropertybool|updateconsumeitems|updatedyesourceform|updateitemsourceform|updatemaxblending|getmenu|getmenupropertyalias|getmenupropertybool|getmenupropertyfloat|getmenupropertyform|getmenupropertyint|getmenupropertystring|getmenuresultfloat|getmenuresultform|getmenuresultint|getmenuresultstring|initmenu|setmenupropertyalias|setmenupropertyaliasa|setmenupropertybool|setmenupropertyboola|setmenupropertyfloat|setmenupropertyfloata|setmenupropertyform|setmenupropertyforma|setmenupropertyindexalias|setmenupropertyindexbool|setmenupropertyindexfloat|setmenupropertyindexform|setmenupropertyindexint|setmenupropertyindexstring|setmenupropertyint|setmenupropertyinta|setmenupropertystring|setmenupropertystringa|addentryitem|getpropertyint|getresultfloat|getresultint|getresultstring|oninit|onselect|onselecttext|setpropertyindexbool|setpropertyindexint|setpropertyindexstring|setpropertystringa|onaddremovespell|setpropertyform|setpropertystring|blockuntilclosed|getpropertyalias|getpropertybool|getpropertyfloat|getpropertyform|getpropertystring|getresultform|setpropertyalias|setpropertyaliasa|setpropertyboola|setpropertyfloat|setpropertyfloata|setpropertyforma|setpropertyindexalias|setpropertyindexfloat|setpropertyindexform|setpropertyinta|unlock|waitforreset|waitlock|onselectform|updatestatsform|ontextchanged|updatetextentrystring|onchooseoption|onselectoption|updatewheelenabledoptions|updatewheelform|updatewheeliconcolors|updatewheelicons|updatewheeloptionlabels|updatewheeloptions|updatewheelselection|updatewheeltextcolors|updatewheelvisibility|getapiversion|getareacampingfaction|getcampfiresettingbool|getcampfiresettingint|getcampfireversion|getcurrenttent|getlastusedcampfire|getplayerequippedammo|getplayerequippedbackpack|getplayerequippedbody|getplayerequippedfeet|getplayerequippedhands|getplayerequippedhead|gettrackedanimal|gettrackedanimalcount|gettrackedfollower|gettrackedfollowercount|iscrimetoplaceintowns|iscurrenttentwarm|iscurrenttentwaterproof|isplaceableobjecttemporary|isplayerplacingobject|isrefininterior|istentwarm|istentwaterproof|istrackedanimal|istrackedfollower|legaltocamphere|playercanplaceobjects|getangledata|getapi|getcompatibilitysystem|getplacementsystem|getpositiondata|gettentsystem|istent|raisecampapierror|sendevent_onbedrollsitlay|sendevent_onobjectplaced|sendevent_onobjectremoved|getboolvalue|getcameratargetformid|getfloatvalue|getintvalue|getstringvalue|getversion|isinifpv|isprofileactive|returnvalue|setboolvalue|setfloatvalue|setintvalue|setstringvalue|getduration|getmagnitude|gettimeelapsed|onactoraction|oncontroldown|oncontrolup|oncrosshairrefchange|onkeydown|onkeyup|onninodeupdate|onplayercamerastate|registerforactoraction|registerforcamerastate|registerforcontrol|registerforcrosshairref|registerforkey|registerformenu|registerformodevent|registerforninodeupdate|sendmodevent|unregisterforactoraction|unregisterforallcontrols|unregisterforallkeys|unregisterforallmenus|unregisterforallmodevents|unregisterforcamerastate|unregisterforcontrol|unregisterforcrosshairref|unregisterforkey|unregisterformenu|unregisterformodevent|unregisterforninodeupdate|changeheadpart|equipitembyid|equipitemex|getequippeditemid|getequippedobject|getfactions|getfurniturereference|getnthspell|getspellcount|getwornform|getwornitemid|isaienabled|isswimming|queueninodeupdate|regeneratehead|replaceheadpart|resetai|resetexpressionoverrides|setexpressionmodifier|setexpressionphoneme|sheatheweapon|unequipitemex|updateweight|getcombatstyle|getfacemorph|getfacepreset|getfacetextureset|gethaircolor|getindexofheadpartbytype|getindexofoverlayheadpartbytype|getnthheadpart|getnthoverlayheadpart|getnumheadparts|getnumoverlayheadparts|getoutfit|getskin|getskinfar|getweight|setclass|setcombatstyle|setfacemorph|setfacepreset|setfacetextureset|sethaircolor|setheight|setnthheadpart|setskin|setskinfar|setvoicetype|setweight|addskillexperience|getactorvalueinfobyid|getactorvalueinfobyname|getavibyid|getavibyname|getbasevalue|getcurrentvalue|getexperienceforlevel|getmaximumvalue|getperks|getperktree|getskillexperience|getskillimprovemult|getskillimproveoffset|getskilllegendarylevel|getskilloffsetmult|getskillusemult|isskill|setskillexperience|setskillimprovemult|setskillimproveoffset|setskilllegendarylevel|setskilloffsetmult|setskillusemult|getid|getname|getdamage|getprojectile|isbolt|getquality|setquality|addslottomask|getar|getarmorrating|getenchantment|geticonpath|getmaskforslot|getmessageiconpath|getmodelpath|getntharmoraddon|getnumarmoraddons|getslotmask|getweightclass|isboots|isclothing|isclothingbody|isclothingfeet|isclothinghands|isclothinghead|isclothingpoor|isclothingrich|isclothingring|iscuirass|isgauntlets|isheavyarmor|ishelmet|isjewelry|islightarmor|isshield|modar|modarmorrating|removeslotfrommask|setar|setarmorrating|setenchantment|seticonpath|setmessageiconpath|setmodelpath|setslotmask|setweightclass|getmodelnthtextureset|getmodelnumtexturesets|getnthadditionalrace|getnumadditionalraces|setmodelnthtextureset|getskill|getspell|isread|istakeable|getnthref|getnumrefs|getwaterlevel|getalpha|getblue|getgreen|gethue|getred|getsaturation|setblue|setgreen|sethue|setred|setsaturation|getcolor|setcolor|getallowdualwielding|getavoidthreatchance|getcloserangeduelingcirclemult|getcloserangeduelingfallbackmult|getcloserangeflankingflankdistance|getcloserangeflankingstalktime|getdefensivemult|getflightdivebombchance|getflightflyingattackchance|getflighthoverchance|getgroupoffensivemult|getlongrangestrafemult|getmagicmult|getmeleeattackstaggeredmult|getmeleebashattackmult|getmeleebashmult|getmeleebashpowerattackmult|getmeleebashrecoiledmult|getmeleemult|getmeleepowerattackblockingmult|getmeleepowerattackstaggeredmult|getmeleespecialattackmult|getoffensivemult|getrangedmult|getshoutmult|getstaffmult|getunarmedmult|setallowdualwielding|setavoidthreatchance|setcloserangeduelingcirclemult|setcloserangeduelingfallbackmult|setcloserangeflankingflankdistance|setcloserangeflankingstalktime|setdefensivemult|setflightdivebombchance|setflightflyingattackchance|setflighthoverchance|setgroupoffensivemult|setlongrangestrafemult|setmagicmult|setmeleeattackstaggeredmult|setmeleebashattackmult|setmeleebashmult|setmeleebashpowerattackmult|setmeleebashrecoiledmult|setmeleemult|setmeleepowerattackblockingmult|setmeleepowerattackstaggeredmult|setmeleespecialattackmult|setoffensivemult|setrangedmult|setshoutmult|setstaffmult|setunarmedmult|getnthingredient|getnthingredientquantity|getnumingredients|getresult|getresultquantity|getworkbenchkeyword|setnthingredient|setnthingredientquantity|setresult|setresultquantity|setworkbenchkeyword|setform|getbaseenchantment|getcostliesteffectindex|getkeywordrestrictions|getntheffectarea|getntheffectduration|getntheffectmagiceffect|getntheffectmagnitude|getnumeffects|setkeywordrestrictions|setntheffectarea|setntheffectduration|setntheffectmagnitude|getnthparent|getnumparents|clearfactionflag|clearvendor|getbuyselllist|getmerchantcontainer|getvendorendhour|getvendorradius|getvendorstarthour|isfactionflagset|isnotsellbuy|isvendor|makevendor|onlybuysstolenitems|setbuyselllist|setfactionflag|setmerchantcontainer|setnotsellbuy|setonlybuysstolenitems|setvendorendhour|setvendorradius|setvendorstarthour|getharvestsound|getingredient|setharvestsound|setingredient|getkeywords|getnthkeyword|getnumkeywords|gettype|getworldmodelnthtextureset|getworldmodelnumtexturesets|getworldmodelpath|haskeywordstring|hasworldmodel|isplayable|setgoldvalue|setname|setplayerknows|setworldmodelnthtextureset|setworldmodelpath|tempclone|addforms|toarray|getcamerastate|getcurrentconsoleref|getcurrentcrosshairref|getformex|gethotkeyboundobject|getmodauthor|getmodbyname|getmodcount|getmoddependencycount|getmoddescription|getmodname|getnthmoddependency|getnthtintmaskcolor|getnthtintmasktexturepath|getnthtintmasktype|getnumtintmasks|getnumtintsbytype|getperkpoints|getplayerexperience|getplayermovementmode|gettintmaskcolor|gettintmasktexturepath|isobjectfavorited|loadgame|modperkpoints|savegame|setgamesettingbool|setgamesettingfloat|setgamesettingint|setgamesettingstring|setmiscstat|setnthtintmaskcolor|setnthtintmasktexturepath|setperkpoints|setplayerexperience|setplayerlevel|setplayerslastriddenhorse|settintmaskcolor|settintmasktexturepath|unbindobjecthotkey|updatehaircolor|updatethirdperson|updatetintmaskcolors|getallammo|getallarmor|getallbooks|getallingredients|getallkeys|getallmiscitems|getallpotions|getallscrolls|getallweapons|getheadpart|getindexofextrapart|getnthextrapart|getnumextraparts|getvalidraces|hasextrapart|isextrapart|setvalidraces|geteffectareas|geteffectdurations|geteffectmagnitudes|getisntheffectknown|getmagiceffects|getmappedcontrol|getmappedkey|getnthkeypressed|getnumkeyspressed|holdkey|iskeypressed|releasekey|tapkey|getkeyword|getstring|getnthcount|getnthform|getnthlevel|getnumforms|setnthcount|setnthlevel|getchanceglobal|getchancenone|setchanceglobal|setchancenone|cleareffectflag|getarea|getbasecost|getcastingart|getcastingtype|getcasttime|getdeliverytype|getenchantart|getenchantshader|getequipability|getexplosion|gethiteffectart|gethitshader|getimagespacemod|getimpactdataset|getlight|getperk|getresistance|getskilllevel|getskillusagemult|iseffectflagset|setarea|setassociatedskill|setbasecost|setcastingart|setcasttime|seteffectflag|setenchantart|setenchantshader|setequipability|setexplosion|sethiteffectart|sethitshader|setimagespacemod|setimpactdataset|setlight|setperk|setprojectile|setresistance|setskilllevel|setskillusagemult|leftshift|log|logicaland|logicalnot|logicalor|logicalxor|rightshift|create|pushbool|pushfloat|pushform|pushint|pushstring|release|send|getnodelocalposition|getnodelocalpositionx|getnodelocalpositiony|getnodelocalpositionz|getnodelocalrotationeuler|getnodelocalrotationmatrix|getnodepositionx|getnodepositiony|getnodepositionz|getnodescale|getnodeworldposition|getnodeworldpositionx|getnodeworldpositiony|getnodeworldpositionz|getnodeworldrotationeuler|getnodeworldrotationmatrix|getrelativenodeposition|getrelativenodepositionx|getrelativenodepositiony|getrelativenodepositionz|setnodelocalposition|setnodelocalpositionx|setnodelocalpositiony|setnodelocalpositionz|setnodelocalrotationeuler|setnodelocalrotationmatrix|setnodepositionx|setnodepositiony|setnodepositionz|setnodescale|setnodetextureset|createenchantment|getallforms|getcontainerforms|getdisplayname|getenableparent|getitemcharge|getitemmaxcharge|getnthreferencealias|getnumitems|getnumreferencealiases|getpoison|getreferencealiases|gettotalarmorweight|gettotalitemweight|isharvested|isofflimits|resetinventory|setdisplayname|setharvested|setitemcharge|setitemhealthpercent|setitemmaxcharge|getnthpart|getnumparts|getnextperk|getnthentryleveledlist|getnthentrypriority|getnthentryquest|getnthentryrank|getnthentryspell|getnthentrystage|getnthentrytext|getnthentryvalue|getnumentries|setnthentryleveledlist|setnthentrypriority|setnthentryquest|setnthentryrank|setnthentryspell|setnthentrystage|setnthentrytext|setnthentryvalue|getusesound|isfood|ispoison|getaliasbyid|getaliasbyname|getaliases|getnthalias|getnumaliases|getpriority|getquest|allowpickpocket|avoidsroads|canfly|canswim|cantopendoors|canwalk|clearallowpcdialogue|clearallowpickpocket|clearavoidsroads|clearcantopendoors|clearnocombatinwater|clearnoknockdowns|clearnoshadow|clearraceflag|getdefaultvoicetype|getnthplayablerace|getnumplayableraces|ischildrace|isimmobile|isnotpushable|israceflagset|makecanfly|makecanswim|makecanwalk|makechildrace|makeimmobile|makemobile|makenoknockdowns|makenonchildrace|makenonflying|makenonswimming|makenonwalking|makenotpushable|makeplayable|makepushable|makeunplayable|nocombatinwater|noknockdowns|noshadow|setallowpcdialogue|setallowpickpocket|setavoidsroads|setcantopendoors|setdefaultvoicetype|setnocombatinwater|setnoshadow|setraceflag|getequiptype|setequiptype|getnthrecoverytime|getnthwordofpower|setnthrecoverytime|setnthspell|setnthwordofpower|getpluginversion|getscriptversionrelease|getversionbeta|getversionminor|getversionrelease|getgemsize|getsoulsize|getdescriptor|getdecibelattenuation|getdecibelvariance|getfrequencyshift|getfrequencyvariance|setdecibelattenuation|setdecibelvariance|setfrequencyshift|setfrequencyvariance|addspawn|cancel|run|geteffectivemagickacost|getmagickacost|aschar|asord|getnthchar|isdigit|isletter|isprintable|ispunctuation|split|substring|getnthtexturepath|getnumtexturepaths|setnthtexturepath|closecustommenu|getbool|getfloat|getint|getnumber|invoke|invokebool|invokeboola|invokefloat|invokefloata|invokeform|invokeint|invokeinta|invokenumber|invokenumbera|invokestring|invokestringa|ismenuopen|istextinputenabled|opencustommenu|setbool|setfloat|setint|setnumber|setstring|pushboola|pushfloata|pushinta|pushstringa|createaliasarray|createboolarray|createfloatarray|createformarray|createintarray|createstringarray|getinibool|getinifloat|getiniint|getinistring|resizealiasarray|resizeboolarray|resizefloatarray|resizeformarray|resizeintarray|resizestringarray|getbasedamage|getcritdamage|getcriteffect|getcriteffectondeath|getcritmultiplier|getenchantmentvalue|getequippedmodel|getmaxrange|getminrange|getreach|getresist|getspeed|getstagger|getweapontype|isbattleaxe|isbow|isdagger|isgreatsword|ismace|isstaff|issword|iswaraxe|iswarhammer|setbasedamage|setcritdamage|setcriteffect|setcriteffectondeath|setcritmultiplier|setenchantmentvalue|setequippedmodel|setmaxrange|setminrange|setreach|setresist|setskill|setspeed|setstagger|setweapontype|getfogdistance|getsundamage|getsunglare|getwinddirection|getwinddirectionrange|addcoloroption|addcoloroptionst|addemptyoption|addheaderoption|addinputoption|addinputoptionst|addkeymapoption|addkeymapoptionst|addmenuoption|addmenuoptionst|addslideroption|addslideroptionst|addtextoption|addtextoptionst|addtoggleoption|addtoggleoptionst|forcepagereset|getcustomcontrol|guard|loadcustomcontent|oncoloracceptst|oncoloropenst|onconfigclose|onconfiginit|onconfigopen|onconfigregister|ondefaultst|onhighlightst|oninputacceptst|oninputopenst|onkeymapchangest|onmenuacceptst|onmenuopenst|onoptioncoloraccept|onoptioncoloropen|onoptiondefault|onoptionhighlight|onoptioninputaccept|onoptioninputopen|onoptionkeymapchange|onoptionmenuaccept|onoptionmenuopen|onoptionselect|onoptionslideraccept|onoptionslideropen|onpagereset|onselectst|onslideracceptst|onslideropenst|oversionupdate|setcolordialogdefaultcolor|setcolordialogstartcolor|setcoloroptionvalue|setcoloroptionvaluest|setcursorfillmode|setcursorposition|setinfotext|setinputdialogstarttext|setinputoptionvalue|setinputoptionvaluest|setkeymapoptionvalue|setkeymapoptionvaluest|setmenudialogdefaultindex|setmenudialogoptions|setmenudialogstartindex|setmenuoptionvalue|setmenuoptionvaluest|setoptionflags|setoptionflagsst|setsliderdialogdefaultvalue|setsliderdialoginterval|setsliderdialogrange|setsliderdialogstartvalue|setslideroptionvalue|setslideroptionvaluest|settextoptionvalue|settextoptionvaluest|settitletext|settoggleoptionvalue|settoggleoptionvaluest|showmessage|unloadcustomcontent|checkversion|onversionupdate|addnodeoverridebool|addnodeoverridefloat|addnodeoverrideint|addnodeoverridestring|addnodeoverridetextureset|addnodetransformposition|addnodetransformrotation|addnodetransformscale|addoverlays|addoverridebool|addoverridefloat|addoverrideint|addoverridestring|addoverridetextureset|addskinoverridebool|addskinoverridefloat|addskinoverrideint|addskinoverridestring|addskinoverridetextureset|addweaponoverridebool|addweaponoverridefloat|addweaponoverrideint|addweaponoverridestring|addweaponoverridetextureset|applynodeoverrides|applyoverrides|applyskinoverrides|applyweaponoverrides|clearbodymorph|clearbodymorphkeys|clearbodymorphnames|clearitemdyecolor|clearmorphs|clearmorphvalue|enabletinttexturecache|getbodymorph|getbooleanextradata|getfloatextradata|getfloatsextradata|getformdyecolor|getformfromuniqueid|getintegerextradata|getintegersextradata|getinversetransform|getitemdyecolor|getitemuniqueid|getmorphkeys|getmorphnames|getmorphvalue|getnodedestination|getnodeoverridebool|getnodeoverridefloat|getnodeoverrideint|getnodeoverridestring|getnodeoverridetextureset|getnodepropertybool|getnodepropertyfloat|getnodepropertyint|getnodepropertystring|getnodetransformkeys|getnodetransformnames|getnodetransformposition|getnodetransformrotation|getnodetransformscale|getnumbodyoverlays|getnumfaceoverlays|getnumfeetoverlays|getnumhandoverlays|getnumspellbodyoverlays|getnumspellfaceoverlays|getnumspellfeetoverlays|getnumspellhandoverlays|getobjectuniqueid|getoverridebool|getoverridefloat|getoverrideint|getoverridestring|getoverridetextureset|getownerofuniqueid|getscriptversion|getskinoverridebool|getskinoverridefloat|getskinoverrideint|getskinoverridestring|getskinoverridetextureset|getskinpropertybool|getskinpropertyfloat|getskinpropertyint|getskinpropertystring|getstringextradata|getstringsextradata|getweaponoverridebool|getweaponoverridefloat|getweaponoverrideint|getweaponoverridestring|getweaponoverridetextureset|getweaponpropertybool|getweaponpropertyfloat|getweaponpropertyint|getweaponpropertystring|hasarmoraddonnode|hasbodymorph|hasbodymorphkey|hasbodymorphname|hasnodeoverride|hasnodetransformposition|hasnodetransformrotation|hasnodetransformscale|hasoverlays|hasoverride|hasskinoverride|hasweaponnode|hasweaponoverride|isformdye|registerformdyecolor|releasetinttexturecache|removeallarmoraddonnodeoverrides|removeallarmoraddonoverrides|removeallarmoroverrides|removeallnodenameoverrides|removeallnodeoverrides|removealloverrides|removeallreferencenodeoverrides|removeallreferenceoverrides|removeallreferenceskinoverrides|removeallreferencetransforms|removeallreferenceweaponoverrides|removeallskinbasedoverrides|removeallskinoverrides|removealltransforms|removeallweaponbasedoverrides|removeallweaponnodeoverrides|removeallweaponoverrides|removenodedestination|removenodeoverride|removenodetransformposition|removenodetransformrotation|removenodetransformscale|removeoverlays|removeoverride|removeskinoverride|removeweaponoverride|revertheadoverlay|revertheadoverlays|revertoverlay|revertoverlays|setbodymorph|setitemdyecolor|setmorphvalue|setnodedestination|unregisterformdyecolor|updateallreferencetransforms|updateitemdyecolor|updatemodelweight|updatenodetransform|getfiss|beginload|beginsave|blockinput|endload|endsave|forceclose|getallfilenamesinfolder|getinterfaceversion|hideinfotext|loadbool|loadfloat|loadint|loadstring|requestfilename|requestuserinput|savebool|savefloat|saveint|savestring|savetexttotxtfile|settext|settheme|settitle|addflt|addfromarray|addfromformlist|addint|addobj|addstr|count|eraseindex|findflt|findform|findint|findobj|findstr|getflt|getobj|getstr|object|objectwithbooleans|objectwithfloats|objectwithints|objectwithsize|objectwithstrings|setflt|setobj|setstr|sort|subarray|swapitems|unique|valuetype|apiversion|featureversion|fileexistsatpath|isinstalled|lasterror|lasterrorstring|removefileatpath|userdirectory|__isinstalled|allkeys|allvalues|haspath|readfromfile|solveflt|solvefltsetter|solveform|solveformsetter|solveint|solveintsetter|solveobj|solveobjsetter|solvestr|solvestrsetter|writetofile|findentry|makeentry|setentry|addpairs|getnthkey|haskey|nextkey|removekey|wrap|addtopool|cleanpool|deepcopy|empty|evalluaflt|evalluaform|evalluaint|evalluaobj|evalluastr|isarray|isexists|isformmap|isintegermap|ismap|objectfromprototype|readfromdirectory|releaseandretain|releaseobjectswithtag|retain|shallowcopy|solvedvaluetype|zerolifetime|addpackageoverride|clearpackageoverride|countpackageoverride|removeallpackageoverride|removepackageoverride|adjustfloatvalue|adjustintvalue|canresolvepath|clearall|countallprefix|countfloatlistprefix|countfloatvalueprefix|countformlistprefix|countformvalueprefix|countintlistprefix|countintvalueprefix|countstringlistprefix|countstringvalueprefix|floatlistadd|floatlistadjust|floatlistclear|floatlistcopy|floatlistcount|floatlistcountvalue|floatlistfind|floatlistget|floatlisthas|floatlistinsertat|floatlistremove|floatlistremoveat|floatlistresize|floatlistset|floatlistslice|floatlisttoarray|formlistadd|formlistclear|formlistcopy|formlistcount|formlistcountvalue|formlistfind|formlistget|formlisthas|formlistinsertat|formlistremove|formlistremoveat|formlistresize|formlistset|formlistslice|formlisttoarray|geterrors|getformvalue|getpathboolvalue|getpathfloatvalue|getpathformvalue|getpathintvalue|getpathstringvalue|hasfloatvalue|hasformvalue|hasintvalue|hasstringvalue|intlistadd|intlistadjust|intlistclear|intlistcopy|intlistcount|intlistcountvalue|intlistfind|intlistget|intlisthas|intlistinsertat|intlistremove|intlistremoveat|intlistresize|intlistset|intlistslice|intlisttoarray|isgood|ispatharray|ispathbool|ispathform|ispathnumber|ispathobject|ispathstring|ispendingsave|jsoninfolder|load|pathcount|pathfloatelements|pathformelements|pathintelements|pathmembers|pathstringelements|save|setformvalue|setpathfloatvalue|setpathformvalue|setpathintvalue|setpathstringvalue|stringlistadd|stringlistclear|stringlistcopy|stringlistcount|stringlistcountvalue|stringlistfind|stringlistget|stringlisthas|stringlistinsertat|stringlistremove|stringlistremoveat|stringlistresize|stringlistset|stringlistslice|stringlisttoarray|unsetfloatvalue|unsetformvalue|unsetintvalue|unsetstringvalue|executebat|filesinfolder|getactorraceeditorid|getnoderotation|getraceeditorid|printconsole|scancellactors|scancellobjects|setfreecameraspeed|setfreecamerastate|setmenus|togglefreecamera|clearreplaceanimation|countreplaceanimation|getkeyreplaceanimation|getvaluereplaceanimation|removereplaceanimation|setreplaceanimation|actorarray|addfloatvalues|addintvalues|aliasarray|boolarray|clampfloat|clampint|clearempty|clearnone|countactor|countalias|countbool|countfalse|countfloat|countform|countint|countnone|countobjref|countstring|counttrue|floatarray|formarray|intarray|mergeactorarray|mergealiasarray|mergeboolarray|mergefloatarray|mergeformarray|mergeintarray|mergeobjrefarray|mergestringarray|objrefarray|pushactor|pushalias|pushobjref|removeactor|removealias|removebool|removefloat|removeform|removeint|removeobjref|removestring|resizeactorarray|resizeobjrefarray|signfloat|signint|sliceactorarray|slicealiasarray|sliceboolarray|slicefloatarray|sliceformarray|sliceintarray|sliceobjrefarray|slicestringarray|sortfloatarray|sortintarray|sortstringarray|stringarray|stringjoin|stringsplit|wrapfloat|wrapint|clearallobjprefix|clearallprefix|clearfloatlistprefix|clearfloatvalueprefix|clearformlistprefix|clearformvalueprefix|clearintlistprefix|clearintvalueprefix|clearobjfloatlistprefix|clearobjfloatvalueprefix|clearobjformlistprefix|clearobjformvalueprefix|clearobjintlistprefix|clearobjintvalueprefix|clearobjstringlistprefix|clearobjstringvalueprefix|clearstringlistprefix|clearstringvalueprefix|countallobjprefix|countobjfloatlistprefix|countobjfloatvalueprefix|countobjformlistprefix|countobjformvalueprefix|countobjintlistprefix|countobjintvalueprefix|countobjstringlistprefix|countobjstringvalueprefix|debug_allfloatlistobjs|debug_allfloatobjs|debug_allformlistobjs|debug_allformobjs|debug_allintlistobjs|debug_allintobjs|debug_allobjfloatkeys|debug_allobjfloatlistkeys|debug_allobjformkeys|debug_allobjformlistkeys|debug_allobjintkeys|debug_allobjintlistkeys|debug_allobjstringkeys|debug_allobjstringlistkeys|debug_allstringlistobjs|debug_allstringobjs|debug_cleanup|debug_deleteallvalues|debug_deletevalues|debug_filedeleteallvalues|debug_filegetfloatkey|debug_filegetfloatkeyscount|debug_filegetfloatlistkey|debug_filegetfloatlistkeyscount|debug_filegetintkey|debug_filegetintkeyscount|debug_filegetintlistkey|debug_filegetintlistkeyscount|debug_filegetstringkey|debug_filegetstringkeyscount|debug_filegetstringlistkey|debug_filegetstringlistkeyscount|debug_getfloatkey|debug_getfloatkeyscount|debug_getfloatlistkey|debug_getfloatlistkeyscount|debug_getfloatlistobject|debug_getfloatlistobjectcount|debug_getfloatobject|debug_getfloatobjectcount|debug_getformkey|debug_getformkeyscount|debug_getformlistkey|debug_getformlistkeyscount|debug_getformlistobject|debug_getformlistobjectcount|debug_getformobject|debug_getformobjectcount|debug_getintkey|debug_getintkeyscount|debug_getintlistkey|debug_getintlistkeyscount|debug_getintlistobject|debug_getintlistobjectcount|debug_getintobject|debug_getintobjectcount|debug_getstringkey|debug_getstringkeyscount|debug_getstringlistkey|debug_getstringlistkeyscount|debug_getstringlistobject|debug_getstringlistobjectcount|debug_getstringobject|debug_getstringobjectcount|debug_savefile|debug_setdebugmode|exportfile|fileadjustfloatvalue|fileadjustintvalue|filefloatlistadd|filefloatlistadjust|filefloatlistclear|filefloatlistcopy|filefloatlistcount|filefloatlistfind|filefloatlistget|filefloatlisthas|filefloatlistinsert|filefloatlistremove|filefloatlistremoveat|filefloatlistresize|filefloatlistset|filefloatlistslice|fileformlistadd|fileformlistclear|fileformlistcopy|fileformlistcount|fileformlistfind|fileformlistget|fileformlisthas|fileformlistinsert|fileformlistremove|fileformlistremoveat|fileformlistresize|fileformlistset|fileformlistslice|filegetfloatvalue|filegetformvalue|filegetintvalue|filegetstringvalue|filehasfloatvalue|filehasformvalue|filehasintvalue|filehasstringvalue|fileintlistadd|fileintlistadjust|fileintlistclear|fileintlistcopy|fileintlistcount|fileintlistfind|fileintlistget|fileintlisthas|fileintlistinsert|fileintlistremove|fileintlistremoveat|fileintlistresize|fileintlistset|fileintlistslice|filesetfloatvalue|filesetformvalue|filesetintvalue|filesetstringvalue|filestringlistadd|filestringlistclear|filestringlistcopy|filestringlistcount|filestringlistfind|filestringlistget|filestringlisthas|filestringlistinsert|filestringlistremove|filestringlistremoveat|filestringlistresize|filestringlistset|filestringlistslice|fileunsetfloatvalue|fileunsetformvalue|fileunsetintvalue|fileunsetstringvalue|floatlistinsert|floatlistpluck|floatlistpop|floatlistshift|floatlistsort|formlistinsert|formlistpluck|formlistpop|formlistshift|formlistsort|importfile|intlistinsert|intlistpluck|intlistpop|intlistshift|intlistsort|pluckfloatvalue|pluckformvalue|pluckintvalue|pluckstringvalue|stringlistinsert|stringlistpluck|stringlistpop|stringlistshift|stringlistsort|getallcobjthatyieldform|replacekywd|tempcobj|listmenu_open|listmenu_release|listmenu_setdata|notificationmenu_preparearea|onlistmenuclose|onlistmenuopen|ontextinputclose|ontextinputopen|showlist|shownotification|shownotificationicon|showtextinput|textinputmenu_open|textinputmenu_release|textinputmenu_setdata)\\b",
|
196
|
-
"name": "support.function.papyrus"
|
197
|
-
},
|
198
|
-
"class-types": {
|
199
|
-
"match": "(?i)\\b(activemagiceffect|actor|actorbase|alias|cell|debug|effectshader|enchantment|faction|form|formlist|game|globalvariable|imagespacemodifier|ingredient|keyword|leveledactor|leveleditem|leveledspell|location|locationalias|magiceffect|math|message|musictype|objectreference|package|potion|quest|referencealias|scene|scroll|shaderparticlegeometry|sound|soundcategory|spell|topic|topicinfo|utility|visualeffect|weapon|weather|cosmeticmenu|uicosmeticmenu|uidyemenu|uiextensions|uilistmenu|uimagicmenu|uimenubase|uimenuload|uiselectionmenu|uistatsmenu|uitextentrymenu|uiwheelmenu|camputil|ifpv|actorvalueinfo|ammo|apparatus|armor|armoraddon|art|book|colorcomponent|colorform|combatstyle|constructibleobject|defaultobjectmanager|equipslot|flora|gamedata|headpart|input|modevent|netimmerse|outfit|perk|race|shout|skse|soulgem|sounddescriptor|spawnertask|stringutil|textureset|treeobject|ui|uicallback|wornobject|ski_configbase|ski_questbase|nioverride|fissfactory|fissinterface|jarray|jcontainers|jdb|jformdb|jformmap|jintmap|jmap|jstring|jvalue|actorutil|jsonutil|miscutil|objectutil|papyrusutil|storageutil|dienestoolspluginscript|uilib_1)\\b",
|
200
|
-
"name": "support.class.papyrus"
|
201
|
-
},
|
202
|
-
"params": {
|
203
|
-
"patterns": [
|
204
|
-
{
|
205
|
-
"include": "#constants"
|
206
|
-
},
|
207
|
-
{
|
208
|
-
"match": "(?:\\G\\s*|,\\s*)(\\w+|\\w+[\\[]{1}[\\]]{1})\\s+(\\w+)\\b(?:\\s*(=))?",
|
209
|
-
"captures": {
|
210
|
-
"1": {
|
211
|
-
"name": "storage.type.variable.papyrus"
|
212
|
-
},
|
213
|
-
"2": {
|
214
|
-
"name": "variable.parameter.papyrus"
|
215
|
-
},
|
216
|
-
"3": {
|
217
|
-
"name": "keyword.operator.assignment.papyrus"
|
218
|
-
}
|
219
|
-
},
|
220
|
-
"name": "meta.parameter.papyrus"
|
221
|
-
},
|
222
|
-
{
|
223
|
-
"match": "[^\\s\\)]+?",
|
224
|
-
"name": "invalid.illegal.function.papyrus"
|
225
|
-
}
|
226
|
-
]
|
227
|
-
}
|
228
|
-
},
|
229
|
-
"scopeName": "source.papyrus",
|
230
|
-
"uuid": "A4B74D45-A967-4BF7-99C9-FEA2E18CB98C"
|
231
|
-
}
|