@px-lsp/server 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +334 -0
  3. package/THIRD-PARTY-NOTICES.md +83 -0
  4. package/data/ck3/dataTypes.json +2195 -0
  5. package/data/ck3/data_types/data_types_common.txt +2040 -0
  6. package/data/ck3/data_types/data_types_gui.txt +5264 -0
  7. package/data/ck3/data_types/data_types_internalclausewitzgui.txt +14843 -0
  8. package/data/ck3/data_types/data_types_script.txt +4251 -0
  9. package/data/ck3/data_types/data_types_uncategorized.txt +109984 -0
  10. package/data/ck3/freqs.json +1 -0
  11. package/data/ck3/guiSchema.json +6344 -0
  12. package/data/ck3/script_docs/effects.log +16059 -0
  13. package/data/ck3/script_docs/event_targets.log +2098 -0
  14. package/data/ck3/script_docs/modifiers.log +2228 -0
  15. package/data/ck3/script_docs/on_actions.log +5275 -0
  16. package/data/ck3/script_docs/triggers.log +11991 -0
  17. package/data/ck3/structures.json +9743 -0
  18. package/data/ck3/wikidocs/ATTRIBUTION.md +18 -0
  19. package/data/ck3/wikidocs/Data_types.md +2568 -0
  20. package/data/ck3/wikidocs/Effects_list.md +1176 -0
  21. package/data/ck3/wikidocs/Scopes_list.md +341 -0
  22. package/data/ck3/wikidocs/Triggers_list.md +1097 -0
  23. package/data/eu5/data_types/data_types_common.txt +2087 -0
  24. package/data/eu5/data_types/data_types_gui.txt +6732 -0
  25. package/data/eu5/data_types/data_types_internalclausewitzgui.txt +19276 -0
  26. package/data/eu5/data_types/data_types_script.txt +5688 -0
  27. package/data/eu5/data_types/data_types_uncategorized.txt +135569 -0
  28. package/data/vic3/data_types/data_types_common.txt +2021 -0
  29. package/data/vic3/data_types/data_types_gui.txt +5592 -0
  30. package/data/vic3/data_types/data_types_internalclausewitzgui.txt +17304 -0
  31. package/data/vic3/data_types/data_types_script.txt +2817 -0
  32. package/data/vic3/data_types/data_types_uncategorized.txt +84354 -0
  33. package/data/vic3/freqs.json +1 -0
  34. package/data/vic3/guiSchema.json +5578 -0
  35. package/data/vic3/script_docs/effects.log +38135 -0
  36. package/data/vic3/script_docs/event_targets.log +2028 -0
  37. package/data/vic3/script_docs/modifiers.log +18954 -0
  38. package/data/vic3/script_docs/on_actions.log +1561 -0
  39. package/data/vic3/script_docs/triggers.log +15738 -0
  40. package/data/vic3/structures.json +10189 -0
  41. package/dist/server.js +63668 -0
  42. package/media/px-lsp.svg +12 -0
  43. package/package.json +50 -0
  44. package/src/clientMode.ts +60 -0
  45. package/src/coa/coa.ts +184 -0
  46. package/src/coa/coaParse.ts +267 -0
  47. package/src/context.ts +78 -0
  48. package/src/contextKeywords.ts +224 -0
  49. package/src/data/dataBindingMacros.ts +82 -0
  50. package/src/data/dataFnDocs.ts +152 -0
  51. package/src/data/dataFnUsage.ts +431 -0
  52. package/src/data/dataTypes.ts +279 -0
  53. package/src/data/defines.ts +123 -0
  54. package/src/data/docsParser.ts +453 -0
  55. package/src/data/keywordDocs.ts +98 -0
  56. package/src/data/modifierTemplates.ts +143 -0
  57. package/src/data/textFormatting.ts +165 -0
  58. package/src/data/wikiDocs.ts +187 -0
  59. package/src/dds/decoder.ts +1007 -0
  60. package/src/dds/encode.ts +235 -0
  61. package/src/dds/index.ts +58 -0
  62. package/src/dds/png.ts +96 -0
  63. package/src/dds/tga.ts +62 -0
  64. package/src/documents.ts +35 -0
  65. package/src/features/assetPaths.ts +169 -0
  66. package/src/features/codeActions.ts +148 -0
  67. package/src/features/colors.ts +244 -0
  68. package/src/features/completion.ts +961 -0
  69. package/src/features/datafunction.ts +729 -0
  70. package/src/features/definition.ts +84 -0
  71. package/src/features/diagnostics.ts +244 -0
  72. package/src/features/folding.ts +106 -0
  73. package/src/features/formatting.ts +60 -0
  74. package/src/features/guiLanguage.ts +366 -0
  75. package/src/features/guiNavigation.ts +140 -0
  76. package/src/features/guiTree.ts +97 -0
  77. package/src/features/hover.ts +817 -0
  78. package/src/features/hoverRender.ts +222 -0
  79. package/src/features/inlayHints.ts +147 -0
  80. package/src/features/locFormatting.ts +127 -0
  81. package/src/features/references.ts +70 -0
  82. package/src/features/rename.ts +135 -0
  83. package/src/features/scopeAt.ts +65 -0
  84. package/src/features/semanticTokens.ts +188 -0
  85. package/src/features/signatureHelp.ts +72 -0
  86. package/src/features/symbols.ts +241 -0
  87. package/src/features/textureHover.ts +143 -0
  88. package/src/features/workspaceSymbols.ts +69 -0
  89. package/src/games/active.ts +19 -0
  90. package/src/games/ck3/ambientScopes.ts +273 -0
  91. package/src/games/ck3/index.ts +38 -0
  92. package/src/games/ck3/meta.ts +28 -0
  93. package/src/games/ck3/modifierPlaceholders.ts +61 -0
  94. package/src/games/ck3/saveSchema.ts +134 -0
  95. package/src/games/ck3/scaffolds.ts +197 -0
  96. package/src/games/ck3/schema.ts +422 -0
  97. package/src/games/ck3/structures.ts +887 -0
  98. package/src/games/eu5/index.ts +75 -0
  99. package/src/games/eu5/meta.ts +44 -0
  100. package/src/games/eu5/scaffolds.ts +49 -0
  101. package/src/games/eu5/schema.generated.ts +1043 -0
  102. package/src/games/jomini/variables.ts +134 -0
  103. package/src/games/profile.ts +205 -0
  104. package/src/games/registry.ts +27 -0
  105. package/src/games/vic3/index.ts +52 -0
  106. package/src/games/vic3/meta.ts +55 -0
  107. package/src/games/vic3/saveSchema.ts +77 -0
  108. package/src/games/vic3/scaffolds.ts +135 -0
  109. package/src/games/vic3/schema.ts +650 -0
  110. package/src/games/vic3/structures.ts +33 -0
  111. package/src/gui/anchorSpec.ts +66 -0
  112. package/src/gui/declMarkers.ts +30 -0
  113. package/src/gui/fillGeometry.ts +101 -0
  114. package/src/gui/guiDefs.ts +386 -0
  115. package/src/gui/guiDependencies.ts +352 -0
  116. package/src/gui/guiLinks.ts +64 -0
  117. package/src/gui/layoutEngine.ts +1998 -0
  118. package/src/gui/layoutService.ts +221 -0
  119. package/src/gui/measuredMetrics.ts +21 -0
  120. package/src/gui/previewService.ts +89 -0
  121. package/src/gui/saveSchema.ts +220 -0
  122. package/src/gui/saveValues.ts +399 -0
  123. package/src/gui/saveZip.ts +60 -0
  124. package/src/gui/sourceEdit.ts +535 -0
  125. package/src/gui/sourceEditService.ts +439 -0
  126. package/src/gui/sourceModel.ts +603 -0
  127. package/src/gui/textResolve.ts +145 -0
  128. package/src/gui/textureInfo.ts +106 -0
  129. package/src/gui/vocabulary.ts +149 -0
  130. package/src/gui/widgetEdit.ts +52 -0
  131. package/src/gui/widgetInfo.ts +245 -0
  132. package/src/index/docComments.ts +103 -0
  133. package/src/index/extract.ts +252 -0
  134. package/src/index/indexer.ts +369 -0
  135. package/src/index/intern.ts +101 -0
  136. package/src/index/lazyRefs.ts +145 -0
  137. package/src/index/modOrigin.ts +69 -0
  138. package/src/index/references.ts +534 -0
  139. package/src/overview/dependencies.ts +240 -0
  140. package/src/overview/eventBanner.ts +95 -0
  141. package/src/overview/eventDetail.ts +482 -0
  142. package/src/overview/eventGraph.ts +617 -0
  143. package/src/overview/eventVocabulary.ts +214 -0
  144. package/src/overview/locCoverage.ts +138 -0
  145. package/src/overview/modOverview.ts +29 -0
  146. package/src/overview/overrides.ts +89 -0
  147. package/src/parseCache.ts +81 -0
  148. package/src/parser/cst.ts +257 -0
  149. package/src/parser/encoding.ts +106 -0
  150. package/src/parser/index.ts +7 -0
  151. package/src/parser/lexer.ts +245 -0
  152. package/src/parser/locParser.ts +276 -0
  153. package/src/parser/parser.ts +360 -0
  154. package/src/schema/freqs.ts +70 -0
  155. package/src/schema/loader.ts +113 -0
  156. package/src/schema/types.ts +142 -0
  157. package/src/scopes/inference.ts +478 -0
  158. package/src/scopes/model.ts +148 -0
  159. package/src/scopes/varTypes.ts +290 -0
  160. package/src/server.ts +1894 -0
  161. package/src/serverData.ts +98 -0
  162. package/src/structure.ts +56 -0
  163. package/src/wordAt.ts +49 -0
@@ -0,0 +1,4251 @@
1
+ DATE
2
+ Description: Jomini Date
3
+ Definition type: Global promote
4
+ Return type: Date
5
+
6
+ -----------------------
7
+
8
+ DATE_MAX
9
+ Description: Jomini Date - Max
10
+ Definition type: Global promote
11
+ Return type: Date
12
+
13
+ -----------------------
14
+
15
+ DATE_MIN
16
+ Description: Jomini Date - Min
17
+ Definition type: Global promote
18
+ Return type: Date
19
+
20
+ -----------------------
21
+
22
+ EmptyScope
23
+ Definition type: Global promote
24
+ Return type: TopScope
25
+
26
+ -----------------------
27
+
28
+ GetAccoladeType( Arg0 )
29
+ Description: Get the AccoladeType object with the provided key in their database
30
+ Definition type: Global promote
31
+ Return type: AccoladeType
32
+
33
+ -----------------------
34
+
35
+ GetActivityGroupType( Arg0 )
36
+ Description: Get the ActivityGroupType object with the provided key in their database
37
+ Definition type: Global promote
38
+ Return type: ActivityGroupType
39
+
40
+ -----------------------
41
+
42
+ GetActivityGuestInviteRule( Arg0 )
43
+ Description: Get the ActivityGuestInviteRule object with the provided key in their database
44
+ Definition type: Global promote
45
+ Return type: ActivityGuestInviteRule
46
+
47
+ -----------------------
48
+
49
+ GetActivityIntent( Arg0 )
50
+ Description: Get the ActivityIntent object with the provided key in their database
51
+ Definition type: Global promote
52
+ Return type: ActivityIntent
53
+
54
+ -----------------------
55
+
56
+ GetActivityLocale( Arg0 )
57
+ Description: Get the ActivityLocale object with the provided key in their database
58
+ Definition type: Global promote
59
+ Return type: ActivityLocale
60
+
61
+ -----------------------
62
+
63
+ GetActivityPulseAction( Arg0 )
64
+ Description: Get the ActivityPulseAction object with the provided key in their database
65
+ Definition type: Global promote
66
+ Return type: ActivityPulseAction
67
+
68
+ -----------------------
69
+
70
+ GetActivityType( Arg0 )
71
+ Description: Get the ActivityType object with the provided key in their database
72
+ Definition type: Global promote
73
+ Return type: ActivityType
74
+
75
+ -----------------------
76
+
77
+ GetAgentSlotType( Arg0 )
78
+ Description: Get the AgentSlotType object with the provided key in their database
79
+ Definition type: Global promote
80
+ Return type: AgentSlotType
81
+
82
+ -----------------------
83
+
84
+ GetArtifactType( Arg0 )
85
+ Description: Get the ArtifactType object with the provided key in their database
86
+ Definition type: Global promote
87
+ Return type: ArtifactType
88
+
89
+ -----------------------
90
+
91
+ GetArtifactVisualType( Arg0 )
92
+ Description: Get the ArtifactVisualType object with the provided key in their database
93
+ Definition type: Global promote
94
+ Return type: ArtifactVisualType
95
+
96
+ -----------------------
97
+
98
+ GetBookmark( Arg0 )
99
+ Description: Get the Bookmark object with the provided key in their database
100
+ Definition type: Global promote
101
+ Return type: Bookmark
102
+
103
+ -----------------------
104
+
105
+ GetBookmarkGroup( Arg0 )
106
+ Description: Get the BookmarkGroup object with the provided key in their database
107
+ Definition type: Global promote
108
+ Return type: BookmarkGroup
109
+
110
+ -----------------------
111
+
112
+ GetBookmarkPortrait( Arg0 )
113
+ Description: Get the BookmarkPortrait object with the provided key in their database
114
+ Definition type: Global promote
115
+ Return type: BookmarkPortrait
116
+
117
+ -----------------------
118
+
119
+ GetBuilding( Arg0 )
120
+ Description: Get the Building object with the provided key in their database
121
+ Definition type: Global promote
122
+ Return type: Building
123
+
124
+ -----------------------
125
+
126
+ GetCasusBelliType( Arg0 )
127
+ Description: Get the CasusBelliType object with the provided key in their database
128
+ Definition type: Global promote
129
+ Return type: CasusBelliType
130
+
131
+ -----------------------
132
+
133
+ GetCatalystType( Arg0 )
134
+ Description: Get the CatalystType object with the provided key in their database
135
+ Definition type: Global promote
136
+ Return type: CatalystType
137
+
138
+ -----------------------
139
+
140
+ GetChallengeCharacter( Arg0 )
141
+ Description: Get the ChallengeCharacter object with the provided key in their database
142
+ Definition type: Global promote
143
+ Return type: ChallengeCharacter
144
+
145
+ -----------------------
146
+
147
+ GetCharacterInteraction( Arg0 )
148
+ Description: Get the CharacterInteraction object with the provided key in their database
149
+ Definition type: Global promote
150
+ Return type: CharacterInteraction
151
+
152
+ -----------------------
153
+
154
+ GetCharacterInteractionCategory( Arg0 )
155
+ Description: Get the CharacterInteractionCategory object with the provided key in their database
156
+ Definition type: Global promote
157
+ Return type: CharacterInteractionCategory
158
+
159
+ -----------------------
160
+
161
+ GetCharacterMemoryType( Arg0 )
162
+ Description: Get the CharacterMemoryType object with the provided key in their database
163
+ Definition type: Global promote
164
+ Return type: CharacterMemoryType
165
+
166
+ -----------------------
167
+
168
+ GetConfederationType( Arg0 )
169
+ Description: Get the ConfederationType object with the provided key in their database
170
+ Definition type: Global promote
171
+ Return type: ConfederationType
172
+
173
+ -----------------------
174
+
175
+ GetConnectionArrowType( Arg0 )
176
+ Description: Get the ConnectionArrowType object with the provided key in their database
177
+ Definition type: Global promote
178
+ Return type: ConnectionArrowType
179
+
180
+ -----------------------
181
+
182
+ GetCouncilPositionType( Arg0 )
183
+ Description: Get the CouncilPositionType object with the provided key in their database
184
+ Definition type: Global promote
185
+ Return type: CouncilPositionType
186
+
187
+ -----------------------
188
+
189
+ GetCouncilTaskType( Arg0 )
190
+ Description: Get the CouncilTaskType object with the provided key in their database
191
+ Definition type: Global promote
192
+ Return type: CouncilTaskType
193
+
194
+ -----------------------
195
+
196
+ GetCourtAmenitiesSetting( Arg0 )
197
+ Description: Get the CourtAmenitiesSetting object with the provided key in their database
198
+ Definition type: Global promote
199
+ Return type: CourtAmenitiesSetting
200
+
201
+ -----------------------
202
+
203
+ GetCourtPositionTaskType( Arg0 )
204
+ Description: Get the CourtPositionTaskType object with the provided key in their database
205
+ Definition type: Global promote
206
+ Return type: CourtPositionTaskType
207
+
208
+ -----------------------
209
+
210
+ GetCourtPositionType( Arg0 )
211
+ Description: Get the CourtPositionType object with the provided key in their database
212
+ Definition type: Global promote
213
+ Return type: CourtPositionType
214
+
215
+ -----------------------
216
+
217
+ GetCourtType( Arg0 )
218
+ Description: Get the CourtType object with the provided key in their database
219
+ Definition type: Global promote
220
+ Return type: CourtType
221
+
222
+ -----------------------
223
+
224
+ GetCultureEraType( Arg0 )
225
+ Description: Get the CultureEraType object with the provided key in their database
226
+ Definition type: Global promote
227
+ Return type: CultureEraType
228
+
229
+ -----------------------
230
+
231
+ GetCultureInnovationType( Arg0 )
232
+ Description: Get the CultureInnovationType object with the provided key in their database
233
+ Definition type: Global promote
234
+ Return type: CultureInnovationType
235
+
236
+ -----------------------
237
+
238
+ GetCulturePillar( Arg0 )
239
+ Description: Get the CulturePillar object with the provided key in their database
240
+ Definition type: Global promote
241
+ Return type: CulturePillar
242
+
243
+ -----------------------
244
+
245
+ GetCultureTemplate( Arg0 )
246
+ Description: Get the CultureTemplate object with the provided key in their database
247
+ Definition type: Global promote
248
+ Return type: CultureTemplate
249
+
250
+ -----------------------
251
+
252
+ GetCultureTradition( Arg0 )
253
+ Description: Get the CultureTradition object with the provided key in their database
254
+ Definition type: Global promote
255
+ Return type: CultureTradition
256
+
257
+ -----------------------
258
+
259
+ GetDecision( Arg0 )
260
+ Description: Get the Decision object with the provided key in their database
261
+ Definition type: Global promote
262
+ Return type: Decision
263
+
264
+ -----------------------
265
+
266
+ GetDecisionGroupType( Arg0 )
267
+ Description: Get the DecisionGroupType object with the provided key in their database
268
+ Definition type: Global promote
269
+ Return type: DecisionGroupType
270
+
271
+ -----------------------
272
+
273
+ GetDlc( Arg0 )
274
+ Description: Get the Dlc object with the provided key in their database
275
+ Definition type: Global promote
276
+ Return type: Dlc
277
+
278
+ -----------------------
279
+
280
+ GetDoctrineGroupType( Arg0 )
281
+ Description: Get the DoctrineGroupType object with the provided key in their database
282
+ Definition type: Global promote
283
+ Return type: DoctrineGroupType
284
+
285
+ -----------------------
286
+
287
+ GetDomicileBuilding( Arg0 )
288
+ Description: Get the DomicileBuilding object with the provided key in their database
289
+ Definition type: Global promote
290
+ Return type: DomicileBuilding
291
+
292
+ -----------------------
293
+
294
+ GetDomicileType( Arg0 )
295
+ Description: Get the DomicileType object with the provided key in their database
296
+ Definition type: Global promote
297
+ Return type: DomicileType
298
+
299
+ -----------------------
300
+
301
+ GetDynastyHouseTemplate( Arg0 )
302
+ Description: Get the DynastyHouseTemplate object with the provided key in their database
303
+ Definition type: Global promote
304
+ Return type: DynastyHouseTemplate
305
+
306
+ -----------------------
307
+
308
+ GetDynastyLegacy( Arg0 )
309
+ Description: Get the DynastyLegacy object with the provided key in their database
310
+ Definition type: Global promote
311
+ Return type: DynastyLegacy
312
+
313
+ -----------------------
314
+
315
+ GetDynastyPerk( Arg0 )
316
+ Description: Get the DynastyPerk object with the provided key in their database
317
+ Definition type: Global promote
318
+ Return type: DynastyPerk
319
+
320
+ -----------------------
321
+
322
+ GetDynastyTemplate( Arg0 )
323
+ Description: Get the DynastyTemplate object with the provided key in their database
324
+ Definition type: Global promote
325
+ Return type: DynastyTemplate
326
+
327
+ -----------------------
328
+
329
+ GetEpidemicType( Arg0 )
330
+ Description: Get the EpidemicType object with the provided key in their database
331
+ Definition type: Global promote
332
+ Return type: EpidemicType
333
+
334
+ -----------------------
335
+
336
+ GetFaithDoctrine( Arg0 )
337
+ Description: Get the FaithDoctrine object with the provided key in their database
338
+ Definition type: Global promote
339
+ Return type: FaithDoctrine
340
+
341
+ -----------------------
342
+
343
+ GetFaithType( Arg0 )
344
+ Description: Get the FaithType object with the provided key in their database
345
+ Definition type: Global promote
346
+ Return type: FaithType
347
+
348
+ -----------------------
349
+
350
+ GetFocusType( Arg0 )
351
+ Description: Get the FocusType object with the provided key in their database
352
+ Definition type: Global promote
353
+ Return type: FocusType
354
+
355
+ -----------------------
356
+
357
+ GetGeographicalRegion( Arg0 )
358
+ Description: Get the GeographicalRegion object with the provided key in their database
359
+ Definition type: Global promote
360
+ Return type: GeographicalRegion
361
+
362
+ -----------------------
363
+
364
+ GetGlobalVariable( Arg0 )
365
+ Definition type: Global promote
366
+ Return type: Scope
367
+
368
+ -----------------------
369
+
370
+ GetGovernmentType( Arg0 )
371
+ Description: Get the GovernmentType object with the provided key in their database
372
+ Definition type: Global promote
373
+ Return type: GovernmentType
374
+
375
+ -----------------------
376
+
377
+ GetGraphicalUnitType( Arg0 )
378
+ Description: Get the GraphicalUnitType object with the provided key in their database
379
+ Definition type: Global promote
380
+ Return type: GraphicalUnitType
381
+
382
+ -----------------------
383
+
384
+ GetGreatProjectType( Arg0 )
385
+ Description: Get the GreatProjectType object with the provided key in their database
386
+ Definition type: Global promote
387
+ Return type: GreatProjectType
388
+
389
+ -----------------------
390
+
391
+ GetHoldingType( Arg0 )
392
+ Description: Get the HoldingType object with the provided key in their database
393
+ Definition type: Global promote
394
+ Return type: HoldingType
395
+
396
+ -----------------------
397
+
398
+ GetHolySite( Arg0 )
399
+ Description: Get the HolySite object with the provided key in their database
400
+ Definition type: Global promote
401
+ Return type: HolySite
402
+
403
+ -----------------------
404
+
405
+ GetHouseAspiration( Arg0 )
406
+ Description: Get the HouseAspiration object with the provided key in their database
407
+ Definition type: Global promote
408
+ Return type: HouseAspiration
409
+
410
+ -----------------------
411
+
412
+ GetHouseRelationLevel( Arg0 )
413
+ Description: Get the HouseRelationLevel object with the provided key in their database
414
+ Definition type: Global promote
415
+ Return type: HouseRelationLevel
416
+
417
+ -----------------------
418
+
419
+ GetHouseRelationType( Arg0 )
420
+ Description: Get the HouseRelationType object with the provided key in their database
421
+ Definition type: Global promote
422
+ Return type: HouseRelationType
423
+
424
+ -----------------------
425
+
426
+ GetHouseUnityStage( Arg0 )
427
+ Description: Get the HouseUnityStage object with the provided key in their database
428
+ Definition type: Global promote
429
+ Return type: HouseUnityStage
430
+
431
+ -----------------------
432
+
433
+ GetIllustration( Arg0 )
434
+ Description: Get the Illustration object with the provided key in their database
435
+ Definition type: Global promote
436
+ Return type: Illustration
437
+
438
+ -----------------------
439
+
440
+ GetImportantActionType( Arg0 )
441
+ Description: Get the ImportantActionType object with the provided key in their database
442
+ Definition type: Global promote
443
+ Return type: ImportantActionType
444
+
445
+ -----------------------
446
+
447
+ GetInspirationType( Arg0 )
448
+ Description: Get the InspirationType object with the provided key in their database
449
+ Definition type: Global promote
450
+ Return type: InspirationType
451
+
452
+ -----------------------
453
+
454
+ GetInventorySlotType( Arg0 )
455
+ Description: Get the InventorySlotType object with the provided key in their database
456
+ Definition type: Global promote
457
+ Return type: InventorySlotType
458
+
459
+ -----------------------
460
+
461
+ GetLandedTitpleTemplate( Arg0 )
462
+ Description: Get the LandedTitpleTemplate object with the provided key in their database
463
+ Definition type: Global promote
464
+ Return type: LandedTitpleTemplate
465
+
466
+ -----------------------
467
+
468
+ GetLaw( Arg0 )
469
+ Description: Get the Law object with the provided key in their database
470
+ Definition type: Global promote
471
+ Return type: Law
472
+
473
+ -----------------------
474
+
475
+ GetLawGroup( Arg0 )
476
+ Description: Get the LawGroup object with the provided key in their database
477
+ Definition type: Global promote
478
+ Return type: LawGroup
479
+
480
+ -----------------------
481
+
482
+ GetLegendType( Arg0 )
483
+ Description: Get the LegendType object with the provided key in their database
484
+ Definition type: Global promote
485
+ Return type: LegendType
486
+
487
+ -----------------------
488
+
489
+ GetLegitimacyType( Arg0 )
490
+ Description: Get the LegitimacyType object with the provided key in their database
491
+ Definition type: Global promote
492
+ Return type: LegitimacyType
493
+
494
+ -----------------------
495
+
496
+ GetLifestyle( Arg0 )
497
+ Description: Get the Lifestyle object with the provided key in their database
498
+ Definition type: Global promote
499
+ Return type: Lifestyle
500
+
501
+ -----------------------
502
+
503
+ GetMandate( Arg0 )
504
+ Description: Get the Mandate object with the provided key in their database
505
+ Definition type: Global promote
506
+ Return type: Mandate
507
+
508
+ -----------------------
509
+
510
+ GetMenAtArmsType( Arg0 )
511
+ Description: Get the MenAtArmsType object with the provided key in their database
512
+ Definition type: Global promote
513
+ Return type: MenAtArmsType
514
+
515
+ -----------------------
516
+
517
+ GetMessageFilterType( Arg0 )
518
+ Description: Get the MessageFilterType object with the provided key in their database
519
+ Definition type: Global promote
520
+ Return type: MessageFilterType
521
+
522
+ -----------------------
523
+
524
+ GetMessageGroupType( Arg0 )
525
+ Description: Get the MessageGroupType object with the provided key in their database
526
+ Definition type: Global promote
527
+ Return type: MessageGroupType
528
+
529
+ -----------------------
530
+
531
+ GetMessageType( Arg0 )
532
+ Description: Get the MessageType object with the provided key in their database
533
+ Definition type: Global promote
534
+ Return type: MessageType
535
+
536
+ -----------------------
537
+
538
+ GetNickname( Arg0 )
539
+ Description: Get the Nickname object with the provided key in their database
540
+ Definition type: Global promote
541
+ Return type: Nickname
542
+
543
+ -----------------------
544
+
545
+ GetPerk( Arg0 )
546
+ Description: Get the Perk object with the provided key in their database
547
+ Definition type: Global promote
548
+ Return type: Perk
549
+
550
+ -----------------------
551
+
552
+ GetRaidIntent( Arg0 )
553
+ Description: Get the RaidIntent object with the provided key in their database
554
+ Definition type: Global promote
555
+ Return type: RaidIntent
556
+
557
+ -----------------------
558
+
559
+ GetReligionFamily( Arg0 )
560
+ Description: Get the ReligionFamily object with the provided key in their database
561
+ Definition type: Global promote
562
+ Return type: ReligionFamily
563
+
564
+ -----------------------
565
+
566
+ GetReligionType( Arg0 )
567
+ Description: Get the ReligionType object with the provided key in their database
568
+ Definition type: Global promote
569
+ Return type: ReligionType
570
+
571
+ -----------------------
572
+
573
+ GetSchemeCountermeasureType( Arg0 )
574
+ Description: Get the SchemeCountermeasureType object with the provided key in their database
575
+ Definition type: Global promote
576
+ Return type: SchemeCountermeasureType
577
+
578
+ -----------------------
579
+
580
+ GetSchemePulseAction( Arg0 )
581
+ Description: Get the SchemePulseAction object with the provided key in their database
582
+ Definition type: Global promote
583
+ Return type: SchemePulseAction
584
+
585
+ -----------------------
586
+
587
+ GetSchemeType( Arg0 )
588
+ Description: Get the SchemeType object with the provided key in their database
589
+ Definition type: Global promote
590
+ Return type: SchemeType
591
+
592
+ -----------------------
593
+
594
+ GetScriptedRelation( Arg0 )
595
+ Description: Get the ScriptedRelation object with the provided key in their database
596
+ Definition type: Global promote
597
+ Return type: ScriptedRelation
598
+
599
+ -----------------------
600
+
601
+ GetSecretType( Arg0 )
602
+ Description: Get the SecretType object with the provided key in their database
603
+ Definition type: Global promote
604
+ Return type: SecretType
605
+
606
+ -----------------------
607
+
608
+ GetSituationCatalystType( Arg0 )
609
+ Description: Get the SituationCatalystType object with the provided key in their database
610
+ Definition type: Global promote
611
+ Return type: SituationCatalystType
612
+
613
+ -----------------------
614
+
615
+ GetSituationGroupType( Arg0 )
616
+ Description: Get the SituationGroupType object with the provided key in their database
617
+ Definition type: Global promote
618
+ Return type: SituationGroupType
619
+
620
+ -----------------------
621
+
622
+ GetSituationType( Arg0 )
623
+ Description: Get the SituationType object with the provided key in their database
624
+ Definition type: Global promote
625
+ Return type: SituationType
626
+
627
+ -----------------------
628
+
629
+ GetStaticModifier( Arg0 )
630
+ Description: Get the StaticModifier object with the provided key in their database
631
+ Definition type: Global promote
632
+ Return type: StaticModifier
633
+
634
+ -----------------------
635
+
636
+ GetStrugglePhase( Arg0 )
637
+ Description: Get the StrugglePhase object with the provided key in their database
638
+ Definition type: Global promote
639
+ Return type: StrugglePhase
640
+
641
+ -----------------------
642
+
643
+ GetStruggleType( Arg0 )
644
+ Description: Get the StruggleType object with the provided key in their database
645
+ Definition type: Global promote
646
+ Return type: StruggleType
647
+
648
+ -----------------------
649
+
650
+ GetSubjectContractGroup( Arg0 )
651
+ Description: Get the SubjectContractGroup object with the provided key in their database
652
+ Definition type: Global promote
653
+ Return type: SubjectContractGroup
654
+
655
+ -----------------------
656
+
657
+ GetSubjectContractType( Arg0 )
658
+ Description: Get the SubjectContractType object with the provided key in their database
659
+ Definition type: Global promote
660
+ Return type: SubjectContractType
661
+
662
+ -----------------------
663
+
664
+ GetSuggestionType( Arg0 )
665
+ Description: Get the SuggestionType object with the provided key in their database
666
+ Definition type: Global promote
667
+ Return type: SuggestionType
668
+
669
+ -----------------------
670
+
671
+ GetTaskContractType( Arg0 )
672
+ Description: Get the TaskContractType object with the provided key in their database
673
+ Definition type: Global promote
674
+ Return type: TaskContractType
675
+
676
+ -----------------------
677
+
678
+ GetTaxSlotObligation( Arg0 )
679
+ Description: Get the TaxSlotObligation object with the provided key in their database
680
+ Definition type: Global promote
681
+ Return type: TaxSlotObligation
682
+
683
+ -----------------------
684
+
685
+ GetTaxSlotType( Arg0 )
686
+ Description: Get the TaxSlotType object with the provided key in their database
687
+ Definition type: Global promote
688
+ Return type: TaxSlotType
689
+
690
+ -----------------------
691
+
692
+ GetTerrain( Arg0 )
693
+ Description: Get the Terrain object with the provided key in their database
694
+ Definition type: Global promote
695
+ Return type: Terrain
696
+
697
+ -----------------------
698
+
699
+ GetTrait( Arg0 )
700
+ Description: Get the Trait object with the provided key in their database
701
+ Definition type: Global promote
702
+ Return type: Trait
703
+
704
+ -----------------------
705
+
706
+ GetTravelOption( Arg0 )
707
+ Description: Get the TravelOption object with the provided key in their database
708
+ Definition type: Global promote
709
+ Return type: TravelOption
710
+
711
+ -----------------------
712
+
713
+ GetTravelPointOfInterestType( Arg0 )
714
+ Description: Get the TravelPointOfInterestType object with the provided key in their database
715
+ Definition type: Global promote
716
+ Return type: TravelPointOfInterestType
717
+
718
+ -----------------------
719
+
720
+ GetTriggeredLegendSeed( Arg0 )
721
+ Description: Get the TriggeredLegendSeed object with the provided key in their database
722
+ Definition type: Global promote
723
+ Return type: TriggeredLegendSeed
724
+
725
+ -----------------------
726
+
727
+ GetVassalStance( Arg0 )
728
+ Description: Get the VassalStance object with the provided key in their database
729
+ Definition type: Global promote
730
+ Return type: VassalStance
731
+
732
+ -----------------------
733
+
734
+ PREV
735
+ Description: Script Scope
736
+ Definition type: Global promote
737
+ Return type: Scope
738
+
739
+ -----------------------
740
+
741
+ ROOT
742
+ Description: Script Scope
743
+ Definition type: Global promote
744
+ Return type: Scope
745
+
746
+ -----------------------
747
+
748
+ SCOPE
749
+ Description: Script Scope
750
+ Definition type: Global promote
751
+ Return type: TopScope
752
+
753
+ -----------------------
754
+
755
+ THIS
756
+ Description: Script Scope
757
+ Definition type: Global promote
758
+ Return type: Scope
759
+
760
+ -----------------------
761
+
762
+ GetAccoladeType( Arg0 )
763
+ Description: Get the AccoladeType object with the provided key in their database
764
+ Definition type: Global function
765
+ Return type: [unregistered]
766
+
767
+ -----------------------
768
+
769
+ GetActivityGroupType( Arg0 )
770
+ Description: Get the ActivityGroupType object with the provided key in their database
771
+ Definition type: Global function
772
+ Return type: [unregistered]
773
+
774
+ -----------------------
775
+
776
+ GetActivityGuestInviteRule( Arg0 )
777
+ Description: Get the ActivityGuestInviteRule object with the provided key in their database
778
+ Definition type: Global function
779
+ Return type: [unregistered]
780
+
781
+ -----------------------
782
+
783
+ GetActivityIntent( Arg0 )
784
+ Description: Get the ActivityIntent object with the provided key in their database
785
+ Definition type: Global function
786
+ Return type: [unregistered]
787
+
788
+ -----------------------
789
+
790
+ GetActivityLocale( Arg0 )
791
+ Description: Get the ActivityLocale object with the provided key in their database
792
+ Definition type: Global function
793
+ Return type: _null_type_
794
+
795
+ -----------------------
796
+
797
+ GetActivityPulseAction( Arg0 )
798
+ Description: Get the ActivityPulseAction object with the provided key in their database
799
+ Definition type: Global function
800
+ Return type: [unregistered]
801
+
802
+ -----------------------
803
+
804
+ GetActivityType( Arg0 )
805
+ Description: Get the ActivityType object with the provided key in their database
806
+ Definition type: Global function
807
+ Return type: [unregistered]
808
+
809
+ -----------------------
810
+
811
+ GetAgentSlotType( Arg0 )
812
+ Description: Get the AgentSlotType object with the provided key in their database
813
+ Definition type: Global function
814
+ Return type: [unregistered]
815
+
816
+ -----------------------
817
+
818
+ GetAllAccoladeTypes
819
+ Description: Get all AccoladeType objects in their database
820
+ Definition type: Global function
821
+ Return type: [unregistered]
822
+
823
+ -----------------------
824
+
825
+ GetAllActivityGroupTypes
826
+ Description: Get all ActivityGroupType objects in their database
827
+ Definition type: Global function
828
+ Return type: [unregistered]
829
+
830
+ -----------------------
831
+
832
+ GetAllActivityGuestInviteRules
833
+ Description: Get all ActivityGuestInviteRule objects in their database
834
+ Definition type: Global function
835
+ Return type: [unregistered]
836
+
837
+ -----------------------
838
+
839
+ GetAllActivityIntents
840
+ Description: Get all ActivityIntent objects in their database
841
+ Definition type: Global function
842
+ Return type: [unregistered]
843
+
844
+ -----------------------
845
+
846
+ GetAllActivityLocales
847
+ Description: Get all ActivityLocale objects in their database
848
+ Definition type: Global function
849
+ Return type: [unregistered]
850
+
851
+ -----------------------
852
+
853
+ GetAllActivityPulseActions
854
+ Description: Get all ActivityPulseAction objects in their database
855
+ Definition type: Global function
856
+ Return type: [unregistered]
857
+
858
+ -----------------------
859
+
860
+ GetAllActivityTypes
861
+ Description: Get all ActivityType objects in their database
862
+ Definition type: Global function
863
+ Return type: [unregistered]
864
+
865
+ -----------------------
866
+
867
+ GetAllAgentSlotTypes
868
+ Description: Get all AgentSlotType objects in their database
869
+ Definition type: Global function
870
+ Return type: [unregistered]
871
+
872
+ -----------------------
873
+
874
+ GetAllArtifactTypes
875
+ Description: Get all ArtifactType objects in their database
876
+ Definition type: Global function
877
+ Return type: [unregistered]
878
+
879
+ -----------------------
880
+
881
+ GetAllArtifactVisualTypes
882
+ Description: Get all ArtifactVisualType objects in their database
883
+ Definition type: Global function
884
+ Return type: [unregistered]
885
+
886
+ -----------------------
887
+
888
+ GetAllBookmarkGroups
889
+ Description: Get all BookmarkGroup objects in their database
890
+ Definition type: Global function
891
+ Return type: [unregistered]
892
+
893
+ -----------------------
894
+
895
+ GetAllBookmarkPortraits
896
+ Description: Get all BookmarkPortrait objects in their database
897
+ Definition type: Global function
898
+ Return type: [unregistered]
899
+
900
+ -----------------------
901
+
902
+ GetAllBookmarks
903
+ Description: Get all Bookmark objects in their database
904
+ Definition type: Global function
905
+ Return type: [unregistered]
906
+
907
+ -----------------------
908
+
909
+ GetAllBuildings
910
+ Description: Get all Building objects in their database
911
+ Definition type: Global function
912
+ Return type: [unregistered]
913
+
914
+ -----------------------
915
+
916
+ GetAllCasusBelliTypes
917
+ Description: Get all CasusBelliType objects in their database
918
+ Definition type: Global function
919
+ Return type: [unregistered]
920
+
921
+ -----------------------
922
+
923
+ GetAllCatalystTypes
924
+ Description: Get all CatalystType objects in their database
925
+ Definition type: Global function
926
+ Return type: [unregistered]
927
+
928
+ -----------------------
929
+
930
+ GetAllChallengeCharacters
931
+ Description: Get all ChallengeCharacter objects in their database
932
+ Definition type: Global function
933
+ Return type: [unregistered]
934
+
935
+ -----------------------
936
+
937
+ GetAllCharacterInteractionCategorys
938
+ Description: Get all CharacterInteractionCategory objects in their database
939
+ Definition type: Global function
940
+ Return type: [unregistered]
941
+
942
+ -----------------------
943
+
944
+ GetAllCharacterInteractions
945
+ Description: Get all CharacterInteraction objects in their database
946
+ Definition type: Global function
947
+ Return type: [unregistered]
948
+
949
+ -----------------------
950
+
951
+ GetAllCharacterMemoryTypes
952
+ Description: Get all CharacterMemoryType objects in their database
953
+ Definition type: Global function
954
+ Return type: [unregistered]
955
+
956
+ -----------------------
957
+
958
+ GetAllConfederationTypes
959
+ Description: Get all ConfederationType objects in their database
960
+ Definition type: Global function
961
+ Return type: [unregistered]
962
+
963
+ -----------------------
964
+
965
+ GetAllConnectionArrowTypes
966
+ Description: Get all ConnectionArrowType objects in their database
967
+ Definition type: Global function
968
+ Return type: [unregistered]
969
+
970
+ -----------------------
971
+
972
+ GetAllCouncilPositionTypes
973
+ Description: Get all CouncilPositionType objects in their database
974
+ Definition type: Global function
975
+ Return type: [unregistered]
976
+
977
+ -----------------------
978
+
979
+ GetAllCouncilTaskTypes
980
+ Description: Get all CouncilTaskType objects in their database
981
+ Definition type: Global function
982
+ Return type: [unregistered]
983
+
984
+ -----------------------
985
+
986
+ GetAllCourtAmenitiesSettings
987
+ Description: Get all CourtAmenitiesSetting objects in their database
988
+ Definition type: Global function
989
+ Return type: [unregistered]
990
+
991
+ -----------------------
992
+
993
+ GetAllCourtPositionTaskTypes
994
+ Description: Get all CourtPositionTaskType objects in their database
995
+ Definition type: Global function
996
+ Return type: [unregistered]
997
+
998
+ -----------------------
999
+
1000
+ GetAllCourtPositionTypes
1001
+ Description: Get all CourtPositionType objects in their database
1002
+ Definition type: Global function
1003
+ Return type: [unregistered]
1004
+
1005
+ -----------------------
1006
+
1007
+ GetAllCourtTypes
1008
+ Description: Get all CourtType objects in their database
1009
+ Definition type: Global function
1010
+ Return type: [unregistered]
1011
+
1012
+ -----------------------
1013
+
1014
+ GetAllCultureEraTypes
1015
+ Description: Get all CultureEraType objects in their database
1016
+ Definition type: Global function
1017
+ Return type: [unregistered]
1018
+
1019
+ -----------------------
1020
+
1021
+ GetAllCultureInnovationTypes
1022
+ Description: Get all CultureInnovationType objects in their database
1023
+ Definition type: Global function
1024
+ Return type: [unregistered]
1025
+
1026
+ -----------------------
1027
+
1028
+ GetAllCulturePillars
1029
+ Description: Get all CulturePillar objects in their database
1030
+ Definition type: Global function
1031
+ Return type: [unregistered]
1032
+
1033
+ -----------------------
1034
+
1035
+ GetAllCultureTemplates
1036
+ Description: Get all CultureTemplate objects in their database
1037
+ Definition type: Global function
1038
+ Return type: [unregistered]
1039
+
1040
+ -----------------------
1041
+
1042
+ GetAllCultureTraditions
1043
+ Description: Get all CultureTradition objects in their database
1044
+ Definition type: Global function
1045
+ Return type: [unregistered]
1046
+
1047
+ -----------------------
1048
+
1049
+ GetAllDecisionGroupTypes
1050
+ Description: Get all DecisionGroupType objects in their database
1051
+ Definition type: Global function
1052
+ Return type: [unregistered]
1053
+
1054
+ -----------------------
1055
+
1056
+ GetAllDecisions
1057
+ Description: Get all Decision objects in their database
1058
+ Definition type: Global function
1059
+ Return type: [unregistered]
1060
+
1061
+ -----------------------
1062
+
1063
+ GetAllDlcs
1064
+ Description: Get all Dlc objects in their database
1065
+ Definition type: Global function
1066
+ Return type: [unregistered]
1067
+
1068
+ -----------------------
1069
+
1070
+ GetAllDoctrineGroupTypes
1071
+ Description: Get all DoctrineGroupType objects in their database
1072
+ Definition type: Global function
1073
+ Return type: [unregistered]
1074
+
1075
+ -----------------------
1076
+
1077
+ GetAllDomicileBuildings
1078
+ Description: Get all DomicileBuilding objects in their database
1079
+ Definition type: Global function
1080
+ Return type: [unregistered]
1081
+
1082
+ -----------------------
1083
+
1084
+ GetAllDomicileTypes
1085
+ Description: Get all DomicileType objects in their database
1086
+ Definition type: Global function
1087
+ Return type: [unregistered]
1088
+
1089
+ -----------------------
1090
+
1091
+ GetAllDynastyHouseTemplates
1092
+ Description: Get all DynastyHouseTemplate objects in their database
1093
+ Definition type: Global function
1094
+ Return type: [unregistered]
1095
+
1096
+ -----------------------
1097
+
1098
+ GetAllDynastyLegacys
1099
+ Description: Get all DynastyLegacy objects in their database
1100
+ Definition type: Global function
1101
+ Return type: [unregistered]
1102
+
1103
+ -----------------------
1104
+
1105
+ GetAllDynastyPerks
1106
+ Description: Get all DynastyPerk objects in their database
1107
+ Definition type: Global function
1108
+ Return type: [unregistered]
1109
+
1110
+ -----------------------
1111
+
1112
+ GetAllDynastyTemplates
1113
+ Description: Get all DynastyTemplate objects in their database
1114
+ Definition type: Global function
1115
+ Return type: [unregistered]
1116
+
1117
+ -----------------------
1118
+
1119
+ GetAllEpidemicTypes
1120
+ Description: Get all EpidemicType objects in their database
1121
+ Definition type: Global function
1122
+ Return type: [unregistered]
1123
+
1124
+ -----------------------
1125
+
1126
+ GetAllFaithDoctrines
1127
+ Description: Get all FaithDoctrine objects in their database
1128
+ Definition type: Global function
1129
+ Return type: [unregistered]
1130
+
1131
+ -----------------------
1132
+
1133
+ GetAllFaithTypes
1134
+ Description: Get all FaithType objects in their database
1135
+ Definition type: Global function
1136
+ Return type: [unregistered]
1137
+
1138
+ -----------------------
1139
+
1140
+ GetAllFocusTypes
1141
+ Description: Get all FocusType objects in their database
1142
+ Definition type: Global function
1143
+ Return type: [unregistered]
1144
+
1145
+ -----------------------
1146
+
1147
+ GetAllGeographicalRegions
1148
+ Description: Get all GeographicalRegion objects in their database
1149
+ Definition type: Global function
1150
+ Return type: [unregistered]
1151
+
1152
+ -----------------------
1153
+
1154
+ GetAllGovernmentTypes
1155
+ Description: Get all GovernmentType objects in their database
1156
+ Definition type: Global function
1157
+ Return type: [unregistered]
1158
+
1159
+ -----------------------
1160
+
1161
+ GetAllGraphicalUnitTypes
1162
+ Description: Get all GraphicalUnitType objects in their database
1163
+ Definition type: Global function
1164
+ Return type: [unregistered]
1165
+
1166
+ -----------------------
1167
+
1168
+ GetAllGreatProjectTypes
1169
+ Description: Get all GreatProjectType objects in their database
1170
+ Definition type: Global function
1171
+ Return type: [unregistered]
1172
+
1173
+ -----------------------
1174
+
1175
+ GetAllHoldingTypes
1176
+ Description: Get all HoldingType objects in their database
1177
+ Definition type: Global function
1178
+ Return type: [unregistered]
1179
+
1180
+ -----------------------
1181
+
1182
+ GetAllHolySites
1183
+ Description: Get all HolySite objects in their database
1184
+ Definition type: Global function
1185
+ Return type: [unregistered]
1186
+
1187
+ -----------------------
1188
+
1189
+ GetAllHouseAspirations
1190
+ Description: Get all HouseAspiration objects in their database
1191
+ Definition type: Global function
1192
+ Return type: [unregistered]
1193
+
1194
+ -----------------------
1195
+
1196
+ GetAllHouseRelationLevels
1197
+ Description: Get all HouseRelationLevel objects in their database
1198
+ Definition type: Global function
1199
+ Return type: [unregistered]
1200
+
1201
+ -----------------------
1202
+
1203
+ GetAllHouseRelationTypes
1204
+ Description: Get all HouseRelationType objects in their database
1205
+ Definition type: Global function
1206
+ Return type: [unregistered]
1207
+
1208
+ -----------------------
1209
+
1210
+ GetAllHouseUnityStages
1211
+ Description: Get all HouseUnityStage objects in their database
1212
+ Definition type: Global function
1213
+ Return type: [unregistered]
1214
+
1215
+ -----------------------
1216
+
1217
+ GetAllIllustrations
1218
+ Description: Get all Illustration objects in their database
1219
+ Definition type: Global function
1220
+ Return type: [unregistered]
1221
+
1222
+ -----------------------
1223
+
1224
+ GetAllImportantActionTypes
1225
+ Description: Get all ImportantActionType objects in their database
1226
+ Definition type: Global function
1227
+ Return type: [unregistered]
1228
+
1229
+ -----------------------
1230
+
1231
+ GetAllInspirationTypes
1232
+ Description: Get all InspirationType objects in their database
1233
+ Definition type: Global function
1234
+ Return type: [unregistered]
1235
+
1236
+ -----------------------
1237
+
1238
+ GetAllInventorySlotTypes
1239
+ Description: Get all InventorySlotType objects in their database
1240
+ Definition type: Global function
1241
+ Return type: [unregistered]
1242
+
1243
+ -----------------------
1244
+
1245
+ GetAllLandedTitpleTemplates
1246
+ Description: Get all LandedTitpleTemplate objects in their database
1247
+ Definition type: Global function
1248
+ Return type: [unregistered]
1249
+
1250
+ -----------------------
1251
+
1252
+ GetAllLawGroups
1253
+ Description: Get all LawGroup objects in their database
1254
+ Definition type: Global function
1255
+ Return type: [unregistered]
1256
+
1257
+ -----------------------
1258
+
1259
+ GetAllLaws
1260
+ Description: Get all Law objects in their database
1261
+ Definition type: Global function
1262
+ Return type: [unregistered]
1263
+
1264
+ -----------------------
1265
+
1266
+ GetAllLegendTypes
1267
+ Description: Get all LegendType objects in their database
1268
+ Definition type: Global function
1269
+ Return type: [unregistered]
1270
+
1271
+ -----------------------
1272
+
1273
+ GetAllLegitimacyTypes
1274
+ Description: Get all LegitimacyType objects in their database
1275
+ Definition type: Global function
1276
+ Return type: [unregistered]
1277
+
1278
+ -----------------------
1279
+
1280
+ GetAllLifestyles
1281
+ Description: Get all Lifestyle objects in their database
1282
+ Definition type: Global function
1283
+ Return type: [unregistered]
1284
+
1285
+ -----------------------
1286
+
1287
+ GetAllMandates
1288
+ Description: Get all Mandate objects in their database
1289
+ Definition type: Global function
1290
+ Return type: [unregistered]
1291
+
1292
+ -----------------------
1293
+
1294
+ GetAllMenAtArmsTypes
1295
+ Description: Get all MenAtArmsType objects in their database
1296
+ Definition type: Global function
1297
+ Return type: [unregistered]
1298
+
1299
+ -----------------------
1300
+
1301
+ GetAllMessageFilterTypes
1302
+ Description: Get all MessageFilterType objects in their database
1303
+ Definition type: Global function
1304
+ Return type: [unregistered]
1305
+
1306
+ -----------------------
1307
+
1308
+ GetAllMessageGroupTypes
1309
+ Description: Get all MessageGroupType objects in their database
1310
+ Definition type: Global function
1311
+ Return type: [unregistered]
1312
+
1313
+ -----------------------
1314
+
1315
+ GetAllMessageTypes
1316
+ Description: Get all MessageType objects in their database
1317
+ Definition type: Global function
1318
+ Return type: [unregistered]
1319
+
1320
+ -----------------------
1321
+
1322
+ GetAllNicknames
1323
+ Description: Get all Nickname objects in their database
1324
+ Definition type: Global function
1325
+ Return type: [unregistered]
1326
+
1327
+ -----------------------
1328
+
1329
+ GetAllPerks
1330
+ Description: Get all Perk objects in their database
1331
+ Definition type: Global function
1332
+ Return type: [unregistered]
1333
+
1334
+ -----------------------
1335
+
1336
+ GetAllRaidIntents
1337
+ Description: Get all RaidIntent objects in their database
1338
+ Definition type: Global function
1339
+ Return type: [unregistered]
1340
+
1341
+ -----------------------
1342
+
1343
+ GetAllReligionFamilys
1344
+ Description: Get all ReligionFamily objects in their database
1345
+ Definition type: Global function
1346
+ Return type: [unregistered]
1347
+
1348
+ -----------------------
1349
+
1350
+ GetAllReligionTypes
1351
+ Description: Get all ReligionType objects in their database
1352
+ Definition type: Global function
1353
+ Return type: [unregistered]
1354
+
1355
+ -----------------------
1356
+
1357
+ GetAllSchemeCountermeasureTypes
1358
+ Description: Get all SchemeCountermeasureType objects in their database
1359
+ Definition type: Global function
1360
+ Return type: [unregistered]
1361
+
1362
+ -----------------------
1363
+
1364
+ GetAllSchemePulseActions
1365
+ Description: Get all SchemePulseAction objects in their database
1366
+ Definition type: Global function
1367
+ Return type: [unregistered]
1368
+
1369
+ -----------------------
1370
+
1371
+ GetAllSchemeTypes
1372
+ Description: Get all SchemeType objects in their database
1373
+ Definition type: Global function
1374
+ Return type: [unregistered]
1375
+
1376
+ -----------------------
1377
+
1378
+ GetAllScriptedRelations
1379
+ Description: Get all ScriptedRelation objects in their database
1380
+ Definition type: Global function
1381
+ Return type: [unregistered]
1382
+
1383
+ -----------------------
1384
+
1385
+ GetAllSecretTypes
1386
+ Description: Get all SecretType objects in their database
1387
+ Definition type: Global function
1388
+ Return type: [unregistered]
1389
+
1390
+ -----------------------
1391
+
1392
+ GetAllSituationCatalystTypes
1393
+ Description: Get all SituationCatalystType objects in their database
1394
+ Definition type: Global function
1395
+ Return type: [unregistered]
1396
+
1397
+ -----------------------
1398
+
1399
+ GetAllSituationGroupTypes
1400
+ Description: Get all SituationGroupType objects in their database
1401
+ Definition type: Global function
1402
+ Return type: [unregistered]
1403
+
1404
+ -----------------------
1405
+
1406
+ GetAllSituationTypes
1407
+ Description: Get all SituationType objects in their database
1408
+ Definition type: Global function
1409
+ Return type: [unregistered]
1410
+
1411
+ -----------------------
1412
+
1413
+ GetAllStaticModifiers
1414
+ Description: Get all StaticModifier objects in their database
1415
+ Definition type: Global function
1416
+ Return type: [unregistered]
1417
+
1418
+ -----------------------
1419
+
1420
+ GetAllStrugglePhases
1421
+ Description: Get all StrugglePhase objects in their database
1422
+ Definition type: Global function
1423
+ Return type: [unregistered]
1424
+
1425
+ -----------------------
1426
+
1427
+ GetAllStruggleTypes
1428
+ Description: Get all StruggleType objects in their database
1429
+ Definition type: Global function
1430
+ Return type: [unregistered]
1431
+
1432
+ -----------------------
1433
+
1434
+ GetAllSubjectContractGroups
1435
+ Description: Get all SubjectContractGroup objects in their database
1436
+ Definition type: Global function
1437
+ Return type: [unregistered]
1438
+
1439
+ -----------------------
1440
+
1441
+ GetAllSubjectContractTypes
1442
+ Description: Get all SubjectContractType objects in their database
1443
+ Definition type: Global function
1444
+ Return type: [unregistered]
1445
+
1446
+ -----------------------
1447
+
1448
+ GetAllSuggestionTypes
1449
+ Description: Get all SuggestionType objects in their database
1450
+ Definition type: Global function
1451
+ Return type: [unregistered]
1452
+
1453
+ -----------------------
1454
+
1455
+ GetAllTaskContractTypes
1456
+ Description: Get all TaskContractType objects in their database
1457
+ Definition type: Global function
1458
+ Return type: [unregistered]
1459
+
1460
+ -----------------------
1461
+
1462
+ GetAllTaxSlotObligations
1463
+ Description: Get all TaxSlotObligation objects in their database
1464
+ Definition type: Global function
1465
+ Return type: [unregistered]
1466
+
1467
+ -----------------------
1468
+
1469
+ GetAllTaxSlotTypes
1470
+ Description: Get all TaxSlotType objects in their database
1471
+ Definition type: Global function
1472
+ Return type: [unregistered]
1473
+
1474
+ -----------------------
1475
+
1476
+ GetAllTerrains
1477
+ Description: Get all Terrain objects in their database
1478
+ Definition type: Global function
1479
+ Return type: [unregistered]
1480
+
1481
+ -----------------------
1482
+
1483
+ GetAllTraits
1484
+ Description: Get all Trait objects in their database
1485
+ Definition type: Global function
1486
+ Return type: [unregistered]
1487
+
1488
+ -----------------------
1489
+
1490
+ GetAllTravelOptions
1491
+ Description: Get all TravelOption objects in their database
1492
+ Definition type: Global function
1493
+ Return type: [unregistered]
1494
+
1495
+ -----------------------
1496
+
1497
+ GetAllTravelPointOfInterestTypes
1498
+ Description: Get all TravelPointOfInterestType objects in their database
1499
+ Definition type: Global function
1500
+ Return type: [unregistered]
1501
+
1502
+ -----------------------
1503
+
1504
+ GetAllTriggeredLegendSeeds
1505
+ Description: Get all TriggeredLegendSeed objects in their database
1506
+ Definition type: Global function
1507
+ Return type: [unregistered]
1508
+
1509
+ -----------------------
1510
+
1511
+ GetAllVassalStances
1512
+ Description: Get all VassalStance objects in their database
1513
+ Definition type: Global function
1514
+ Return type: [unregistered]
1515
+
1516
+ -----------------------
1517
+
1518
+ GetArtifactType( Arg0 )
1519
+ Description: Get the ArtifactType object with the provided key in their database
1520
+ Definition type: Global function
1521
+ Return type: [unregistered]
1522
+
1523
+ -----------------------
1524
+
1525
+ GetArtifactVisualType( Arg0 )
1526
+ Description: Get the ArtifactVisualType object with the provided key in their database
1527
+ Definition type: Global function
1528
+ Return type: [unregistered]
1529
+
1530
+ -----------------------
1531
+
1532
+ GetBookmark( Arg0 )
1533
+ Description: Get the Bookmark object with the provided key in their database
1534
+ Definition type: Global function
1535
+ Return type: [unregistered]
1536
+
1537
+ -----------------------
1538
+
1539
+ GetBookmarkGroup( Arg0 )
1540
+ Description: Get the BookmarkGroup object with the provided key in their database
1541
+ Definition type: Global function
1542
+ Return type: [unregistered]
1543
+
1544
+ -----------------------
1545
+
1546
+ GetBookmarkPortrait( Arg0 )
1547
+ Description: Get the BookmarkPortrait object with the provided key in their database
1548
+ Definition type: Global function
1549
+ Return type: [unregistered]
1550
+
1551
+ -----------------------
1552
+
1553
+ GetBuilding( Arg0 )
1554
+ Description: Get the Building object with the provided key in their database
1555
+ Definition type: Global function
1556
+ Return type: [unregistered]
1557
+
1558
+ -----------------------
1559
+
1560
+ GetCasusBelliType( Arg0 )
1561
+ Description: Get the CasusBelliType object with the provided key in their database
1562
+ Definition type: Global function
1563
+ Return type: [unregistered]
1564
+
1565
+ -----------------------
1566
+
1567
+ GetCatalystType( Arg0 )
1568
+ Description: Get the CatalystType object with the provided key in their database
1569
+ Definition type: Global function
1570
+ Return type: [unregistered]
1571
+
1572
+ -----------------------
1573
+
1574
+ GetChallengeCharacter( Arg0 )
1575
+ Description: Get the ChallengeCharacter object with the provided key in their database
1576
+ Definition type: Global function
1577
+ Return type: [unregistered]
1578
+
1579
+ -----------------------
1580
+
1581
+ GetCharacterInteraction( Arg0 )
1582
+ Description: Get the CharacterInteraction object with the provided key in their database
1583
+ Definition type: Global function
1584
+ Return type: [unregistered]
1585
+
1586
+ -----------------------
1587
+
1588
+ GetCharacterInteractionCategory( Arg0 )
1589
+ Description: Get the CharacterInteractionCategory object with the provided key in their database
1590
+ Definition type: Global function
1591
+ Return type: [unregistered]
1592
+
1593
+ -----------------------
1594
+
1595
+ GetCharacterMemoryType( Arg0 )
1596
+ Description: Get the CharacterMemoryType object with the provided key in their database
1597
+ Definition type: Global function
1598
+ Return type: _null_type_
1599
+
1600
+ -----------------------
1601
+
1602
+ GetConfederationType( Arg0 )
1603
+ Description: Get the ConfederationType object with the provided key in their database
1604
+ Definition type: Global function
1605
+ Return type: [unregistered]
1606
+
1607
+ -----------------------
1608
+
1609
+ GetConnectionArrowType( Arg0 )
1610
+ Description: Get the ConnectionArrowType object with the provided key in their database
1611
+ Definition type: Global function
1612
+ Return type: _null_type_
1613
+
1614
+ -----------------------
1615
+
1616
+ GetCouncilPositionType( Arg0 )
1617
+ Description: Get the CouncilPositionType object with the provided key in their database
1618
+ Definition type: Global function
1619
+ Return type: [unregistered]
1620
+
1621
+ -----------------------
1622
+
1623
+ GetCouncilTaskType( Arg0 )
1624
+ Description: Get the CouncilTaskType object with the provided key in their database
1625
+ Definition type: Global function
1626
+ Return type: [unregistered]
1627
+
1628
+ -----------------------
1629
+
1630
+ GetCourtAmenitiesSetting( Arg0 )
1631
+ Description: Get the CourtAmenitiesSetting object with the provided key in their database
1632
+ Definition type: Global function
1633
+ Return type: [unregistered]
1634
+
1635
+ -----------------------
1636
+
1637
+ GetCourtPositionTaskType( Arg0 )
1638
+ Description: Get the CourtPositionTaskType object with the provided key in their database
1639
+ Definition type: Global function
1640
+ Return type: [unregistered]
1641
+
1642
+ -----------------------
1643
+
1644
+ GetCourtPositionType( Arg0 )
1645
+ Description: Get the CourtPositionType object with the provided key in their database
1646
+ Definition type: Global function
1647
+ Return type: [unregistered]
1648
+
1649
+ -----------------------
1650
+
1651
+ GetCourtType( Arg0 )
1652
+ Description: Get the CourtType object with the provided key in their database
1653
+ Definition type: Global function
1654
+ Return type: [unregistered]
1655
+
1656
+ -----------------------
1657
+
1658
+ GetCultureEraType( Arg0 )
1659
+ Description: Get the CultureEraType object with the provided key in their database
1660
+ Definition type: Global function
1661
+ Return type: [unregistered]
1662
+
1663
+ -----------------------
1664
+
1665
+ GetCultureInnovationType( Arg0 )
1666
+ Description: Get the CultureInnovationType object with the provided key in their database
1667
+ Definition type: Global function
1668
+ Return type: [unregistered]
1669
+
1670
+ -----------------------
1671
+
1672
+ GetCulturePillar( Arg0 )
1673
+ Description: Get the CulturePillar object with the provided key in their database
1674
+ Definition type: Global function
1675
+ Return type: [unregistered]
1676
+
1677
+ -----------------------
1678
+
1679
+ GetCultureTemplate( Arg0 )
1680
+ Description: Get the CultureTemplate object with the provided key in their database
1681
+ Definition type: Global function
1682
+ Return type: [unregistered]
1683
+
1684
+ -----------------------
1685
+
1686
+ GetCultureTradition( Arg0 )
1687
+ Description: Get the CultureTradition object with the provided key in their database
1688
+ Definition type: Global function
1689
+ Return type: [unregistered]
1690
+
1691
+ -----------------------
1692
+
1693
+ GetDecision( Arg0 )
1694
+ Description: Get the Decision object with the provided key in their database
1695
+ Definition type: Global function
1696
+ Return type: [unregistered]
1697
+
1698
+ -----------------------
1699
+
1700
+ GetDecisionGroupType( Arg0 )
1701
+ Description: Get the DecisionGroupType object with the provided key in their database
1702
+ Definition type: Global function
1703
+ Return type: [unregistered]
1704
+
1705
+ -----------------------
1706
+
1707
+ GetDlc( Arg0 )
1708
+ Description: Get the Dlc object with the provided key in their database
1709
+ Definition type: Global function
1710
+ Return type: [unregistered]
1711
+
1712
+ -----------------------
1713
+
1714
+ GetDoctrineGroupType( Arg0 )
1715
+ Description: Get the DoctrineGroupType object with the provided key in their database
1716
+ Definition type: Global function
1717
+ Return type: [unregistered]
1718
+
1719
+ -----------------------
1720
+
1721
+ GetDomicileBuilding( Arg0 )
1722
+ Description: Get the DomicileBuilding object with the provided key in their database
1723
+ Definition type: Global function
1724
+ Return type: [unregistered]
1725
+
1726
+ -----------------------
1727
+
1728
+ GetDomicileType( Arg0 )
1729
+ Description: Get the DomicileType object with the provided key in their database
1730
+ Definition type: Global function
1731
+ Return type: [unregistered]
1732
+
1733
+ -----------------------
1734
+
1735
+ GetDynastyHouseTemplate( Arg0 )
1736
+ Description: Get the DynastyHouseTemplate object with the provided key in their database
1737
+ Definition type: Global function
1738
+ Return type: _null_type_
1739
+
1740
+ -----------------------
1741
+
1742
+ GetDynastyLegacy( Arg0 )
1743
+ Description: Get the DynastyLegacy object with the provided key in their database
1744
+ Definition type: Global function
1745
+ Return type: [unregistered]
1746
+
1747
+ -----------------------
1748
+
1749
+ GetDynastyPerk( Arg0 )
1750
+ Description: Get the DynastyPerk object with the provided key in their database
1751
+ Definition type: Global function
1752
+ Return type: [unregistered]
1753
+
1754
+ -----------------------
1755
+
1756
+ GetDynastyTemplate( Arg0 )
1757
+ Description: Get the DynastyTemplate object with the provided key in their database
1758
+ Definition type: Global function
1759
+ Return type: _null_type_
1760
+
1761
+ -----------------------
1762
+
1763
+ GetEpidemicType( Arg0 )
1764
+ Description: Get the EpidemicType object with the provided key in their database
1765
+ Definition type: Global function
1766
+ Return type: [unregistered]
1767
+
1768
+ -----------------------
1769
+
1770
+ GetFaithDoctrine( Arg0 )
1771
+ Description: Get the FaithDoctrine object with the provided key in their database
1772
+ Definition type: Global function
1773
+ Return type: [unregistered]
1774
+
1775
+ -----------------------
1776
+
1777
+ GetFaithType( Arg0 )
1778
+ Description: Get the FaithType object with the provided key in their database
1779
+ Definition type: Global function
1780
+ Return type: _null_type_
1781
+
1782
+ -----------------------
1783
+
1784
+ GetFocusType( Arg0 )
1785
+ Description: Get the FocusType object with the provided key in their database
1786
+ Definition type: Global function
1787
+ Return type: [unregistered]
1788
+
1789
+ -----------------------
1790
+
1791
+ GetGeographicalRegion( Arg0 )
1792
+ Description: Get the GeographicalRegion object with the provided key in their database
1793
+ Definition type: Global function
1794
+ Return type: [unregistered]
1795
+
1796
+ -----------------------
1797
+
1798
+ GetGlobalList( Arg0 )
1799
+ Definition type: Global function
1800
+ Return type: [unregistered]
1801
+
1802
+ -----------------------
1803
+
1804
+ GetGlobalVariable( Arg0 )
1805
+ Definition type: Global function
1806
+ Return type: [unregistered]
1807
+
1808
+ -----------------------
1809
+
1810
+ GetGovernmentType( Arg0 )
1811
+ Description: Get the GovernmentType object with the provided key in their database
1812
+ Definition type: Global function
1813
+ Return type: [unregistered]
1814
+
1815
+ -----------------------
1816
+
1817
+ GetGraphicalUnitType( Arg0 )
1818
+ Description: Get the GraphicalUnitType object with the provided key in their database
1819
+ Definition type: Global function
1820
+ Return type: [unregistered]
1821
+
1822
+ -----------------------
1823
+
1824
+ GetGreatProjectType( Arg0 )
1825
+ Description: Get the GreatProjectType object with the provided key in their database
1826
+ Definition type: Global function
1827
+ Return type: [unregistered]
1828
+
1829
+ -----------------------
1830
+
1831
+ GetHoldingType( Arg0 )
1832
+ Description: Get the HoldingType object with the provided key in their database
1833
+ Definition type: Global function
1834
+ Return type: [unregistered]
1835
+
1836
+ -----------------------
1837
+
1838
+ GetHolySite( Arg0 )
1839
+ Description: Get the HolySite object with the provided key in their database
1840
+ Definition type: Global function
1841
+ Return type: [unregistered]
1842
+
1843
+ -----------------------
1844
+
1845
+ GetHouseAspiration( Arg0 )
1846
+ Description: Get the HouseAspiration object with the provided key in their database
1847
+ Definition type: Global function
1848
+ Return type: [unregistered]
1849
+
1850
+ -----------------------
1851
+
1852
+ GetHouseRelationLevel( Arg0 )
1853
+ Description: Get the HouseRelationLevel object with the provided key in their database
1854
+ Definition type: Global function
1855
+ Return type: [unregistered]
1856
+
1857
+ -----------------------
1858
+
1859
+ GetHouseRelationType( Arg0 )
1860
+ Description: Get the HouseRelationType object with the provided key in their database
1861
+ Definition type: Global function
1862
+ Return type: [unregistered]
1863
+
1864
+ -----------------------
1865
+
1866
+ GetHouseUnityStage( Arg0 )
1867
+ Description: Get the HouseUnityStage object with the provided key in their database
1868
+ Definition type: Global function
1869
+ Return type: [unregistered]
1870
+
1871
+ -----------------------
1872
+
1873
+ GetIllustration( Arg0 )
1874
+ Description: Get the Illustration object with the provided key in their database
1875
+ Definition type: Global function
1876
+ Return type: _null_type_
1877
+
1878
+ -----------------------
1879
+
1880
+ GetImportantActionType( Arg0 )
1881
+ Description: Get the ImportantActionType object with the provided key in their database
1882
+ Definition type: Global function
1883
+ Return type: [unregistered]
1884
+
1885
+ -----------------------
1886
+
1887
+ GetInspirationType( Arg0 )
1888
+ Description: Get the InspirationType object with the provided key in their database
1889
+ Definition type: Global function
1890
+ Return type: [unregistered]
1891
+
1892
+ -----------------------
1893
+
1894
+ GetInventorySlotType( Arg0 )
1895
+ Description: Get the InventorySlotType object with the provided key in their database
1896
+ Definition type: Global function
1897
+ Return type: [unregistered]
1898
+
1899
+ -----------------------
1900
+
1901
+ GetLandedTitpleTemplate( Arg0 )
1902
+ Description: Get the LandedTitpleTemplate object with the provided key in their database
1903
+ Definition type: Global function
1904
+ Return type: _null_type_
1905
+
1906
+ -----------------------
1907
+
1908
+ GetLaw( Arg0 )
1909
+ Description: Get the Law object with the provided key in their database
1910
+ Definition type: Global function
1911
+ Return type: [unregistered]
1912
+
1913
+ -----------------------
1914
+
1915
+ GetLawGroup( Arg0 )
1916
+ Description: Get the LawGroup object with the provided key in their database
1917
+ Definition type: Global function
1918
+ Return type: [unregistered]
1919
+
1920
+ -----------------------
1921
+
1922
+ GetLegendType( Arg0 )
1923
+ Description: Get the LegendType object with the provided key in their database
1924
+ Definition type: Global function
1925
+ Return type: [unregistered]
1926
+
1927
+ -----------------------
1928
+
1929
+ GetLegitimacyType( Arg0 )
1930
+ Description: Get the LegitimacyType object with the provided key in their database
1931
+ Definition type: Global function
1932
+ Return type: [unregistered]
1933
+
1934
+ -----------------------
1935
+
1936
+ GetLifestyle( Arg0 )
1937
+ Description: Get the Lifestyle object with the provided key in their database
1938
+ Definition type: Global function
1939
+ Return type: [unregistered]
1940
+
1941
+ -----------------------
1942
+
1943
+ GetMandate( Arg0 )
1944
+ Description: Get the Mandate object with the provided key in their database
1945
+ Definition type: Global function
1946
+ Return type: _null_type_
1947
+
1948
+ -----------------------
1949
+
1950
+ GetMenAtArmsType( Arg0 )
1951
+ Description: Get the MenAtArmsType object with the provided key in their database
1952
+ Definition type: Global function
1953
+ Return type: [unregistered]
1954
+
1955
+ -----------------------
1956
+
1957
+ GetMessageFilterType( Arg0 )
1958
+ Description: Get the MessageFilterType object with the provided key in their database
1959
+ Definition type: Global function
1960
+ Return type: _null_type_
1961
+
1962
+ -----------------------
1963
+
1964
+ GetMessageGroupType( Arg0 )
1965
+ Description: Get the MessageGroupType object with the provided key in their database
1966
+ Definition type: Global function
1967
+ Return type: [unregistered]
1968
+
1969
+ -----------------------
1970
+
1971
+ GetMessageType( Arg0 )
1972
+ Description: Get the MessageType object with the provided key in their database
1973
+ Definition type: Global function
1974
+ Return type: [unregistered]
1975
+
1976
+ -----------------------
1977
+
1978
+ GetNickname( Arg0 )
1979
+ Description: Get the Nickname object with the provided key in their database
1980
+ Definition type: Global function
1981
+ Return type: _null_type_
1982
+
1983
+ -----------------------
1984
+
1985
+ GetPerk( Arg0 )
1986
+ Description: Get the Perk object with the provided key in their database
1987
+ Definition type: Global function
1988
+ Return type: [unregistered]
1989
+
1990
+ -----------------------
1991
+
1992
+ GetRaidIntent( Arg0 )
1993
+ Description: Get the RaidIntent object with the provided key in their database
1994
+ Definition type: Global function
1995
+ Return type: [unregistered]
1996
+
1997
+ -----------------------
1998
+
1999
+ GetReligionFamily( Arg0 )
2000
+ Description: Get the ReligionFamily object with the provided key in their database
2001
+ Definition type: Global function
2002
+ Return type: _null_type_
2003
+
2004
+ -----------------------
2005
+
2006
+ GetReligionType( Arg0 )
2007
+ Description: Get the ReligionType object with the provided key in their database
2008
+ Definition type: Global function
2009
+ Return type: _null_type_
2010
+
2011
+ -----------------------
2012
+
2013
+ GetSchemeCountermeasureType( Arg0 )
2014
+ Description: Get the SchemeCountermeasureType object with the provided key in their database
2015
+ Definition type: Global function
2016
+ Return type: [unregistered]
2017
+
2018
+ -----------------------
2019
+
2020
+ GetSchemePulseAction( Arg0 )
2021
+ Description: Get the SchemePulseAction object with the provided key in their database
2022
+ Definition type: Global function
2023
+ Return type: _null_type_
2024
+
2025
+ -----------------------
2026
+
2027
+ GetSchemeType( Arg0 )
2028
+ Description: Get the SchemeType object with the provided key in their database
2029
+ Definition type: Global function
2030
+ Return type: [unregistered]
2031
+
2032
+ -----------------------
2033
+
2034
+ GetScriptedRelation( Arg0 )
2035
+ Description: Get the ScriptedRelation object with the provided key in their database
2036
+ Definition type: Global function
2037
+ Return type: [unregistered]
2038
+
2039
+ -----------------------
2040
+
2041
+ GetSecretType( Arg0 )
2042
+ Description: Get the SecretType object with the provided key in their database
2043
+ Definition type: Global function
2044
+ Return type: [unregistered]
2045
+
2046
+ -----------------------
2047
+
2048
+ GetSituationCatalystType( Arg0 )
2049
+ Description: Get the SituationCatalystType object with the provided key in their database
2050
+ Definition type: Global function
2051
+ Return type: [unregistered]
2052
+
2053
+ -----------------------
2054
+
2055
+ GetSituationGroupType( Arg0 )
2056
+ Description: Get the SituationGroupType object with the provided key in their database
2057
+ Definition type: Global function
2058
+ Return type: [unregistered]
2059
+
2060
+ -----------------------
2061
+
2062
+ GetSituationType( Arg0 )
2063
+ Description: Get the SituationType object with the provided key in their database
2064
+ Definition type: Global function
2065
+ Return type: [unregistered]
2066
+
2067
+ -----------------------
2068
+
2069
+ GetStaticModifier( Arg0 )
2070
+ Description: Get the StaticModifier object with the provided key in their database
2071
+ Definition type: Global function
2072
+ Return type: [unregistered]
2073
+
2074
+ -----------------------
2075
+
2076
+ GetStrugglePhase( Arg0 )
2077
+ Description: Get the StrugglePhase object with the provided key in their database
2078
+ Definition type: Global function
2079
+ Return type: [unregistered]
2080
+
2081
+ -----------------------
2082
+
2083
+ GetStruggleType( Arg0 )
2084
+ Description: Get the StruggleType object with the provided key in their database
2085
+ Definition type: Global function
2086
+ Return type: [unregistered]
2087
+
2088
+ -----------------------
2089
+
2090
+ GetSubjectContractGroup( Arg0 )
2091
+ Description: Get the SubjectContractGroup object with the provided key in their database
2092
+ Definition type: Global function
2093
+ Return type: [unregistered]
2094
+
2095
+ -----------------------
2096
+
2097
+ GetSubjectContractType( Arg0 )
2098
+ Description: Get the SubjectContractType object with the provided key in their database
2099
+ Definition type: Global function
2100
+ Return type: [unregistered]
2101
+
2102
+ -----------------------
2103
+
2104
+ GetSuggestionType( Arg0 )
2105
+ Description: Get the SuggestionType object with the provided key in their database
2106
+ Definition type: Global function
2107
+ Return type: [unregistered]
2108
+
2109
+ -----------------------
2110
+
2111
+ GetTaskContractType( Arg0 )
2112
+ Description: Get the TaskContractType object with the provided key in their database
2113
+ Definition type: Global function
2114
+ Return type: [unregistered]
2115
+
2116
+ -----------------------
2117
+
2118
+ GetTaxSlotObligation( Arg0 )
2119
+ Description: Get the TaxSlotObligation object with the provided key in their database
2120
+ Definition type: Global function
2121
+ Return type: [unregistered]
2122
+
2123
+ -----------------------
2124
+
2125
+ GetTaxSlotType( Arg0 )
2126
+ Description: Get the TaxSlotType object with the provided key in their database
2127
+ Definition type: Global function
2128
+ Return type: [unregistered]
2129
+
2130
+ -----------------------
2131
+
2132
+ GetTerrain( Arg0 )
2133
+ Description: Get the Terrain object with the provided key in their database
2134
+ Definition type: Global function
2135
+ Return type: [unregistered]
2136
+
2137
+ -----------------------
2138
+
2139
+ GetTrait( Arg0 )
2140
+ Description: Get the Trait object with the provided key in their database
2141
+ Definition type: Global function
2142
+ Return type: [unregistered]
2143
+
2144
+ -----------------------
2145
+
2146
+ GetTravelOption( Arg0 )
2147
+ Description: Get the TravelOption object with the provided key in their database
2148
+ Definition type: Global function
2149
+ Return type: [unregistered]
2150
+
2151
+ -----------------------
2152
+
2153
+ GetTravelPointOfInterestType( Arg0 )
2154
+ Description: Get the TravelPointOfInterestType object with the provided key in their database
2155
+ Definition type: Global function
2156
+ Return type: _null_type_
2157
+
2158
+ -----------------------
2159
+
2160
+ GetTriggeredLegendSeed( Arg0 )
2161
+ Description: Get the TriggeredLegendSeed object with the provided key in their database
2162
+ Definition type: Global function
2163
+ Return type: _null_type_
2164
+
2165
+ -----------------------
2166
+
2167
+ GetVarTimeRemaining( Arg0, Arg1 )
2168
+ Definition type: Global function
2169
+ Return type: int32
2170
+
2171
+ -----------------------
2172
+
2173
+ GetVassalStance( Arg0 )
2174
+ Description: Get the VassalStance object with the provided key in their database
2175
+ Definition type: Global function
2176
+ Return type: [unregistered]
2177
+
2178
+ -----------------------
2179
+
2180
+ MakeScopeBool( Arg0 )
2181
+ Definition type: Global function
2182
+ Return type: Scope
2183
+
2184
+ -----------------------
2185
+
2186
+ MakeScopeFlag( Arg0 )
2187
+ Definition type: Global function
2188
+ Return type: Scope
2189
+
2190
+ -----------------------
2191
+
2192
+ MakeScopeValue( Arg0 )
2193
+ Definition type: Global function
2194
+ Return type: Scope
2195
+
2196
+ -----------------------
2197
+
2198
+ Accolade
2199
+ Definition type: Type
2200
+
2201
+ -----------------------
2202
+
2203
+ Accolade.MakeScope
2204
+ Description: Jomini Script System
2205
+ Definition type: Function
2206
+ Return type: Scope
2207
+
2208
+ -----------------------
2209
+
2210
+ ActiveCouncilTask
2211
+ Definition type: Type
2212
+
2213
+ -----------------------
2214
+
2215
+ ActiveCouncilTask.MakeScope
2216
+ Description: Jomini Script System
2217
+ Definition type: Function
2218
+ Return type: Scope
2219
+
2220
+ -----------------------
2221
+
2222
+ Activity
2223
+ Definition type: Type
2224
+
2225
+ -----------------------
2226
+
2227
+ Activity.MakeScope
2228
+ Description: Jomini Script System
2229
+ Definition type: Function
2230
+ Return type: Scope
2231
+
2232
+ -----------------------
2233
+
2234
+ ActivityType
2235
+ Definition type: Type
2236
+
2237
+ -----------------------
2238
+
2239
+ ActivityType.MakeScope
2240
+ Description: Jomini Script System
2241
+ Definition type: Function
2242
+ Return type: Scope
2243
+
2244
+ -----------------------
2245
+
2246
+ Army
2247
+ Definition type: Type
2248
+
2249
+ -----------------------
2250
+
2251
+ Army.MakeScope
2252
+ Description: Jomini Script System
2253
+ Definition type: Function
2254
+ Return type: Scope
2255
+
2256
+ -----------------------
2257
+
2258
+ Artifact
2259
+ Definition type: Type
2260
+
2261
+ -----------------------
2262
+
2263
+ Artifact.MakeScope
2264
+ Description: Jomini Script System
2265
+ Definition type: Function
2266
+ Return type: Scope
2267
+
2268
+ -----------------------
2269
+
2270
+ Character
2271
+ Definition type: Type
2272
+
2273
+ -----------------------
2274
+
2275
+ Character.MakeScope
2276
+ Description: Jomini Script System
2277
+ Definition type: Function
2278
+ Return type: Scope
2279
+
2280
+ -----------------------
2281
+
2282
+ CharacterMemory
2283
+ Definition type: Type
2284
+
2285
+ -----------------------
2286
+
2287
+ CharacterMemory.MakeScope
2288
+ Description: Jomini Script System
2289
+ Definition type: Function
2290
+ Return type: Scope
2291
+
2292
+ -----------------------
2293
+
2294
+ Combat
2295
+ Definition type: Type
2296
+
2297
+ -----------------------
2298
+
2299
+ Combat.MakeScope
2300
+ Description: Jomini Script System
2301
+ Definition type: Function
2302
+ Return type: Scope
2303
+
2304
+ -----------------------
2305
+
2306
+ Confederation
2307
+ Definition type: Type
2308
+
2309
+ -----------------------
2310
+
2311
+ Confederation.MakeScope
2312
+ Description: Jomini Script System
2313
+ Definition type: Function
2314
+ Return type: Scope
2315
+
2316
+ -----------------------
2317
+
2318
+ ConfederationType
2319
+ Definition type: Type
2320
+
2321
+ -----------------------
2322
+
2323
+ ConfederationType.MakeScope
2324
+ Description: Jomini Script System
2325
+ Definition type: Function
2326
+ Return type: Scope
2327
+
2328
+ -----------------------
2329
+
2330
+ Container
2331
+ Definition type: Type
2332
+
2333
+ -----------------------
2334
+
2335
+ Container.AccessSelf
2336
+ Definition type: Function
2337
+ Return type: [unregistered]
2338
+
2339
+ -----------------------
2340
+
2341
+ Container.Self
2342
+ Definition type: Function
2343
+ Return type: [unregistered]
2344
+
2345
+ -----------------------
2346
+
2347
+ CourtPosition
2348
+ Definition type: Type
2349
+
2350
+ -----------------------
2351
+
2352
+ CourtPosition.MakeScope
2353
+ Description: Jomini Script System
2354
+ Definition type: Function
2355
+ Return type: Scope
2356
+
2357
+ -----------------------
2358
+
2359
+ CourtPositionType
2360
+ Definition type: Type
2361
+
2362
+ -----------------------
2363
+
2364
+ CourtPositionType.MakeScope
2365
+ Description: Jomini Script System
2366
+ Definition type: Function
2367
+ Return type: Scope
2368
+
2369
+ -----------------------
2370
+
2371
+ Culture
2372
+ Definition type: Type
2373
+
2374
+ -----------------------
2375
+
2376
+ Culture.MakeScope
2377
+ Description: Jomini Script System
2378
+ Definition type: Function
2379
+ Return type: Scope
2380
+
2381
+ -----------------------
2382
+
2383
+ CultureInnovationType
2384
+ Definition type: Type
2385
+
2386
+ -----------------------
2387
+
2388
+ CultureInnovationType.MakeScope
2389
+ Description: Jomini Script System
2390
+ Definition type: Function
2391
+ Return type: Scope
2392
+
2393
+ -----------------------
2394
+
2395
+ CulturePillar
2396
+ Definition type: Type
2397
+
2398
+ -----------------------
2399
+
2400
+ CulturePillar.MakeScope
2401
+ Description: Jomini Script System
2402
+ Definition type: Function
2403
+ Return type: Scope
2404
+
2405
+ -----------------------
2406
+
2407
+ CultureTradition
2408
+ Definition type: Type
2409
+
2410
+ -----------------------
2411
+
2412
+ CultureTradition.MakeScope
2413
+ Description: Jomini Script System
2414
+ Definition type: Function
2415
+ Return type: Scope
2416
+
2417
+ -----------------------
2418
+
2419
+ Decision
2420
+ Definition type: Type
2421
+
2422
+ -----------------------
2423
+
2424
+ Decision.MakeScope
2425
+ Description: Jomini Script System
2426
+ Definition type: Function
2427
+ Return type: Scope
2428
+
2429
+ -----------------------
2430
+
2431
+ Domicile
2432
+ Definition type: Type
2433
+
2434
+ -----------------------
2435
+
2436
+ Domicile.MakeScope
2437
+ Description: Jomini Script System
2438
+ Definition type: Function
2439
+ Return type: Scope
2440
+
2441
+ -----------------------
2442
+
2443
+ Dynasty
2444
+ Definition type: Type
2445
+
2446
+ -----------------------
2447
+
2448
+ Dynasty.MakeScope
2449
+ Description: Jomini Script System
2450
+ Definition type: Function
2451
+ Return type: Scope
2452
+
2453
+ -----------------------
2454
+
2455
+ DynastyHouse
2456
+ Definition type: Type
2457
+
2458
+ -----------------------
2459
+
2460
+ DynastyHouse.MakeScope
2461
+ Description: Jomini Script System
2462
+ Definition type: Function
2463
+ Return type: Scope
2464
+
2465
+ -----------------------
2466
+
2467
+ Epidemic
2468
+ Definition type: Type
2469
+
2470
+ -----------------------
2471
+
2472
+ Epidemic.MakeScope
2473
+ Description: Jomini Script System
2474
+ Definition type: Function
2475
+ Return type: Scope
2476
+
2477
+ -----------------------
2478
+
2479
+ EpidemicType
2480
+ Definition type: Type
2481
+
2482
+ -----------------------
2483
+
2484
+ EpidemicType.MakeScope
2485
+ Description: Jomini Script System
2486
+ Definition type: Function
2487
+ Return type: Scope
2488
+
2489
+ -----------------------
2490
+
2491
+ Faction
2492
+ Definition type: Type
2493
+
2494
+ -----------------------
2495
+
2496
+ Faction.MakeScope
2497
+ Description: Jomini Script System
2498
+ Definition type: Function
2499
+ Return type: Scope
2500
+
2501
+ -----------------------
2502
+
2503
+ Faith
2504
+ Definition type: Type
2505
+
2506
+ -----------------------
2507
+
2508
+ Faith.MakeScope
2509
+ Description: Jomini Script System
2510
+ Definition type: Function
2511
+ Return type: Scope
2512
+
2513
+ -----------------------
2514
+
2515
+ FaithDoctrine
2516
+ Definition type: Type
2517
+
2518
+ -----------------------
2519
+
2520
+ FaithDoctrine.MakeScope
2521
+ Description: Jomini Script System
2522
+ Definition type: Function
2523
+ Return type: Scope
2524
+
2525
+ -----------------------
2526
+
2527
+ GeographicalRegion
2528
+ Definition type: Type
2529
+
2530
+ -----------------------
2531
+
2532
+ GeographicalRegion.MakeScope
2533
+ Description: Jomini Script System
2534
+ Definition type: Function
2535
+ Return type: Scope
2536
+
2537
+ -----------------------
2538
+
2539
+ GovernmentType
2540
+ Definition type: Type
2541
+
2542
+ -----------------------
2543
+
2544
+ GovernmentType.MakeScope
2545
+ Description: Jomini Script System
2546
+ Definition type: Function
2547
+ Return type: Scope
2548
+
2549
+ -----------------------
2550
+
2551
+ GreatHolyWar
2552
+ Definition type: Type
2553
+
2554
+ -----------------------
2555
+
2556
+ GreatHolyWar.MakeScope
2557
+ Description: Jomini Script System
2558
+ Definition type: Function
2559
+ Return type: Scope
2560
+
2561
+ -----------------------
2562
+
2563
+ GreatProject
2564
+ Definition type: Type
2565
+
2566
+ -----------------------
2567
+
2568
+ GreatProject.MakeScope
2569
+ Description: Jomini Script System
2570
+ Definition type: Function
2571
+ Return type: Scope
2572
+
2573
+ -----------------------
2574
+
2575
+ GreatProjectContribution
2576
+ Definition type: Type
2577
+
2578
+ -----------------------
2579
+
2580
+ GreatProjectContribution.MakeScope
2581
+ Description: Jomini Script System
2582
+ Definition type: Function
2583
+ Return type: Scope
2584
+
2585
+ -----------------------
2586
+
2587
+ HolyOrder
2588
+ Definition type: Type
2589
+
2590
+ -----------------------
2591
+
2592
+ HolyOrder.MakeScope
2593
+ Description: Jomini Script System
2594
+ Definition type: Function
2595
+ Return type: Scope
2596
+
2597
+ -----------------------
2598
+
2599
+ HouseAspiration
2600
+ Definition type: Type
2601
+
2602
+ -----------------------
2603
+
2604
+ HouseAspiration.MakeScope
2605
+ Description: Jomini Script System
2606
+ Definition type: Function
2607
+ Return type: Scope
2608
+
2609
+ -----------------------
2610
+
2611
+ HouseRelation
2612
+ Definition type: Type
2613
+
2614
+ -----------------------
2615
+
2616
+ HouseRelation.MakeScope
2617
+ Description: Jomini Script System
2618
+ Definition type: Function
2619
+ Return type: Scope
2620
+
2621
+ -----------------------
2622
+
2623
+ HouseRelationLevel
2624
+ Definition type: Type
2625
+
2626
+ -----------------------
2627
+
2628
+ HouseRelationLevel.MakeScope
2629
+ Description: Jomini Script System
2630
+ Definition type: Function
2631
+ Return type: Scope
2632
+
2633
+ -----------------------
2634
+
2635
+ HouseRelationType
2636
+ Definition type: Type
2637
+
2638
+ -----------------------
2639
+
2640
+ HouseRelationType.MakeScope
2641
+ Description: Jomini Script System
2642
+ Definition type: Function
2643
+ Return type: Scope
2644
+
2645
+ -----------------------
2646
+
2647
+ Inspiration
2648
+ Definition type: Type
2649
+
2650
+ -----------------------
2651
+
2652
+ Inspiration.MakeScope
2653
+ Description: Jomini Script System
2654
+ Definition type: Function
2655
+ Return type: Scope
2656
+
2657
+ -----------------------
2658
+
2659
+ Legend
2660
+ Definition type: Type
2661
+
2662
+ -----------------------
2663
+
2664
+ Legend.MakeScope
2665
+ Description: Jomini Script System
2666
+ Definition type: Function
2667
+ Return type: Scope
2668
+
2669
+ -----------------------
2670
+
2671
+ LegendType
2672
+ Definition type: Type
2673
+
2674
+ -----------------------
2675
+
2676
+ LegendType.MakeScope
2677
+ Description: Jomini Script System
2678
+ Definition type: Function
2679
+ Return type: Scope
2680
+
2681
+ -----------------------
2682
+
2683
+ MercenaryCompany
2684
+ Definition type: Type
2685
+
2686
+ -----------------------
2687
+
2688
+ MercenaryCompany.MakeScope
2689
+ Description: Jomini Script System
2690
+ Definition type: Function
2691
+ Return type: Scope
2692
+
2693
+ -----------------------
2694
+
2695
+ Province
2696
+ Definition type: Type
2697
+
2698
+ -----------------------
2699
+
2700
+ Province.MakeScope
2701
+ Description: Jomini Script System
2702
+ Definition type: Function
2703
+ Return type: Scope
2704
+
2705
+ -----------------------
2706
+
2707
+ Regiment
2708
+ Definition type: Type
2709
+
2710
+ -----------------------
2711
+
2712
+ Regiment.MakeScope
2713
+ Description: Jomini Script System
2714
+ Definition type: Function
2715
+ Return type: Scope
2716
+
2717
+ -----------------------
2718
+
2719
+ Religion
2720
+ Definition type: Type
2721
+
2722
+ -----------------------
2723
+
2724
+ Religion.MakeScope
2725
+ Description: Jomini Script System
2726
+ Definition type: Function
2727
+ Return type: Scope
2728
+
2729
+ -----------------------
2730
+
2731
+ Scheme
2732
+ Definition type: Type
2733
+
2734
+ -----------------------
2735
+
2736
+ Scheme.MakeScope
2737
+ Description: Jomini Script System
2738
+ Definition type: Function
2739
+ Return type: Scope
2740
+
2741
+ -----------------------
2742
+
2743
+ Scope
2744
+ Definition type: Type
2745
+
2746
+ -----------------------
2747
+
2748
+ Scope.Accolade
2749
+ Description: Jomini Script System
2750
+ Definition type: Promote
2751
+ Return type: Accolade
2752
+
2753
+ -----------------------
2754
+
2755
+ Scope.Activity
2756
+ Description: Jomini Script System
2757
+ Definition type: Promote
2758
+ Return type: Activity
2759
+
2760
+ -----------------------
2761
+
2762
+ Scope.ActivityType
2763
+ Description: Jomini Script System
2764
+ Definition type: Promote
2765
+ Return type: ActivityType
2766
+
2767
+ -----------------------
2768
+
2769
+ Scope.Army
2770
+ Description: Jomini Script System
2771
+ Definition type: Promote
2772
+ Return type: Army
2773
+
2774
+ -----------------------
2775
+
2776
+ Scope.Artifact
2777
+ Description: Jomini Script System
2778
+ Definition type: Promote
2779
+ Return type: Artifact
2780
+
2781
+ -----------------------
2782
+
2783
+ Scope.CasusBelli
2784
+ Description: Jomini Script System
2785
+ Definition type: Promote
2786
+ Return type: ActiveCasusBelli
2787
+
2788
+ -----------------------
2789
+
2790
+ Scope.Char
2791
+ Description: Jomini Script System
2792
+ Definition type: Promote
2793
+ Return type: Character
2794
+
2795
+ -----------------------
2796
+
2797
+ Scope.CharacterMemory
2798
+ Description: Jomini Script System
2799
+ Definition type: Promote
2800
+ Return type: CharacterMemory
2801
+
2802
+ -----------------------
2803
+
2804
+ Scope.Combat
2805
+ Description: Jomini Script System
2806
+ Definition type: Promote
2807
+ Return type: Combat
2808
+
2809
+ -----------------------
2810
+
2811
+ Scope.CombatSide
2812
+ Description: Jomini Script System
2813
+ Definition type: Promote
2814
+ Return type: CombatSide
2815
+
2816
+ -----------------------
2817
+
2818
+ Scope.Confederation
2819
+ Description: Jomini Script System
2820
+ Definition type: Promote
2821
+ Return type: Confederation
2822
+
2823
+ -----------------------
2824
+
2825
+ Scope.ConfederationType
2826
+ Description: Jomini Script System
2827
+ Definition type: Promote
2828
+ Return type: ConfederationType
2829
+
2830
+ -----------------------
2831
+
2832
+ Scope.CouncilTask
2833
+ Description: Jomini Script System
2834
+ Definition type: Promote
2835
+ Return type: ActiveCouncilTask
2836
+
2837
+ -----------------------
2838
+
2839
+ Scope.CourtPosition
2840
+ Description: Jomini Script System
2841
+ Definition type: Promote
2842
+ Return type: CourtPosition
2843
+
2844
+ -----------------------
2845
+
2846
+ Scope.CourtPositionType
2847
+ Description: Jomini Script System
2848
+ Definition type: Promote
2849
+ Return type: CourtPositionType
2850
+
2851
+ -----------------------
2852
+
2853
+ Scope.Culture
2854
+ Description: Jomini Script System
2855
+ Definition type: Promote
2856
+ Return type: Culture
2857
+
2858
+ -----------------------
2859
+
2860
+ Scope.CultureInnovationType
2861
+ Description: Jomini Script System
2862
+ Definition type: Promote
2863
+ Return type: CultureInnovationType
2864
+
2865
+ -----------------------
2866
+
2867
+ Scope.CulturePillar
2868
+ Description: Jomini Script System
2869
+ Definition type: Promote
2870
+ Return type: CulturePillar
2871
+
2872
+ -----------------------
2873
+
2874
+ Scope.CultureTradition
2875
+ Description: Jomini Script System
2876
+ Definition type: Promote
2877
+ Return type: CultureTradition
2878
+
2879
+ -----------------------
2880
+
2881
+ Scope.DecisionType
2882
+ Description: Jomini Script System
2883
+ Definition type: Promote
2884
+ Return type: Decision
2885
+
2886
+ -----------------------
2887
+
2888
+ Scope.Domicile
2889
+ Description: Jomini Script System
2890
+ Definition type: Promote
2891
+ Return type: Domicile
2892
+
2893
+ -----------------------
2894
+
2895
+ Scope.Dynasty
2896
+ Description: Jomini Script System
2897
+ Definition type: Promote
2898
+ Return type: Dynasty
2899
+
2900
+ -----------------------
2901
+
2902
+ Scope.Epidemic
2903
+ Description: Jomini Script System
2904
+ Definition type: Promote
2905
+ Return type: Epidemic
2906
+
2907
+ -----------------------
2908
+
2909
+ Scope.EpidemicType
2910
+ Description: Jomini Script System
2911
+ Definition type: Promote
2912
+ Return type: EpidemicType
2913
+
2914
+ -----------------------
2915
+
2916
+ Scope.Faction
2917
+ Description: Jomini Script System
2918
+ Definition type: Promote
2919
+ Return type: Faction
2920
+
2921
+ -----------------------
2922
+
2923
+ Scope.Faith
2924
+ Description: Jomini Script System
2925
+ Definition type: Promote
2926
+ Return type: Faith
2927
+
2928
+ -----------------------
2929
+
2930
+ Scope.FaithDoctrine
2931
+ Description: Jomini Script System
2932
+ Definition type: Promote
2933
+ Return type: FaithDoctrine
2934
+
2935
+ -----------------------
2936
+
2937
+ Scope.GeographicalRegion
2938
+ Description: Jomini Script System
2939
+ Definition type: Promote
2940
+ Return type: GeographicalRegion
2941
+
2942
+ -----------------------
2943
+
2944
+ Scope.GetCharacter
2945
+ Description: Jomini Script System
2946
+ Definition type: Promote
2947
+ Return type: Character
2948
+
2949
+ -----------------------
2950
+
2951
+ Scope.GetLandedTitle
2952
+ Description: Jomini Script System
2953
+ Definition type: Promote
2954
+ Return type: Title
2955
+
2956
+ -----------------------
2957
+
2958
+ Scope.GetProvince
2959
+ Description: Jomini Script System
2960
+ Definition type: Promote
2961
+ Return type: Province
2962
+
2963
+ -----------------------
2964
+
2965
+ Scope.GetScheme
2966
+ Description: Jomini Script System
2967
+ Definition type: Promote
2968
+ Return type: Scheme
2969
+
2970
+ -----------------------
2971
+
2972
+ Scope.GetVariable( Arg0 )
2973
+ Definition type: Promote
2974
+ Return type: Scope
2975
+
2976
+ -----------------------
2977
+
2978
+ Scope.GovernmentType
2979
+ Description: Jomini Script System
2980
+ Definition type: Promote
2981
+ Return type: GovernmentType
2982
+
2983
+ -----------------------
2984
+
2985
+ Scope.GreatHolyWar
2986
+ Description: Jomini Script System
2987
+ Definition type: Promote
2988
+ Return type: GreatHolyWar
2989
+
2990
+ -----------------------
2991
+
2992
+ Scope.GreatProject
2993
+ Description: Jomini Script System
2994
+ Definition type: Promote
2995
+ Return type: GreatProject
2996
+
2997
+ -----------------------
2998
+
2999
+ Scope.GreatProjectImprovement
3000
+ Description: Jomini Script System
3001
+ Definition type: Promote
3002
+ Return type: GreatProjectContribution
3003
+
3004
+ -----------------------
3005
+
3006
+ Scope.HolyOrder
3007
+ Description: Jomini Script System
3008
+ Definition type: Promote
3009
+ Return type: HolyOrder
3010
+
3011
+ -----------------------
3012
+
3013
+ Scope.House
3014
+ Description: Jomini Script System
3015
+ Definition type: Promote
3016
+ Return type: DynastyHouse
3017
+
3018
+ -----------------------
3019
+
3020
+ Scope.HouseAspirationType
3021
+ Description: Jomini Script System
3022
+ Definition type: Promote
3023
+ Return type: HouseAspiration
3024
+
3025
+ -----------------------
3026
+
3027
+ Scope.HouseRelation
3028
+ Description: Jomini Script System
3029
+ Definition type: Promote
3030
+ Return type: HouseRelation
3031
+
3032
+ -----------------------
3033
+
3034
+ Scope.HouseRelationLevel
3035
+ Description: Jomini Script System
3036
+ Definition type: Promote
3037
+ Return type: HouseRelationLevel
3038
+
3039
+ -----------------------
3040
+
3041
+ Scope.HouseRelationType
3042
+ Description: Jomini Script System
3043
+ Definition type: Promote
3044
+ Return type: HouseRelationType
3045
+
3046
+ -----------------------
3047
+
3048
+ Scope.Inspiration
3049
+ Description: Jomini Script System
3050
+ Definition type: Promote
3051
+ Return type: Inspiration
3052
+
3053
+ -----------------------
3054
+
3055
+ Scope.Legend
3056
+ Description: Jomini Script System
3057
+ Definition type: Promote
3058
+ Return type: Legend
3059
+
3060
+ -----------------------
3061
+
3062
+ Scope.LegendType
3063
+ Description: Jomini Script System
3064
+ Definition type: Promote
3065
+ Return type: LegendType
3066
+
3067
+ -----------------------
3068
+
3069
+ Scope.MercenaryCompany
3070
+ Description: Jomini Script System
3071
+ Definition type: Promote
3072
+ Return type: MercenaryCompany
3073
+
3074
+ -----------------------
3075
+
3076
+ Scope.Province
3077
+ Description: Jomini Script System
3078
+ Definition type: Promote
3079
+ Return type: Province
3080
+
3081
+ -----------------------
3082
+
3083
+ Scope.Regiment
3084
+ Description: Jomini Script System
3085
+ Definition type: Promote
3086
+ Return type: Regiment
3087
+
3088
+ -----------------------
3089
+
3090
+ Scope.Religion
3091
+ Description: Jomini Script System
3092
+ Definition type: Promote
3093
+ Return type: Religion
3094
+
3095
+ -----------------------
3096
+
3097
+ Scope.Scheme
3098
+ Description: Jomini Script System
3099
+ Definition type: Promote
3100
+ Return type: Scheme
3101
+
3102
+ -----------------------
3103
+
3104
+ Scope.Secret
3105
+ Description: Jomini Script System
3106
+ Definition type: Promote
3107
+ Return type: Secret
3108
+
3109
+ -----------------------
3110
+
3111
+ Scope.Situation
3112
+ Description: Jomini Script System
3113
+ Definition type: Promote
3114
+ Return type: Situation
3115
+
3116
+ -----------------------
3117
+
3118
+ Scope.SituationParticipantGroup
3119
+ Description: Jomini Script System
3120
+ Definition type: Promote
3121
+ Return type: SituationParticipantGroup
3122
+
3123
+ -----------------------
3124
+
3125
+ Scope.SituationSubRegion
3126
+ Description: Jomini Script System
3127
+ Definition type: Promote
3128
+ Return type: SituationSubRegion
3129
+
3130
+ -----------------------
3131
+
3132
+ Scope.Story
3133
+ Description: Jomini Script System
3134
+ Definition type: Promote
3135
+ Return type: Story
3136
+
3137
+ -----------------------
3138
+
3139
+ Scope.Struggle
3140
+ Description: Jomini Script System
3141
+ Definition type: Promote
3142
+ Return type: Struggle
3143
+
3144
+ -----------------------
3145
+
3146
+ Scope.SubjectContractType
3147
+ Description: Jomini Script System
3148
+ Definition type: Promote
3149
+ Return type: SubjectContractType
3150
+
3151
+ -----------------------
3152
+
3153
+ Scope.TaskContract
3154
+ Description: Jomini Script System
3155
+ Definition type: Promote
3156
+ Return type: TaskContract
3157
+
3158
+ -----------------------
3159
+
3160
+ Scope.TaskContractType
3161
+ Description: Jomini Script System
3162
+ Definition type: Promote
3163
+ Return type: TaskContractType
3164
+
3165
+ -----------------------
3166
+
3167
+ Scope.Title
3168
+ Description: Jomini Script System
3169
+ Definition type: Promote
3170
+ Return type: Title
3171
+
3172
+ -----------------------
3173
+
3174
+ Scope.Trait
3175
+ Description: Jomini Script System
3176
+ Definition type: Promote
3177
+ Return type: Trait
3178
+
3179
+ -----------------------
3180
+
3181
+ Scope.TravelPlan
3182
+ Description: Jomini Script System
3183
+ Definition type: Promote
3184
+ Return type: TravelPlan
3185
+
3186
+ -----------------------
3187
+
3188
+ Scope.Var( Arg0 )
3189
+ Definition type: Promote
3190
+ Return type: Scope
3191
+
3192
+ -----------------------
3193
+
3194
+ Scope.War
3195
+ Description: Jomini Script System
3196
+ Definition type: Promote
3197
+ Return type: War
3198
+
3199
+ -----------------------
3200
+
3201
+ Scope.AccessSelf
3202
+ Definition type: Function
3203
+ Return type: [unregistered]
3204
+
3205
+ -----------------------
3206
+
3207
+ Scope.Accolade
3208
+ Description: Jomini Script System
3209
+ Definition type: Function
3210
+ Return type: [unregistered]
3211
+
3212
+ -----------------------
3213
+
3214
+ Scope.Activity
3215
+ Description: Jomini Script System
3216
+ Definition type: Function
3217
+ Return type: [unregistered]
3218
+
3219
+ -----------------------
3220
+
3221
+ Scope.ActivityType
3222
+ Description: Jomini Script System
3223
+ Definition type: Function
3224
+ Return type: [unregistered]
3225
+
3226
+ -----------------------
3227
+
3228
+ Scope.Army
3229
+ Description: Jomini Script System
3230
+ Definition type: Function
3231
+ Return type: [unregistered]
3232
+
3233
+ -----------------------
3234
+
3235
+ Scope.Artifact
3236
+ Description: Jomini Script System
3237
+ Definition type: Function
3238
+ Return type: [unregistered]
3239
+
3240
+ -----------------------
3241
+
3242
+ Scope.CasusBelli
3243
+ Description: Jomini Script System
3244
+ Definition type: Function
3245
+ Return type: [unregistered]
3246
+
3247
+ -----------------------
3248
+
3249
+ Scope.Char
3250
+ Description: Jomini Script System
3251
+ Definition type: Function
3252
+ Return type: [unregistered]
3253
+
3254
+ -----------------------
3255
+
3256
+ Scope.CharacterMemory
3257
+ Description: Jomini Script System
3258
+ Definition type: Function
3259
+ Return type: [unregistered]
3260
+
3261
+ -----------------------
3262
+
3263
+ Scope.Combat
3264
+ Description: Jomini Script System
3265
+ Definition type: Function
3266
+ Return type: [unregistered]
3267
+
3268
+ -----------------------
3269
+
3270
+ Scope.CombatSide
3271
+ Description: Jomini Script System
3272
+ Definition type: Function
3273
+ Return type: [unregistered]
3274
+
3275
+ -----------------------
3276
+
3277
+ Scope.Confederation
3278
+ Description: Jomini Script System
3279
+ Definition type: Function
3280
+ Return type: [unregistered]
3281
+
3282
+ -----------------------
3283
+
3284
+ Scope.ConfederationType
3285
+ Description: Jomini Script System
3286
+ Definition type: Function
3287
+ Return type: [unregistered]
3288
+
3289
+ -----------------------
3290
+
3291
+ Scope.CouncilTask
3292
+ Description: Jomini Script System
3293
+ Definition type: Function
3294
+ Return type: [unregistered]
3295
+
3296
+ -----------------------
3297
+
3298
+ Scope.CourtPosition
3299
+ Description: Jomini Script System
3300
+ Definition type: Function
3301
+ Return type: [unregistered]
3302
+
3303
+ -----------------------
3304
+
3305
+ Scope.CourtPositionType
3306
+ Description: Jomini Script System
3307
+ Definition type: Function
3308
+ Return type: [unregistered]
3309
+
3310
+ -----------------------
3311
+
3312
+ Scope.Culture
3313
+ Description: Jomini Script System
3314
+ Definition type: Function
3315
+ Return type: [unregistered]
3316
+
3317
+ -----------------------
3318
+
3319
+ Scope.CultureInnovationType
3320
+ Description: Jomini Script System
3321
+ Definition type: Function
3322
+ Return type: [unregistered]
3323
+
3324
+ -----------------------
3325
+
3326
+ Scope.CulturePillar
3327
+ Description: Jomini Script System
3328
+ Definition type: Function
3329
+ Return type: [unregistered]
3330
+
3331
+ -----------------------
3332
+
3333
+ Scope.CultureTradition
3334
+ Description: Jomini Script System
3335
+ Definition type: Function
3336
+ Return type: [unregistered]
3337
+
3338
+ -----------------------
3339
+
3340
+ Scope.DecisionType
3341
+ Description: Jomini Script System
3342
+ Definition type: Function
3343
+ Return type: [unregistered]
3344
+
3345
+ -----------------------
3346
+
3347
+ Scope.Domicile
3348
+ Description: Jomini Script System
3349
+ Definition type: Function
3350
+ Return type: [unregistered]
3351
+
3352
+ -----------------------
3353
+
3354
+ Scope.Dynasty
3355
+ Description: Jomini Script System
3356
+ Definition type: Function
3357
+ Return type: [unregistered]
3358
+
3359
+ -----------------------
3360
+
3361
+ Scope.Epidemic
3362
+ Description: Jomini Script System
3363
+ Definition type: Function
3364
+ Return type: [unregistered]
3365
+
3366
+ -----------------------
3367
+
3368
+ Scope.EpidemicType
3369
+ Description: Jomini Script System
3370
+ Definition type: Function
3371
+ Return type: [unregistered]
3372
+
3373
+ -----------------------
3374
+
3375
+ Scope.Faction
3376
+ Description: Jomini Script System
3377
+ Definition type: Function
3378
+ Return type: [unregistered]
3379
+
3380
+ -----------------------
3381
+
3382
+ Scope.Faith
3383
+ Description: Jomini Script System
3384
+ Definition type: Function
3385
+ Return type: [unregistered]
3386
+
3387
+ -----------------------
3388
+
3389
+ Scope.FaithDoctrine
3390
+ Description: Jomini Script System
3391
+ Definition type: Function
3392
+ Return type: [unregistered]
3393
+
3394
+ -----------------------
3395
+
3396
+ Scope.GeographicalRegion
3397
+ Description: Jomini Script System
3398
+ Definition type: Function
3399
+ Return type: [unregistered]
3400
+
3401
+ -----------------------
3402
+
3403
+ Scope.GetCharacter
3404
+ Description: Jomini Script System
3405
+ Definition type: Function
3406
+ Return type: [unregistered]
3407
+
3408
+ -----------------------
3409
+
3410
+ Scope.GetFlagKey
3411
+ Definition type: Function
3412
+ Return type: CString
3413
+
3414
+ -----------------------
3415
+
3416
+ Scope.GetFlagName
3417
+ Definition type: Function
3418
+ Return type: CString
3419
+
3420
+ -----------------------
3421
+
3422
+ Scope.GetLandedTitle
3423
+ Description: Jomini Script System
3424
+ Definition type: Function
3425
+ Return type: [unregistered]
3426
+
3427
+ -----------------------
3428
+
3429
+ Scope.GetList( Arg0 )
3430
+ Definition type: Function
3431
+ Return type: [unregistered]
3432
+
3433
+ -----------------------
3434
+
3435
+ Scope.GetProvince
3436
+ Description: Jomini Script System
3437
+ Definition type: Function
3438
+ Return type: [unregistered]
3439
+
3440
+ -----------------------
3441
+
3442
+ Scope.GetScheme
3443
+ Description: Jomini Script System
3444
+ Definition type: Function
3445
+ Return type: [unregistered]
3446
+
3447
+ -----------------------
3448
+
3449
+ Scope.GetScriptValueDesc( Arg0 )
3450
+ Definition type: Function
3451
+ Return type: CString
3452
+
3453
+ -----------------------
3454
+
3455
+ Scope.GetValue
3456
+ Definition type: Function
3457
+ Return type: CFixedPoint
3458
+
3459
+ -----------------------
3460
+
3461
+ Scope.GetValueWithDefault( Arg0 )
3462
+ Definition type: Function
3463
+ Return type: CFixedPoint
3464
+
3465
+ -----------------------
3466
+
3467
+ Scope.GovernmentType
3468
+ Description: Jomini Script System
3469
+ Definition type: Function
3470
+ Return type: [unregistered]
3471
+
3472
+ -----------------------
3473
+
3474
+ Scope.GreatHolyWar
3475
+ Description: Jomini Script System
3476
+ Definition type: Function
3477
+ Return type: [unregistered]
3478
+
3479
+ -----------------------
3480
+
3481
+ Scope.GreatProject
3482
+ Description: Jomini Script System
3483
+ Definition type: Function
3484
+ Return type: [unregistered]
3485
+
3486
+ -----------------------
3487
+
3488
+ Scope.GreatProjectImprovement
3489
+ Description: Jomini Script System
3490
+ Definition type: Function
3491
+ Return type: [unregistered]
3492
+
3493
+ -----------------------
3494
+
3495
+ Scope.HasFlag( Arg0 )
3496
+ Definition type: Function
3497
+ Return type: bool
3498
+
3499
+ -----------------------
3500
+
3501
+ Scope.HolyOrder
3502
+ Description: Jomini Script System
3503
+ Definition type: Function
3504
+ Return type: [unregistered]
3505
+
3506
+ -----------------------
3507
+
3508
+ Scope.House
3509
+ Description: Jomini Script System
3510
+ Definition type: Function
3511
+ Return type: [unregistered]
3512
+
3513
+ -----------------------
3514
+
3515
+ Scope.HouseAspirationType
3516
+ Description: Jomini Script System
3517
+ Definition type: Function
3518
+ Return type: [unregistered]
3519
+
3520
+ -----------------------
3521
+
3522
+ Scope.HouseRelation
3523
+ Description: Jomini Script System
3524
+ Definition type: Function
3525
+ Return type: [unregistered]
3526
+
3527
+ -----------------------
3528
+
3529
+ Scope.HouseRelationLevel
3530
+ Description: Jomini Script System
3531
+ Definition type: Function
3532
+ Return type: [unregistered]
3533
+
3534
+ -----------------------
3535
+
3536
+ Scope.HouseRelationType
3537
+ Description: Jomini Script System
3538
+ Definition type: Function
3539
+ Return type: [unregistered]
3540
+
3541
+ -----------------------
3542
+
3543
+ Scope.Inspiration
3544
+ Description: Jomini Script System
3545
+ Definition type: Function
3546
+ Return type: [unregistered]
3547
+
3548
+ -----------------------
3549
+
3550
+ Scope.IsSet
3551
+ Definition type: Function
3552
+ Return type: bool
3553
+
3554
+ -----------------------
3555
+
3556
+ Scope.Legend
3557
+ Description: Jomini Script System
3558
+ Definition type: Function
3559
+ Return type: [unregistered]
3560
+
3561
+ -----------------------
3562
+
3563
+ Scope.LegendType
3564
+ Description: Jomini Script System
3565
+ Definition type: Function
3566
+ Return type: [unregistered]
3567
+
3568
+ -----------------------
3569
+
3570
+ Scope.MercenaryCompany
3571
+ Description: Jomini Script System
3572
+ Definition type: Function
3573
+ Return type: [unregistered]
3574
+
3575
+ -----------------------
3576
+
3577
+ Scope.Province
3578
+ Description: Jomini Script System
3579
+ Definition type: Function
3580
+ Return type: [unregistered]
3581
+
3582
+ -----------------------
3583
+
3584
+ Scope.Regiment
3585
+ Description: Jomini Script System
3586
+ Definition type: Function
3587
+ Return type: [unregistered]
3588
+
3589
+ -----------------------
3590
+
3591
+ Scope.Religion
3592
+ Description: Jomini Script System
3593
+ Definition type: Function
3594
+ Return type: [unregistered]
3595
+
3596
+ -----------------------
3597
+
3598
+ Scope.Scheme
3599
+ Description: Jomini Script System
3600
+ Definition type: Function
3601
+ Return type: [unregistered]
3602
+
3603
+ -----------------------
3604
+
3605
+ Scope.ScriptValue( Arg0 )
3606
+ Definition type: Function
3607
+ Return type: CFixedPoint
3608
+
3609
+ -----------------------
3610
+
3611
+ Scope.Secret
3612
+ Description: Jomini Script System
3613
+ Definition type: Function
3614
+ Return type: [unregistered]
3615
+
3616
+ -----------------------
3617
+
3618
+ Scope.Self
3619
+ Definition type: Function
3620
+ Return type: [unregistered]
3621
+
3622
+ -----------------------
3623
+
3624
+ Scope.Situation
3625
+ Description: Jomini Script System
3626
+ Definition type: Function
3627
+ Return type: [unregistered]
3628
+
3629
+ -----------------------
3630
+
3631
+ Scope.SituationParticipantGroup
3632
+ Description: Jomini Script System
3633
+ Definition type: Function
3634
+ Return type: [unregistered]
3635
+
3636
+ -----------------------
3637
+
3638
+ Scope.SituationSubRegion
3639
+ Description: Jomini Script System
3640
+ Definition type: Function
3641
+ Return type: [unregistered]
3642
+
3643
+ -----------------------
3644
+
3645
+ Scope.Story
3646
+ Description: Jomini Script System
3647
+ Definition type: Function
3648
+ Return type: [unregistered]
3649
+
3650
+ -----------------------
3651
+
3652
+ Scope.Struggle
3653
+ Description: Jomini Script System
3654
+ Definition type: Function
3655
+ Return type: [unregistered]
3656
+
3657
+ -----------------------
3658
+
3659
+ Scope.SubjectContractType
3660
+ Description: Jomini Script System
3661
+ Definition type: Function
3662
+ Return type: [unregistered]
3663
+
3664
+ -----------------------
3665
+
3666
+ Scope.TaskContract
3667
+ Description: Jomini Script System
3668
+ Definition type: Function
3669
+ Return type: [unregistered]
3670
+
3671
+ -----------------------
3672
+
3673
+ Scope.TaskContractType
3674
+ Description: Jomini Script System
3675
+ Definition type: Function
3676
+ Return type: [unregistered]
3677
+
3678
+ -----------------------
3679
+
3680
+ Scope.Title
3681
+ Description: Jomini Script System
3682
+ Definition type: Function
3683
+ Return type: [unregistered]
3684
+
3685
+ -----------------------
3686
+
3687
+ Scope.Trait
3688
+ Description: Jomini Script System
3689
+ Definition type: Function
3690
+ Return type: [unregistered]
3691
+
3692
+ -----------------------
3693
+
3694
+ Scope.TravelPlan
3695
+ Description: Jomini Script System
3696
+ Definition type: Function
3697
+ Return type: [unregistered]
3698
+
3699
+ -----------------------
3700
+
3701
+ Scope.VarRemaining( Arg0 )
3702
+ Definition type: Function
3703
+ Return type: int32
3704
+
3705
+ -----------------------
3706
+
3707
+ Scope.War
3708
+ Description: Jomini Script System
3709
+ Definition type: Function
3710
+ Return type: [unregistered]
3711
+
3712
+ -----------------------
3713
+
3714
+ ScriptedGui
3715
+ Definition type: Type
3716
+
3717
+ -----------------------
3718
+
3719
+ ScriptedGui.AccessSelf
3720
+ Definition type: Function
3721
+ Return type: [unregistered]
3722
+
3723
+ -----------------------
3724
+
3725
+ ScriptedGui.BuildTooltip( Arg0 )
3726
+ Definition type: Function
3727
+ Return type: CString
3728
+
3729
+ -----------------------
3730
+
3731
+ ScriptedGui.Execute( Arg0 )
3732
+ Definition type: Function
3733
+ Return type: void
3734
+
3735
+ -----------------------
3736
+
3737
+ ScriptedGui.ExecuteTooltip( Arg0 )
3738
+ Definition type: Function
3739
+ Return type: CString
3740
+
3741
+ -----------------------
3742
+
3743
+ ScriptedGui.IsShown( Arg0 )
3744
+ Definition type: Function
3745
+ Return type: bool
3746
+
3747
+ -----------------------
3748
+
3749
+ ScriptedGui.IsShownTooltip( Arg0 )
3750
+ Definition type: Function
3751
+ Return type: CString
3752
+
3753
+ -----------------------
3754
+
3755
+ ScriptedGui.IsValid( Arg0 )
3756
+ Definition type: Function
3757
+ Return type: bool
3758
+
3759
+ -----------------------
3760
+
3761
+ ScriptedGui.IsValidTooltip( Arg0 )
3762
+ Definition type: Function
3763
+ Return type: CString
3764
+
3765
+ -----------------------
3766
+
3767
+ ScriptedGui.Self
3768
+ Definition type: Function
3769
+ Return type: [unregistered]
3770
+
3771
+ -----------------------
3772
+
3773
+ Secret
3774
+ Definition type: Type
3775
+
3776
+ -----------------------
3777
+
3778
+ Secret.MakeScope
3779
+ Description: Jomini Script System
3780
+ Definition type: Function
3781
+ Return type: Scope
3782
+
3783
+ -----------------------
3784
+
3785
+ Situation
3786
+ Definition type: Type
3787
+
3788
+ -----------------------
3789
+
3790
+ Situation.MakeScope
3791
+ Description: Jomini Script System
3792
+ Definition type: Function
3793
+ Return type: Scope
3794
+
3795
+ -----------------------
3796
+
3797
+ SituationParticipantGroup
3798
+ Definition type: Type
3799
+
3800
+ -----------------------
3801
+
3802
+ SituationParticipantGroup.MakeScope
3803
+ Description: Jomini Script System
3804
+ Definition type: Function
3805
+ Return type: Scope
3806
+
3807
+ -----------------------
3808
+
3809
+ SituationSubRegion
3810
+ Definition type: Type
3811
+
3812
+ -----------------------
3813
+
3814
+ SituationSubRegion.MakeScope
3815
+ Description: Jomini Script System
3816
+ Definition type: Function
3817
+ Return type: Scope
3818
+
3819
+ -----------------------
3820
+
3821
+ Story
3822
+ Definition type: Type
3823
+
3824
+ -----------------------
3825
+
3826
+ Story.MakeScope
3827
+ Description: Jomini Script System
3828
+ Definition type: Function
3829
+ Return type: Scope
3830
+
3831
+ -----------------------
3832
+
3833
+ Struggle
3834
+ Definition type: Type
3835
+
3836
+ -----------------------
3837
+
3838
+ Struggle.MakeScope
3839
+ Description: Jomini Script System
3840
+ Definition type: Function
3841
+ Return type: Scope
3842
+
3843
+ -----------------------
3844
+
3845
+ SubjectContractType
3846
+ Definition type: Type
3847
+
3848
+ -----------------------
3849
+
3850
+ SubjectContractType.MakeScope
3851
+ Description: Jomini Script System
3852
+ Definition type: Function
3853
+ Return type: Scope
3854
+
3855
+ -----------------------
3856
+
3857
+ TaskContract
3858
+ Definition type: Type
3859
+
3860
+ -----------------------
3861
+
3862
+ TaskContract.MakeScope
3863
+ Description: Jomini Script System
3864
+ Definition type: Function
3865
+ Return type: Scope
3866
+
3867
+ -----------------------
3868
+
3869
+ TaskContractType
3870
+ Definition type: Type
3871
+
3872
+ -----------------------
3873
+
3874
+ TaskContractType.MakeScope
3875
+ Description: Jomini Script System
3876
+ Definition type: Function
3877
+ Return type: Scope
3878
+
3879
+ -----------------------
3880
+
3881
+ Title
3882
+ Definition type: Type
3883
+
3884
+ -----------------------
3885
+
3886
+ Title.MakeScope
3887
+ Description: Jomini Script System
3888
+ Definition type: Function
3889
+ Return type: Scope
3890
+
3891
+ -----------------------
3892
+
3893
+ TopScope
3894
+ Definition type: Type
3895
+
3896
+ -----------------------
3897
+
3898
+ TopScope.AddList( Arg0, Arg1 )
3899
+ Definition type: Promote
3900
+ Return type: TopScope
3901
+
3902
+ -----------------------
3903
+
3904
+ TopScope.AddScope( Arg0, Arg1 )
3905
+ Definition type: Promote
3906
+ Return type: TopScope
3907
+
3908
+ -----------------------
3909
+
3910
+ TopScope.GetRootScope
3911
+ Definition type: Promote
3912
+ Return type: Scope
3913
+
3914
+ -----------------------
3915
+
3916
+ TopScope.GetScriptValueBreakdown( Arg0 )
3917
+ Definition type: Promote
3918
+ Return type: ValueBreakdown
3919
+
3920
+ -----------------------
3921
+
3922
+ TopScope.SetRoot( Arg0 )
3923
+ Definition type: Promote
3924
+ Return type: TopScope
3925
+
3926
+ -----------------------
3927
+
3928
+ TopScope.sArmy( Arg0 )
3929
+ Definition type: Promote
3930
+ Return type: Army
3931
+
3932
+ -----------------------
3933
+
3934
+ TopScope.sC( Arg0 )
3935
+ Definition type: Promote
3936
+ Return type: Character
3937
+
3938
+ -----------------------
3939
+
3940
+ TopScope.sCB( Arg0 )
3941
+ Definition type: Promote
3942
+ Return type: ActiveCasusBelli
3943
+
3944
+ -----------------------
3945
+
3946
+ TopScope.sCharacter( Arg0 )
3947
+ Definition type: Promote
3948
+ Return type: Character
3949
+
3950
+ -----------------------
3951
+
3952
+ TopScope.sCombat( Arg0 )
3953
+ Definition type: Promote
3954
+ Return type: Combat
3955
+
3956
+ -----------------------
3957
+
3958
+ TopScope.sCombatSide( Arg0 )
3959
+ Definition type: Promote
3960
+ Return type: CombatSide
3961
+
3962
+ -----------------------
3963
+
3964
+ TopScope.sCulture( Arg0 )
3965
+ Definition type: Promote
3966
+ Return type: Culture
3967
+
3968
+ -----------------------
3969
+
3970
+ TopScope.sDynasty( Arg0 )
3971
+ Definition type: Promote
3972
+ Return type: Dynasty
3973
+
3974
+ -----------------------
3975
+
3976
+ TopScope.sFaction( Arg0 )
3977
+ Definition type: Promote
3978
+ Return type: Faction
3979
+
3980
+ -----------------------
3981
+
3982
+ TopScope.sFaith( Arg0 )
3983
+ Definition type: Promote
3984
+ Return type: Faith
3985
+
3986
+ -----------------------
3987
+
3988
+ TopScope.sGreatHolyWar( Arg0 )
3989
+ Definition type: Promote
3990
+ Return type: GreatHolyWar
3991
+
3992
+ -----------------------
3993
+
3994
+ TopScope.sHolyOrder( Arg0 )
3995
+ Definition type: Promote
3996
+ Return type: HolyOrder
3997
+
3998
+ -----------------------
3999
+
4000
+ TopScope.sHouse( Arg0 )
4001
+ Definition type: Promote
4002
+ Return type: DynastyHouse
4003
+
4004
+ -----------------------
4005
+
4006
+ TopScope.sMercenary( Arg0 )
4007
+ Definition type: Promote
4008
+ Return type: MercenaryCompany
4009
+
4010
+ -----------------------
4011
+
4012
+ TopScope.sProvince( Arg0 )
4013
+ Definition type: Promote
4014
+ Return type: Province
4015
+
4016
+ -----------------------
4017
+
4018
+ TopScope.sScheme( Arg0 )
4019
+ Definition type: Promote
4020
+ Return type: Scheme
4021
+
4022
+ -----------------------
4023
+
4024
+ TopScope.sSecret( Arg0 )
4025
+ Definition type: Promote
4026
+ Return type: Secret
4027
+
4028
+ -----------------------
4029
+
4030
+ TopScope.sTitle( Arg0 )
4031
+ Definition type: Promote
4032
+ Return type: Title
4033
+
4034
+ -----------------------
4035
+
4036
+ TopScope.sWar( Arg0 )
4037
+ Definition type: Promote
4038
+ Return type: War
4039
+
4040
+ -----------------------
4041
+
4042
+ TopScope.AccessSelf
4043
+ Definition type: Function
4044
+ Return type: [unregistered]
4045
+
4046
+ -----------------------
4047
+
4048
+ TopScope.Custom( Arg0 )
4049
+ Definition type: Function
4050
+ Return type: CString
4051
+
4052
+ -----------------------
4053
+
4054
+ TopScope.End
4055
+ Definition type: Function
4056
+ Return type: TopScope
4057
+
4058
+ -----------------------
4059
+
4060
+ TopScope.GetFlagName( Arg0 )
4061
+ Definition type: Function
4062
+ Return type: CString
4063
+
4064
+ -----------------------
4065
+
4066
+ TopScope.GetRootScope
4067
+ Definition type: Function
4068
+ Return type: [unregistered]
4069
+
4070
+ -----------------------
4071
+
4072
+ TopScope.GetScriptValueBreakdown( Arg0 )
4073
+ Definition type: Function
4074
+ Return type: [unregistered]
4075
+
4076
+ -----------------------
4077
+
4078
+ TopScope.GetScriptValueDesc( Arg0 )
4079
+ Definition type: Function
4080
+ Return type: CString
4081
+
4082
+ -----------------------
4083
+
4084
+ TopScope.GetValue( Arg0 )
4085
+ Definition type: Function
4086
+ Return type: CFixedPoint
4087
+
4088
+ -----------------------
4089
+
4090
+ TopScope.ScriptValue( Arg0 )
4091
+ Definition type: Function
4092
+ Return type: CFixedPoint
4093
+
4094
+ -----------------------
4095
+
4096
+ TopScope.Self
4097
+ Definition type: Function
4098
+ Return type: [unregistered]
4099
+
4100
+ -----------------------
4101
+
4102
+ TopScope.sArmy( Arg0 )
4103
+ Definition type: Function
4104
+ Return type: [unregistered]
4105
+
4106
+ -----------------------
4107
+
4108
+ TopScope.sC( Arg0 )
4109
+ Definition type: Function
4110
+ Return type: [unregistered]
4111
+
4112
+ -----------------------
4113
+
4114
+ TopScope.sCB( Arg0 )
4115
+ Definition type: Function
4116
+ Return type: [unregistered]
4117
+
4118
+ -----------------------
4119
+
4120
+ TopScope.sCharacter( Arg0 )
4121
+ Definition type: Function
4122
+ Return type: [unregistered]
4123
+
4124
+ -----------------------
4125
+
4126
+ TopScope.sCombat( Arg0 )
4127
+ Definition type: Function
4128
+ Return type: [unregistered]
4129
+
4130
+ -----------------------
4131
+
4132
+ TopScope.sCombatSide( Arg0 )
4133
+ Definition type: Function
4134
+ Return type: [unregistered]
4135
+
4136
+ -----------------------
4137
+
4138
+ TopScope.sCulture( Arg0 )
4139
+ Definition type: Function
4140
+ Return type: [unregistered]
4141
+
4142
+ -----------------------
4143
+
4144
+ TopScope.sDynasty( Arg0 )
4145
+ Definition type: Function
4146
+ Return type: [unregistered]
4147
+
4148
+ -----------------------
4149
+
4150
+ TopScope.sFaction( Arg0 )
4151
+ Definition type: Function
4152
+ Return type: [unregistered]
4153
+
4154
+ -----------------------
4155
+
4156
+ TopScope.sFaith( Arg0 )
4157
+ Definition type: Function
4158
+ Return type: [unregistered]
4159
+
4160
+ -----------------------
4161
+
4162
+ TopScope.sGreatHolyWar( Arg0 )
4163
+ Definition type: Function
4164
+ Return type: [unregistered]
4165
+
4166
+ -----------------------
4167
+
4168
+ TopScope.sHolyOrder( Arg0 )
4169
+ Definition type: Function
4170
+ Return type: [unregistered]
4171
+
4172
+ -----------------------
4173
+
4174
+ TopScope.sHouse( Arg0 )
4175
+ Definition type: Function
4176
+ Return type: [unregistered]
4177
+
4178
+ -----------------------
4179
+
4180
+ TopScope.sMercenary( Arg0 )
4181
+ Definition type: Function
4182
+ Return type: [unregistered]
4183
+
4184
+ -----------------------
4185
+
4186
+ TopScope.sProvince( Arg0 )
4187
+ Definition type: Function
4188
+ Return type: [unregistered]
4189
+
4190
+ -----------------------
4191
+
4192
+ TopScope.sScheme( Arg0 )
4193
+ Definition type: Function
4194
+ Return type: [unregistered]
4195
+
4196
+ -----------------------
4197
+
4198
+ TopScope.sSecret( Arg0 )
4199
+ Definition type: Function
4200
+ Return type: [unregistered]
4201
+
4202
+ -----------------------
4203
+
4204
+ TopScope.sTitle( Arg0 )
4205
+ Definition type: Function
4206
+ Return type: [unregistered]
4207
+
4208
+ -----------------------
4209
+
4210
+ TopScope.sWar( Arg0 )
4211
+ Definition type: Function
4212
+ Return type: [unregistered]
4213
+
4214
+ -----------------------
4215
+
4216
+ Trait
4217
+ Definition type: Type
4218
+
4219
+ -----------------------
4220
+
4221
+ Trait.MakeScope
4222
+ Description: Jomini Script System
4223
+ Definition type: Function
4224
+ Return type: Scope
4225
+
4226
+ -----------------------
4227
+
4228
+ TravelPlan
4229
+ Definition type: Type
4230
+
4231
+ -----------------------
4232
+
4233
+ TravelPlan.MakeScope
4234
+ Description: Jomini Script System
4235
+ Definition type: Function
4236
+ Return type: Scope
4237
+
4238
+ -----------------------
4239
+
4240
+ War
4241
+ Definition type: Type
4242
+
4243
+ -----------------------
4244
+
4245
+ War.MakeScope
4246
+ Description: Jomini Script System
4247
+ Definition type: Function
4248
+ Return type: Scope
4249
+
4250
+ -----------------------
4251
+