xoreos  0.0.5
function_tables.h
Go to the documentation of this file.
1 /* xoreos - A reimplementation of BioWare's Aurora engine
2  *
3  * xoreos is the legal property of its developers, whose names
4  * can be found in the AUTHORS file distributed with this source
5  * distribution.
6  *
7  * xoreos is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 3
10  * of the License, or (at your option) any later version.
11  *
12  * xoreos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with xoreos. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
25 /* The functions are defined by three tables:
26  * - kFunctionPointers
27  * - kFunctionSignatures
28  * - kFunctionDefaults
29  *
30  * kFunctionPointers provides the ID and name of the engine function, and a
31  * pointer to Functions method doing the actual work. If the function pointer
32  * is 0, a default unimplementedFunction method is used that just prints
33  * the name of the function when it's called.
34  *
35  * kFunctionSignatures defines the signature of the function, i.e. the types
36  * of the return value and its parameters.
37  *
38  * kFunctionDefaults pins default values to parameters. I.e. if a function
39  * Foobar(int mode, int doEverything=FALSE) is called with only one parameters,
40  * the default value FALSE is applied to the doEverything parameters. The
41  * kFunctionDefaults entry for the function then contains a reference to a
42  * false value. Because of ambiguities otherwise, the default values have to be
43  * "aligned" to the right; only the last-most n parameters are allowed to have
44  * default values, with no gaps.
45  *
46  * Please note that all three tables have to be of the same length, and that
47  * the order of the functions have to be the same in all three tables.
48  */
49 
50 #ifndef ENGINES_KOTOR2_SCRIPT_FUNCTION_TABLES_H
51 #define ENGINES_KOTOR2_SCRIPT_FUNCTION_TABLES_H
52 
55 
56 namespace Engines {
57 
58 namespace KotOR2 {
59 
69 
70 /* Default values as used by the function parameters, if no explicit value
71  * is given at the time of the calling.
72  */
73 
74 static KotOR2::Object kDefaultValueObjectInvalid(kObjectTypeInvalid);
75 static KotOR2::Object kDefaultValueObjectSelf (kObjectTypeSelf);
76 
82 
83 static const Aurora::NWScript::Variable kDefaultFloat0_0 ( 0.0f);
85 static const Aurora::NWScript::Variable kDefaultFloat1_0 ( 1.0f);
86 static const Aurora::NWScript::Variable kDefaultFloat2_5 ( 2.5f);
89 
90 static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f);
91 
94 
95 static const Aurora::NWScript::Variable kDefaultObjectInvalid(&kDefaultValueObjectInvalid);
96 static const Aurora::NWScript::Variable kDefaultObjectSelf (&kDefaultValueObjectSelf);
97 
98 // TODO: Add the relevant enums to types.h, and use these values.
99 
118 
119 
122  { 0, "Random" , &Functions::random },
123  { 1, "PrintString" , &Functions::printString },
124  { 2, "PrintFloat" , &Functions::printFloat },
125  { 3, "FloatToString" , &Functions::floatToString },
126  { 4, "PrintInteger" , &Functions::printInteger },
127  { 5, "PrintObject" , &Functions::printObject },
128  { 6, "AssignCommand" , &Functions::assignCommand },
129  { 7, "DelayCommand" , &Functions::delayCommand },
130  { 8, "ExecuteScript" , 0 },
131  { 9, "ClearAllActions" , 0 },
132  { 10, "SetFacing" , 0 },
133  { 11, "SwitchPlayerCharacter" , 0 },
134  { 12, "SetTime" , 0 },
135  { 13, "SetPartyLeader" , 0 },
136  { 14, "SetAreaUnescapable" , 0 },
137  { 15, "GetAreaUnescapable" , 0 },
138  { 16, "GetTimeHour" , 0 },
139  { 17, "GetTimeMinute" , 0 },
140  { 18, "GetTimeSecond" , 0 },
141  { 19, "GetTimeMillisecond" , 0 },
142  { 20, "ActionRandomWalk" , 0 },
143  { 21, "ActionMoveToLocation" , 0 },
144  { 22, "ActionMoveToObject" , 0 },
145  { 23, "ActionMoveAwayFromObject" , 0 },
146  { 24, "GetArea" , 0 },
147  { 25, "GetEnteringObject" , &Functions::getEnteringObject },
148  { 26, "GetExitingObject" , &Functions::getExitingObject },
149  { 27, "GetPosition" , 0 },
150  { 28, "GetFacing" , 0 },
151  { 29, "GetItemPossessor" , 0 },
152  { 30, "GetItemPossessedBy" , 0 },
153  { 31, "CreateItemOnObject" , 0 },
154  { 32, "ActionEquipItem" , 0 },
155  { 33, "ActionUnequipItem" , 0 },
156  { 34, "ActionPickUpItem" , 0 },
157  { 35, "ActionPutDownItem" , 0 },
158  { 36, "GetLastAttacker" , 0 },
159  { 37, "ActionAttack" , 0 },
160  { 38, "GetNearestCreature" , 0 },
161  { 39, "ActionSpeakString" , 0 },
162  { 40, "ActionPlayAnimation" , 0 },
163  { 41, "GetDistanceToObject" , 0 },
164  { 42, "GetIsObjectValid" , &Functions::getIsObjectValid },
165  { 43, "ActionOpenDoor" , 0 },
166  { 44, "ActionCloseDoor" , 0 },
167  { 45, "SetCameraFacing" , 0 },
168  { 46, "PlaySound" , 0 },
169  { 47, "GetSpellTargetObject" , 0 },
170  { 48, "ActionCastSpellAtObject" , 0 },
171  { 49, "GetCurrentHitPoints" , 0 },
172  { 50, "GetMaxHitPoints" , 0 },
173  { 51, "EffectAssuredHit" , 0 },
174  { 52, "GetLastItemEquipped" , 0 },
175  { 53, "GetSubScreenID" , 0 },
176  { 54, "CancelCombat" , 0 },
177  { 55, "GetCurrentForcePoints" , 0 },
178  { 56, "GetMaxForcePoints" , 0 },
179  { 57, "PauseGame" , 0 },
180  { 58, "SetPlayerRestrictMode" , 0 },
181  { 59, "GetStringLength" , &Functions::getStringLength },
182  { 60, "GetStringUpperCase" , &Functions::getStringUpperCase },
183  { 61, "GetStringLowerCase" , &Functions::getStringLowerCase },
184  { 62, "GetStringRight" , &Functions::getStringRight },
185  { 63, "GetStringLeft" , &Functions::getStringLeft },
186  { 64, "InsertString" , &Functions::insertString },
187  { 65, "GetSubString" , &Functions::getSubString },
188  { 66, "FindSubString" , &Functions::findSubString },
189  { 67, "fabs" , &Functions::fabs },
190  { 68, "cos" , &Functions::cos },
191  { 69, "sin" , &Functions::sin },
192  { 70, "tan" , &Functions::tan },
193  { 71, "acos" , &Functions::acos },
194  { 72, "asin" , &Functions::asin },
195  { 73, "atan" , &Functions::atan },
196  { 74, "log" , &Functions::log },
197  { 75, "pow" , &Functions::pow },
198  { 76, "sqrt" , &Functions::sqrt },
199  { 77, "abs" , &Functions::abs },
200  { 78, "EffectHeal" , 0 },
201  { 79, "EffectDamage" , 0 },
202  { 80, "EffectAbilityIncrease" , 0 },
203  { 81, "EffectDamageResistance" , 0 },
204  { 82, "EffectResurrection" , 0 },
205  { 83, "GetPlayerRestrictMode" , 0 },
206  { 84, "GetCasterLevel" , 0 },
207  { 85, "GetFirstEffect" , 0 },
208  { 86, "GetNextEffect" , 0 },
209  { 87, "RemoveEffect" , 0 },
210  { 88, "GetIsEffectValid" , 0 },
211  { 89, "GetEffectDurationType" , 0 },
212  { 90, "GetEffectSubType" , 0 },
213  { 91, "GetEffectCreator" , 0 },
214  { 92, "IntToString" , &Functions::intToString },
215  { 93, "GetFirstObjectInArea" , 0 },
216  { 94, "GetNextObjectInArea" , 0 },
217  { 95, "d2" , &Functions::d2 },
218  { 96, "d3" , &Functions::d3 },
219  { 97, "d4" , &Functions::d4 },
220  { 98, "d6" , &Functions::d6 },
221  { 99, "d8" , &Functions::d8 },
222  { 100, "d10" , &Functions::d10 },
223  { 101, "d12" , &Functions::d12 },
224  { 102, "d20" , &Functions::d20 },
225  { 103, "d100" , &Functions::d100 },
226  { 104, "VectorMagnitude" , &Functions::vectorMagnitude },
227  { 105, "GetMetaMagicFeat" , 0 },
228  { 106, "GetObjectType" , 0 },
229  { 107, "GetRacialType" , 0 },
230  { 108, "FortitudeSave" , 0 },
231  { 109, "ReflexSave" , 0 },
232  { 110, "WillSave" , 0 },
233  { 111, "GetSpellSaveDC" , 0 },
234  { 112, "MagicalEffect" , 0 },
235  { 113, "SupernaturalEffect" , 0 },
236  { 114, "ExtraordinaryEffect" , 0 },
237  { 115, "EffectACIncrease" , 0 },
238  { 116, "GetAC" , 0 },
239  { 117, "EffectSavingThrowIncrease" , 0 },
240  { 118, "EffectAttackIncrease" , 0 },
241  { 119, "EffectDamageReduction" , 0 },
242  { 120, "EffectDamageIncrease" , 0 },
243  { 121, "RoundsToSeconds" , 0 },
244  { 122, "HoursToSeconds" , 0 },
245  { 123, "TurnsToSeconds" , 0 },
246  { 124, "SoundObjectSetFixedVariance" , 0 },
247  { 125, "GetGoodEvilValue" , 0 },
248  { 126, "GetPartyMemberCount" , 0 },
249  { 127, "GetAlignmentGoodEvil" , 0 },
250  { 128, "GetFirstObjectInShape" , 0 },
251  { 129, "GetNextObjectInShape" , 0 },
252  { 130, "EffectEntangle" , 0 },
253  { 131, "SignalEvent" , 0 },
254  { 132, "EventUserDefined" , 0 },
255  { 133, "EffectDeath" , 0 },
256  { 134, "EffectKnockdown" , 0 },
257  { 135, "ActionGiveItem" , 0 },
258  { 136, "ActionTakeItem" , 0 },
259  { 137, "VectorNormalize" , &Functions::vectorNormalize },
260  { 138, "GetItemStackSize" , 0 },
261  { 139, "GetAbilityScore" , 0 },
262  { 140, "GetIsDead" , 0 },
263  { 141, "PrintVector" , &Functions::printVector },
264  { 142, "Vector" , &Functions::vector },
265  { 143, "SetFacingPoint" , 0 },
266  { 144, "AngleToVector" , 0 },
267  { 145, "VectorToAngle" , 0 },
268  { 146, "TouchAttackMelee" , 0 },
269  { 147, "TouchAttackRanged" , 0 },
270  { 148, "EffectParalyze" , 0 },
271  { 149, "EffectSpellImmunity" , 0 },
272  { 150, "SetItemStackSize" , 0 },
273  { 151, "GetDistanceBetween" , 0 },
274  { 152, "SetReturnStrref" , 0 },
275  { 153, "EffectForceJump" , 0 },
276  { 154, "EffectSleep" , 0 },
277  { 155, "GetItemInSlot" , 0 },
278  { 156, "EffectTemporaryForcePoints" , 0 },
279  { 157, "EffectConfused" , 0 },
280  { 158, "EffectFrightened" , 0 },
281  { 159, "EffectChoke" , 0 },
282  { 160, "SetGlobalString" , 0 },
283  { 161, "EffectStunned" , 0 },
284  { 162, "SetCommandable" , 0 },
285  { 163, "GetCommandable" , 0 },
286  { 164, "EffectRegenerate" , 0 },
287  { 165, "EffectMovementSpeedIncrease" , 0 },
288  { 166, "GetHitDice" , 0 },
289  { 167, "ActionForceFollowObject" , 0 },
290  { 168, "GetTag" , 0 },
291  { 169, "ResistForce" , 0 },
292  { 170, "GetEffectType" , 0 },
293  { 171, "EffectAreaOfEffect" , 0 },
294  { 172, "GetFactionEqual" , 0 },
295  { 173, "ChangeFaction" , 0 },
296  { 174, "GetIsListening" , 0 },
297  { 175, "SetListening" , 0 },
298  { 176, "SetListenPattern" , 0 },
299  { 177, "TestStringAgainstPattern" , 0 },
300  { 178, "GetMatchedSubstring" , 0 },
301  { 179, "GetMatchedSubstringsCount" , 0 },
302  { 180, "EffectVisualEffect" , 0 },
303  { 181, "GetFactionWeakestMember" , 0 },
304  { 182, "GetFactionStrongestMember" , 0 },
305  { 183, "GetFactionMostDamagedMember" , 0 },
306  { 184, "GetFactionLeastDamagedMember" , 0 },
307  { 185, "GetFactionGold" , 0 },
308  { 186, "GetFactionAverageReputation" , 0 },
309  { 187, "GetFactionAverageGoodEvilAlignment" , 0 },
310  { 188, "SoundObjectGetFixedVariance" , 0 },
311  { 189, "GetFactionAverageLevel" , 0 },
312  { 190, "GetFactionAverageXP" , 0 },
313  { 191, "GetFactionMostFrequentClass" , 0 },
314  { 192, "GetFactionWorstAC" , 0 },
315  { 193, "GetFactionBestAC" , 0 },
316  { 194, "GetGlobalString" , 0 },
317  { 195, "GetListenPatternNumber" , 0 },
318  { 196, "ActionJumpToObject" , 0 },
319  { 197, "GetWaypointByTag" , 0 },
320  { 198, "GetTransitionTarget" , 0 },
321  { 199, "EffectLinkEffects" , 0 },
322  { 200, "GetObjectByTag" , &Functions::getObjectByTag },
323  { 201, "AdjustAlignment" , 0 },
324  { 202, "ActionWait" , 0 },
325  { 203, "SetAreaTransitionBMP" , 0 },
326  { 204, "ActionStartConversation" , &Functions::actionStartConversation },
327  { 205, "ActionPauseConversation" , 0 },
328  { 206, "ActionResumeConversation" , 0 },
329  { 207, "EffectBeam" , 0 },
330  { 208, "GetReputation" , 0 },
331  { 209, "AdjustReputation" , 0 },
332  { 210, "GetModuleFileName" , 0 },
333  { 211, "GetGoingToBeAttackedBy" , 0 },
334  { 212, "EffectForceResistanceIncrease" , 0 },
335  { 213, "GetLocation" , 0 },
336  { 214, "ActionJumpToLocation" , 0 },
337  { 215, "Location" , 0 },
338  { 216, "ApplyEffectAtLocation" , 0 },
339  { 217, "GetIsPC" , &Functions::getIsPC },
340  { 218, "FeetToMeters" , 0 },
341  { 219, "YardsToMeters" , 0 },
342  { 220, "ApplyEffectToObject" , 0 },
343  { 221, "SpeakString" , 0 },
344  { 222, "GetSpellTargetLocation" , 0 },
345  { 223, "GetPositionFromLocation" , 0 },
346  { 224, "EffectBodyFuel" , 0 },
347  { 225, "GetFacingFromLocation" , 0 },
348  { 226, "GetNearestCreatureToLocation" , 0 },
349  { 227, "GetNearestObject" , 0 },
350  { 228, "GetNearestObjectToLocation" , 0 },
351  { 229, "GetNearestObjectByTag" , 0 },
352  { 230, "IntToFloat" , &Functions::intToFloat },
353  { 231, "FloatToInt" , &Functions::floatToInt },
354  { 232, "StringToInt" , &Functions::stringToInt },
355  { 233, "StringToFloat" , &Functions::stringToFloat },
356  { 234, "ActionCastSpellAtLocation" , 0 },
357  { 235, "GetIsEnemy" , 0 },
358  { 236, "GetIsFriend" , 0 },
359  { 237, "GetIsNeutral" , 0 },
360  { 238, "GetPCSpeaker" , 0 },
361  { 239, "GetStringByStrRef" , &Functions::getStringByStrRef },
362  { 240, "ActionSpeakStringByStrRef" , 0 },
363  { 241, "DestroyObject" , 0 },
364  { 242, "GetModule" , &Functions::getModule },
365  { 243, "CreateObject" , 0 },
366  { 244, "EventSpellCastAt" , 0 },
367  { 245, "GetLastSpellCaster" , 0 },
368  { 246, "GetLastSpell" , 0 },
369  { 247, "GetUserDefinedEventNumber" , 0 },
370  { 248, "GetSpellId" , 0 },
371  { 249, "RandomName" , 0 },
372  { 250, "EffectPoison" , 0 },
373  { 251, "GetLoadFromSaveGame" , 0 },
374  { 252, "EffectAssuredDeflection" , 0 },
375  { 253, "GetName" , 0 },
376  { 254, "GetLastSpeaker" , 0 },
377  { 255, "BeginConversation" , 0 },
378  { 256, "GetLastPerceived" , 0 },
379  { 257, "GetLastPerceptionHeard" , 0 },
380  { 258, "GetLastPerceptionInaudible" , 0 },
381  { 259, "GetLastPerceptionSeen" , 0 },
382  { 260, "GetLastClosedBy" , &Functions::getLastClosedBy },
383  { 261, "GetLastPerceptionVanished" , 0 },
384  { 262, "GetFirstInPersistentObject" , 0 },
385  { 263, "GetNextInPersistentObject" , 0 },
386  { 264, "GetAreaOfEffectCreator" , 0 },
387  { 265, "ShowLevelUpGUI" , 0 },
388  { 266, "SetItemNonEquippable" , 0 },
389  { 267, "GetButtonMashCheck" , 0 },
390  { 268, "SetButtonMashCheck" , 0 },
391  { 269, "EffectForcePushTargeted" , 0 },
392  { 270, "EffectHaste" , 0 },
393  { 271, "GiveItem" , 0 },
394  { 272, "ObjectToString" , &Functions::objectToString },
395  { 273, "EffectImmunity" , 0 },
396  { 274, "GetIsImmune" , 0 },
397  { 275, "EffectDamageImmunityIncrease" , 0 },
398  { 276, "GetEncounterActive" , 0 },
399  { 277, "SetEncounterActive" , 0 },
400  { 278, "GetEncounterSpawnsMax" , 0 },
401  { 279, "SetEncounterSpawnsMax" , 0 },
402  { 280, "GetEncounterSpawnsCurrent" , 0 },
403  { 281, "SetEncounterSpawnsCurrent" , 0 },
404  { 282, "GetModuleItemAcquired" , 0 },
405  { 283, "GetModuleItemAcquiredFrom" , 0 },
406  { 284, "SetCustomToken" , 0 },
407  { 285, "GetHasFeat" , 0 },
408  { 286, "GetHasSkill" , 0 },
409  { 287, "ActionUseFeat" , 0 },
410  { 288, "ActionUseSkill" , 0 },
411  { 289, "GetObjectSeen" , 0 },
412  { 290, "GetObjectHeard" , 0 },
413  { 291, "GetLastPlayerDied" , 0 },
414  { 292, "GetModuleItemLost" , 0 },
415  { 293, "GetModuleItemLostBy" , 0 },
416  { 294, "ActionDoCommand" , 0 },
417  { 295, "EventConversation" , 0 },
418  { 296, "SetEncounterDifficulty" , 0 },
419  { 297, "GetEncounterDifficulty" , 0 },
420  { 298, "GetDistanceBetweenLocations" , 0 },
421  { 299, "GetReflexAdjustedDamage" , 0 },
422  { 300, "PlayAnimation" , 0 },
423  { 301, "TalentSpell" , 0 },
424  { 302, "TalentFeat" , 0 },
425  { 303, "TalentSkill" , 0 },
426  { 304, "GetHasSpellEffect" , 0 },
427  { 305, "GetEffectSpellId" , 0 },
428  { 306, "GetCreatureHasTalent" , 0 },
429  { 307, "GetCreatureTalentRandom" , 0 },
430  { 308, "GetCreatureTalentBest" , 0 },
431  { 309, "ActionUseTalentOnObject" , 0 },
432  { 310, "ActionUseTalentAtLocation" , 0 },
433  { 311, "GetGoldPieceValue" , 0 },
434  { 312, "GetIsPlayableRacialType" , 0 },
435  { 313, "JumpToLocation" , 0 },
436  { 314, "EffectTemporaryHitpoints" , 0 },
437  { 315, "GetSkillRank" , 0 },
438  { 316, "GetAttackTarget" , 0 },
439  { 317, "GetLastAttackType" , 0 },
440  { 318, "GetLastAttackMode" , 0 },
441  { 319, "GetDistanceBetween2D" , 0 },
442  { 320, "GetIsInCombat" , 0 },
443  { 321, "GetLastAssociateCommand" , 0 },
444  { 322, "GiveGoldToCreature" , 0 },
445  { 323, "SetIsDestroyable" , 0 },
446  { 324, "SetLocked" , &Functions::setLocked },
447  { 325, "GetLocked" , &Functions::getLocked },
448  { 326, "GetClickingObject" , &Functions::getClickingObject },
449  { 327, "SetAssociateListenPatterns" , 0 },
450  { 328, "GetLastWeaponUsed" , 0 },
451  { 329, "ActionInteractObject" , 0 },
452  { 330, "GetLastUsedBy" , &Functions::getLastUsedBy },
453  { 331, "GetAbilityModifier" , 0 },
454  { 332, "GetIdentified" , 0 },
455  { 333, "SetIdentified" , 0 },
456  { 334, "GetDistanceBetweenLocations2D" , 0 },
457  { 335, "GetDistanceToObject2D" , 0 },
458  { 336, "GetBlockingDoor" , 0 },
459  { 337, "GetIsDoorActionPossible" , 0 },
460  { 338, "DoDoorAction" , 0 },
461  { 339, "GetFirstItemInInventory" , 0 },
462  { 340, "GetNextItemInInventory" , 0 },
463  { 341, "GetClassByPosition" , 0 },
464  { 342, "GetLevelByPosition" , 0 },
465  { 343, "GetLevelByClass" , 0 },
466  { 344, "GetDamageDealtByType" , 0 },
467  { 345, "GetTotalDamageDealt" , 0 },
468  { 346, "GetLastDamager" , 0 },
469  { 347, "GetLastDisarmed" , 0 },
470  { 348, "GetLastDisturbed" , 0 },
471  { 349, "GetLastLocked" , 0 },
472  { 350, "GetLastUnlocked" , 0 },
473  { 351, "EffectSkillIncrease" , 0 },
474  { 352, "GetInventoryDisturbType" , 0 },
475  { 353, "GetInventoryDisturbItem" , 0 },
476  { 354, "ShowUpgradeScreen" , 0 },
477  { 355, "VersusAlignmentEffect" , 0 },
478  { 356, "VersusRacialTypeEffect" , 0 },
479  { 357, "VersusTrapEffect" , 0 },
480  { 358, "GetGender" , 0 },
481  { 359, "GetIsTalentValid" , 0 },
482  { 360, "ActionMoveAwayFromLocation" , 0 },
483  { 361, "GetAttemptedAttackTarget" , 0 },
484  { 362, "GetTypeFromTalent" , 0 },
485  { 363, "GetIdFromTalent" , 0 },
486  { 364, "PlayPazaak" , 0 },
487  { 365, "GetLastPazaakResult" , 0 },
488  { 366, "DisplayFeedBackText" , 0 },
489  { 367, "AddJournalQuestEntry" , 0 },
490  { 368, "RemoveJournalQuestEntry" , 0 },
491  { 369, "GetJournalEntry" , 0 },
492  { 370, "PlayRumblePattern" , 0 },
493  { 371, "StopRumblePattern" , 0 },
494  { 372, "EffectDamageForcePoints" , 0 },
495  { 373, "EffectHealForcePoints" , 0 },
496  { 374, "SendMessageToPC" , &Functions::sendMessageToPC },
497  { 375, "GetAttemptedSpellTarget" , 0 },
498  { 376, "GetLastOpenedBy" , &Functions::getLastOpenedBy },
499  { 377, "GetHasSpell" , 0 },
500  { 378, "OpenStore" , 0 },
501  { 379, "ActionSurrenderToEnemies" , 0 },
502  { 380, "GetFirstFactionMember" , 0 },
503  { 381, "GetNextFactionMember" , 0 },
504  { 382, "ActionForceMoveToLocation" , 0 },
505  { 383, "ActionForceMoveToObject" , 0 },
506  { 384, "GetJournalQuestExperience" , 0 },
507  { 385, "JumpToObject" , 0 },
508  { 386, "SetMapPinEnabled" , 0 },
509  { 387, "EffectHitPointChangeWhenDying" , 0 },
510  { 388, "PopUpGUIPanel" , 0 },
511  { 389, "AddMultiClass" , 0 },
512  { 390, "GetIsLinkImmune" , 0 },
513  { 391, "EffectDroidStun" , 0 },
514  { 392, "EffectForcePushed" , 0 },
515  { 393, "GiveXPToCreature" , 0 },
516  { 394, "SetXP" , 0 },
517  { 395, "GetXP" , 0 },
518  { 396, "IntToHexString" , &Functions::intToHexString },
519  { 397, "GetBaseItemType" , 0 },
520  { 398, "GetItemHasItemProperty" , 0 },
521  { 399, "ActionEquipMostDamagingMelee" , 0 },
522  { 400, "ActionEquipMostDamagingRanged" , 0 },
523  { 401, "GetItemACValue" , 0 },
524  { 402, "EffectForceResisted" , 0 },
525  { 403, "ExploreAreaForPlayer" , 0 },
526  { 404, "ActionEquipMostEffectiveArmor" , 0 },
527  { 405, "GetIsDay" , 0 },
528  { 406, "GetIsNight" , 0 },
529  { 407, "GetIsDawn" , 0 },
530  { 408, "GetIsDusk" , 0 },
531  { 409, "GetIsEncounterCreature" , 0 },
532  { 410, "GetLastPlayerDying" , 0 },
533  { 411, "GetStartingLocation" , 0 },
534  { 412, "ChangeToStandardFaction" , 0 },
535  { 413, "SoundObjectPlay" , 0 },
536  { 414, "SoundObjectStop" , 0 },
537  { 415, "SoundObjectSetVolume" , 0 },
538  { 416, "SoundObjectSetPosition" , 0 },
539  { 417, "SpeakOneLinerConversation" , 0 },
540  { 418, "GetGold" , 0 },
541  { 419, "GetLastRespawnButtonPresser" , 0 },
542  { 420, "EffectForceFizzle" , 0 },
543  { 421, "SetLightsaberPowered" , 0 },
544  { 422, "GetIsWeaponEffective" , 0 },
545  { 423, "GetLastSpellHarmful" , 0 },
546  { 424, "EventActivateItem" , 0 },
547  { 425, "MusicBackgroundPlay" , &Functions::musicBackgroundPlay },
548  { 426, "MusicBackgroundStop" , &Functions::musicBackgroundStop },
549  { 427, "MusicBackgroundSetDelay" , 0 },
550  { 428, "MusicBackgroundChangeDay" , &Functions::musicBackgroundChangeDay },
551  { 429, "MusicBackgroundChangeNight" , &Functions::musicBackgroundChangeNight },
552  { 430, "MusicBattlePlay" , 0 },
553  { 431, "MusicBattleStop" , 0 },
554  { 432, "MusicBattleChange" , 0 },
555  { 433, "AmbientSoundPlay" , 0 },
556  { 434, "AmbientSoundStop" , 0 },
557  { 435, "AmbientSoundChangeDay" , 0 },
558  { 436, "AmbientSoundChangeNight" , 0 },
559  { 437, "GetLastKiller" , 0 },
560  { 438, "GetSpellCastItem" , 0 },
561  { 439, "GetItemActivated" , 0 },
562  { 440, "GetItemActivator" , 0 },
563  { 441, "GetItemActivatedTargetLocation" , 0 },
564  { 442, "GetItemActivatedTarget" , 0 },
565  { 443, "GetIsOpen" , &Functions::getIsOpen },
566  { 444, "TakeGoldFromCreature" , 0 },
567  { 445, "GetIsInConversation" , 0 },
568  { 446, "EffectAbilityDecrease" , 0 },
569  { 447, "EffectAttackDecrease" , 0 },
570  { 448, "EffectDamageDecrease" , 0 },
571  { 449, "EffectDamageImmunityDecrease" , 0 },
572  { 450, "EffectACDecrease" , 0 },
573  { 451, "EffectMovementSpeedDecrease" , 0 },
574  { 452, "EffectSavingThrowDecrease" , 0 },
575  { 453, "EffectSkillDecrease" , 0 },
576  { 454, "EffectForceResistanceDecrease" , 0 },
577  { 455, "GetPlotFlag" , 0 },
578  { 456, "SetPlotFlag" , 0 },
579  { 457, "EffectInvisibility" , 0 },
580  { 458, "EffectConcealment" , 0 },
581  { 459, "EffectForceShield" , 0 },
582  { 460, "EffectDispelMagicAll" , 0 },
583  { 461, "SetDialogPlaceableCamera" , 0 },
584  { 462, "GetSoloMode" , 0 },
585  { 463, "EffectDisguise" , 0 },
586  { 464, "GetMaxStealthXP" , 0 },
587  { 465, "EffectTrueSeeing" , 0 },
588  { 466, "EffectSeeInvisible" , 0 },
589  { 467, "EffectTimeStop" , 0 },
590  { 468, "SetMaxStealthXP" , 0 },
591  { 469, "EffectBlasterDeflectionIncrease" , 0 },
592  { 470, "EffectBlasterDeflectionDecrease" , 0 },
593  { 471, "EffectHorrified" , 0 },
594  { 472, "EffectSpellLevelAbsorption" , 0 },
595  { 473, "EffectDispelMagicBest" , 0 },
596  { 474, "GetCurrentStealthXP" , 0 },
597  { 475, "GetNumStackedItems" , 0 },
598  { 476, "SurrenderToEnemies" , 0 },
599  { 477, "EffectMissChance" , 0 },
600  { 478, "SetCurrentStealthXP" , 0 },
601  { 479, "GetCreatureSize" , 0 },
602  { 480, "AwardStealthXP" , 0 },
603  { 481, "GetStealthXPEnabled" , 0 },
604  { 482, "SetStealthXPEnabled" , 0 },
605  { 483, "ActionUnlockObject" , 0 },
606  { 484, "ActionLockObject" , 0 },
607  { 485, "EffectModifyAttacks" , 0 },
608  { 486, "GetLastTrapDetected" , 0 },
609  { 487, "EffectDamageShield" , 0 },
610  { 488, "GetNearestTrapToObject" , 0 },
611  { 489, "GetAttemptedMovementTarget" , 0 },
612  { 490, "GetBlockingCreature" , 0 },
613  { 491, "GetFortitudeSavingThrow" , 0 },
614  { 492, "GetWillSavingThrow" , 0 },
615  { 493, "GetReflexSavingThrow" , 0 },
616  { 494, "GetChallengeRating" , 0 },
617  { 495, "GetFoundEnemyCreature" , 0 },
618  { 496, "GetMovementRate" , 0 },
619  { 497, "GetSubRace" , 0 },
620  { 498, "GetStealthXPDecrement" , 0 },
621  { 499, "SetStealthXPDecrement" , 0 },
622  { 500, "DuplicateHeadAppearance" , 0 },
623  { 501, "ActionCastFakeSpellAtObject" , 0 },
624  { 502, "ActionCastFakeSpellAtLocation" , 0 },
625  { 503, "CutsceneAttack" , 0 },
626  { 504, "SetCameraMode" , 0 },
627  { 505, "SetLockOrientationInDialog" , 0 },
628  { 506, "SetLockHeadFollowInDialog" , 0 },
629  { 507, "CutsceneMove" , 0 },
630  { 508, "EnableVideoEffect" , 0 },
631  { 509, "StartNewModule" , 0 },
632  { 510, "DisableVideoEffect" , 0 },
633  { 511, "GetWeaponRanged" , 0 },
634  { 512, "DoSinglePlayerAutoSave" , 0 },
635  { 513, "GetGameDifficulty" , 0 },
636  { 514, "GetUserActionsPending" , 0 },
637  { 515, "RevealMap" , 0 },
638  { 516, "SetTutorialWindowsEnabled" , 0 },
639  { 517, "ShowTutorialWindow" , 0 },
640  { 518, "StartCreditSequence" , 0 },
641  { 519, "IsCreditSequenceInProgress" , 0 },
642  { 520, "SWMG_SetLateralAccelerationPerSecond", 0 },
643  { 521, "SWMG_GetLateralAccelerationPerSecond", 0 },
644  { 522, "GetCurrentAction" , 0 },
645  { 523, "GetDifficultyModifier" , 0 },
646  { 524, "GetAppearanceType" , 0 },
647  { 525, "FloatingTextStrRefOnCreature" , 0 },
648  { 526, "FloatingTextStringOnCreature" , 0 },
649  { 527, "GetTrapDisarmable" , 0 },
650  { 528, "GetTrapDetectable" , 0 },
651  { 529, "GetTrapDetectedBy" , 0 },
652  { 530, "GetTrapFlagged" , 0 },
653  { 531, "GetTrapBaseType" , 0 },
654  { 532, "GetTrapOneShot" , 0 },
655  { 533, "GetTrapCreator" , 0 },
656  { 534, "GetTrapKeyTag" , 0 },
657  { 535, "GetTrapDisarmDC" , 0 },
658  { 536, "GetTrapDetectDC" , 0 },
659  { 537, "GetLockKeyRequired" , 0 },
660  { 538, "GetLockKeyTag" , 0 },
661  { 539, "GetLockLockable" , 0 },
662  { 540, "GetLockUnlockDC" , 0 },
663  { 541, "GetLockLockDC" , 0 },
664  { 542, "GetPCLevellingUp" , 0 },
665  { 543, "GetHasFeatEffect" , 0 },
666  { 544, "SetPlaceableIllumination" , 0 },
667  { 545, "GetPlaceableIllumination" , 0 },
668  { 546, "GetIsPlaceableObjectActionPossible" , 0 },
669  { 547, "DoPlaceableObjectAction" , 0 },
670  { 548, "GetFirstPC" , &Functions::getFirstPC },
671  { 549, "GetNextPC" , &Functions::getNextPC },
672  { 550, "SetTrapDetectedBy" , 0 },
673  { 551, "GetIsTrapped" , 0 },
674  { 552, "SetEffectIcon" , 0 },
675  { 553, "FaceObjectAwayFromObject" , 0 },
676  { 554, "PopUpDeathGUIPanel" , 0 },
677  { 555, "SetTrapDisabled" , 0 },
678  { 556, "GetLastHostileActor" , 0 },
679  { 557, "ExportAllCharacters" , 0 },
680  { 558, "MusicBackgroundGetDayTrack" , &Functions::musicBackgroundGetDayTrack },
681  { 559, "MusicBackgroundGetNightTrack" , &Functions::musicBackgroundGetNightTrack },
682  { 560, "WriteTimestampedLogEntry" , &Functions::writeTimestampedLogEntry },
683  { 561, "GetModuleName" , 0 },
684  { 562, "GetFactionLeader" , 0 },
685  { 563, "SWMG_SetSpeedBlurEffect" , 0 },
686  { 564, "EndGame" , 0 },
687  { 565, "GetRunScriptVar" , 0 },
688  { 566, "GetCreatureMovmentType" , 0 },
689  { 567, "AmbientSoundSetDayVolume" , 0 },
690  { 568, "AmbientSoundSetNightVolume" , 0 },
691  { 569, "MusicBackgroundGetBattleTrack" , 0 },
692  { 570, "GetHasInventory" , 0 },
693  { 571, "GetStrRefSoundDuration" , 0 },
694  { 572, "AddToParty" , 0 },
695  { 573, "RemoveFromParty" , 0 },
696  { 574, "AddPartyMember" , 0 },
697  { 575, "RemovePartyMember" , 0 },
698  { 576, "IsObjectPartyMember" , &Functions::isObjectPartyMember },
699  { 577, "GetPartyMemberByIndex" , 0 },
700  { 578, "GetGlobalBoolean" , 0 },
701  { 579, "SetGlobalBoolean" , 0 },
702  { 580, "GetGlobalNumber" , 0 },
703  { 581, "SetGlobalNumber" , 0 },
704  { 582, "AurPostString" , 0 },
705  { 583, "SWMG_GetLastEvent" , 0 },
706  { 584, "SWMG_GetLastEventModelName" , 0 },
707  { 585, "SWMG_GetObjectByName" , 0 },
708  { 586, "SWMG_PlayAnimation" , 0 },
709  { 587, "SWMG_GetLastBulletHitDamage" , 0 },
710  { 588, "SWMG_GetLastBulletHitTarget" , 0 },
711  { 589, "SWMG_GetLastBulletHitShooter" , 0 },
712  { 590, "SWMG_AdjustFollowerHitPoints" , 0 },
713  { 591, "SWMG_OnBulletHit" , 0 },
714  { 592, "SWMG_OnObstacleHit" , 0 },
715  { 593, "SWMG_GetLastFollowerHit" , 0 },
716  { 594, "SWMG_GetLastObstacleHit" , 0 },
717  { 595, "SWMG_GetLastBulletFiredDamage" , 0 },
718  { 596, "SWMG_GetLastBulletFiredTarget" , 0 },
719  { 597, "SWMG_GetObjectName" , 0 },
720  { 598, "SWMG_OnDeath" , 0 },
721  { 599, "SWMG_IsFollower" , 0 },
722  { 600, "SWMG_IsPlayer" , 0 },
723  { 601, "SWMG_IsEnemy" , 0 },
724  { 602, "SWMG_IsTrigger" , 0 },
725  { 603, "SWMG_IsObstacle" , 0 },
726  { 604, "SWMG_SetFollowerHitPoints" , 0 },
727  { 605, "SWMG_OnDamage" , 0 },
728  { 606, "SWMG_GetLastHPChange" , 0 },
729  { 607, "SWMG_RemoveAnimation" , 0 },
730  { 608, "SWMG_GetCameraNearClip" , 0 },
731  { 609, "SWMG_GetCameraFarClip" , 0 },
732  { 610, "SWMG_SetCameraClip" , 0 },
733  { 611, "SWMG_GetPlayer" , 0 },
734  { 612, "SWMG_GetEnemyCount" , 0 },
735  { 613, "SWMG_GetEnemy" , 0 },
736  { 614, "SWMG_GetObstacleCount" , 0 },
737  { 615, "SWMG_GetObstacle" , 0 },
738  { 616, "SWMG_GetHitPoints" , 0 },
739  { 617, "SWMG_GetMaxHitPoints" , 0 },
740  { 618, "SWMG_SetMaxHitPoints" , 0 },
741  { 619, "SWMG_GetSphereRadius" , 0 },
742  { 620, "SWMG_SetSphereRadius" , 0 },
743  { 621, "SWMG_GetNumLoops" , 0 },
744  { 622, "SWMG_SetNumLoops" , 0 },
745  { 623, "SWMG_GetPosition" , 0 },
746  { 624, "SWMG_GetGunBankCount" , 0 },
747  { 625, "SWMG_GetGunBankBulletModel" , 0 },
748  { 626, "SWMG_GetGunBankGunModel" , 0 },
749  { 627, "SWMG_GetGunBankDamage" , 0 },
750  { 628, "SWMG_GetGunBankTimeBetweenShots" , 0 },
751  { 629, "SWMG_GetGunBankLifespan" , 0 },
752  { 630, "SWMG_GetGunBankSpeed" , 0 },
753  { 631, "SWMG_GetGunBankTarget" , 0 },
754  { 632, "SWMG_SetGunBankBulletModel" , 0 },
755  { 633, "SWMG_SetGunBankGunModel" , 0 },
756  { 634, "SWMG_SetGunBankDamage" , 0 },
757  { 635, "SWMG_SetGunBankTimeBetweenShots" , 0 },
758  { 636, "SWMG_SetGunBankLifespan" , 0 },
759  { 637, "SWMG_SetGunBankSpeed" , 0 },
760  { 638, "SWMG_SetGunBankTarget" , 0 },
761  { 639, "SWMG_GetLastBulletHitPart" , 0 },
762  { 640, "SWMG_IsGunBankTargetting" , 0 },
763  { 641, "SWMG_GetPlayerOffset" , 0 },
764  { 642, "SWMG_GetPlayerInvincibility" , 0 },
765  { 643, "SWMG_GetPlayerSpeed" , 0 },
766  { 644, "SWMG_GetPlayerMinSpeed" , 0 },
767  { 645, "SWMG_GetPlayerAccelerationPerSecond" , 0 },
768  { 646, "SWMG_GetPlayerTunnelPos" , 0 },
769  { 647, "SWMG_SetPlayerOffset" , 0 },
770  { 648, "SWMG_SetPlayerInvincibility" , 0 },
771  { 649, "SWMG_SetPlayerSpeed" , 0 },
772  { 650, "SWMG_SetPlayerMinSpeed" , 0 },
773  { 651, "SWMG_SetPlayerAccelerationPerSecond" , 0 },
774  { 652, "SWMG_SetPlayerTunnelPos" , 0 },
775  { 653, "SWMG_GetPlayerTunnelNeg" , 0 },
776  { 654, "SWMG_SetPlayerTunnelNeg" , 0 },
777  { 655, "SWMG_GetPlayerOrigin" , 0 },
778  { 656, "SWMG_SetPlayerOrigin" , 0 },
779  { 657, "SWMG_GetGunBankHorizontalSpread" , 0 },
780  { 658, "SWMG_GetGunBankVerticalSpread" , 0 },
781  { 659, "SWMG_GetGunBankSensingRadius" , 0 },
782  { 660, "SWMG_GetGunBankInaccuracy" , 0 },
783  { 661, "SWMG_SetGunBankHorizontalSpread" , 0 },
784  { 662, "SWMG_SetGunBankVerticalSpread" , 0 },
785  { 663, "SWMG_SetGunBankSensingRadius" , 0 },
786  { 664, "SWMG_SetGunBankInaccuracy" , 0 },
787  { 665, "SWMG_GetIsInvulnerable" , 0 },
788  { 666, "SWMG_StartInvulnerability" , 0 },
789  { 667, "SWMG_GetPlayerMaxSpeed" , 0 },
790  { 668, "SWMG_SetPlayerMaxSpeed" , 0 },
791  { 669, "AddJournalEntry" , 0 },
792  { 670, "AddJournalEntryStrref" , 0 },
793  { 671, "BarkString" , 0 },
794  { 672, "DeleteJournalAllEntries" , 0 },
795  { 673, "DeleteJournalEntry" , 0 },
796  { 674, "DeleteJournalEntryStrref" , 0 },
797  { 675, "EffectForceDrain" , 0 },
798  { 676, "EffectPsychicStatic" , 0 },
799  { 677, "PlayVisualAreaEffect" , 0 },
800  { 678, "SetJournalQuestEntryPicture" , 0 },
801  { 679, "GetLocalBoolean" , &Functions::getLocalBoolean },
802  { 680, "SetLocalBoolean" , &Functions::setLocalBoolean },
803  { 681, "GetLocalNumber" , &Functions::getLocalNumber },
804  { 682, "SetLocalNumber" , &Functions::setLocalNumber },
805  { 683, "SWMG_GetSoundFrequency" , 0 },
806  { 684, "SWMG_SetSoundFrequency" , 0 },
807  { 685, "SWMG_GetSoundFrequencyIsRandom" , 0 },
808  { 686, "SWMG_SetSoundFrequencyIsRandom" , 0 },
809  { 687, "SWMG_GetSoundVolume" , 0 },
810  { 688, "SWMG_SetSoundVolume" , 0 },
811  { 689, "SoundObjectGetPitchVariance" , 0 },
812  { 690, "SoundObjectSetPitchVariance" , 0 },
813  { 691, "SoundObjectGetVolume" , 0 },
814  { 692, "GetGlobalLocation" , 0 },
815  { 693, "SetGlobalLocation" , 0 },
816  { 694, "AddAvailableNPCByObject" , 0 },
817  { 695, "RemoveAvailableNPC" , 0 },
818  { 696, "IsAvailableCreature" , 0 },
819  { 697, "AddAvailableNPCByTemplate" , 0 },
820  { 698, "SpawnAvailableNPC" , 0 },
821  { 699, "IsNPCPartyMember" , 0 },
822  { 700, "ActionBarkString" , 0 },
823  { 701, "GetIsConversationActive" , 0 },
824  { 702, "EffectLightsaberThrow" , 0 },
825  { 703, "EffectWhirlWind" , 0 },
826  { 704, "GetPartyAIStyle" , 0 },
827  { 705, "GetNPCAIStyle" , 0 },
828  { 706, "SetPartyAIStyle" , 0 },
829  { 707, "SetNPCAIStyle" , 0 },
830  { 708, "SetNPCSelectability" , 0 },
831  { 709, "GetNPCSelectability" , 0 },
832  { 710, "ClearAllEffects" , 0 },
833  { 711, "GetLastConversation" , 0 },
834  { 712, "ShowPartySelectionGUI" , 0 },
835  { 713, "GetStandardFaction" , 0 },
836  { 714, "GivePlotXP" , 0 },
837  { 715, "GetMinOneHP" , 0 },
838  { 716, "SetMinOneHP" , 0 },
839  { 717, "SWMG_GetPlayerTunnelInfinite" , 0 },
840  { 718, "SWMG_SetPlayerTunnelInfinite" , 0 },
841  { 719, "SetGlobalFadeIn" , 0 },
842  { 720, "SetGlobalFadeOut" , 0 },
843  { 721, "GetLastHostileTarget" , 0 },
844  { 722, "GetLastAttackAction" , 0 },
845  { 723, "GetLastForcePowerUsed" , 0 },
846  { 724, "GetLastCombatFeatUsed" , 0 },
847  { 725, "GetLastAttackResult" , 0 },
848  { 726, "GetWasForcePowerSuccessful" , 0 },
849  { 727, "GetFirstAttacker" , 0 },
850  { 728, "GetNextAttacker" , 0 },
851  { 729, "SetFormation" , 0 },
852  { 730, "ActionFollowLeader" , 0 },
853  { 731, "SetForcePowerUnsuccessful" , 0 },
854  { 732, "GetIsDebilitated" , 0 },
855  { 733, "PlayMovie" , &Functions::playMovie },
856  { 734, "SaveNPCState" , 0 },
857  { 735, "GetCategoryFromTalent" , 0 },
858  { 736, "SurrenderByFaction" , 0 },
859  { 737, "ChangeFactionByFaction" , 0 },
860  { 738, "PlayRoomAnimation" , 0 },
861  { 739, "ShowGalaxyMap" , 0 },
862  { 740, "SetPlanetSelectable" , 0 },
863  { 741, "GetPlanetSelectable" , 0 },
864  { 742, "SetPlanetAvailable" , 0 },
865  { 743, "GetPlanetAvailable" , 0 },
866  { 744, "GetSelectedPlanet" , 0 },
867  { 745, "SoundObjectFadeAndStop" , 0 },
868  { 746, "SetAreaFogColor" , 0 },
869  { 747, "ChangeItemCost" , 0 },
870  { 748, "GetIsLiveContentAvailable" , 0 },
871  { 749, "ResetDialogState" , 0 },
872  { 750, "SetGoodEvilValue" , 0 },
873  { 751, "GetIsPoisoned" , 0 },
874  { 752, "GetSpellTarget" , 0 },
875  { 753, "SetSoloMode" , 0 },
876  { 754, "EffectCutSceneHorrified" , 0 },
877  { 755, "EffectCutSceneParalyze" , 0 },
878  { 756, "EffectCutSceneStunned" , 0 },
879  { 757, "CancelPostDialogCharacterSwitch" , 0 },
880  { 758, "SetMaxHitPoints" , 0 },
881  { 759, "NoClicksFor" , 0 },
882  { 760, "HoldFadeInForDialog" , 0 },
883  { 761, "ShipBuild" , 0 },
884  { 762, "SurrenderRetainBuffs" , 0 },
885  { 763, "SuppressStatusSummaryEntry" , 0 },
886  { 764, "GetCheatCode" , 0 },
887  { 765, "SetMusicVolume" , 0 },
888  { 766, "CreateItemOnFloor" , 0 },
889  { 767, "SetAvailableNPCId" , 0 },
890  { 768, "GetScriptParameter" , 0 },
891  { 769, "SetFadeUntilScript" , 0 },
892  { 770, "EffectForceBody" , 0 },
893  { 771, "GetItemComponent" , 0 },
894  { 772, "GetItemComponentPieceValue" , 0 },
895  { 773, "ShowChemicalUpgradeScreen" , 0 },
896  { 774, "GetChemicals" , 0 },
897  { 775, "GetChemicalPieceValue" , 0 },
898  { 776, "GetSpellForcePointCost" , 0 },
899  { 777, "EffectFury" , 0 },
900  { 778, "EffectBlind" , 0 },
901  { 779, "EffectFPRegenModifier" , 0 },
902  { 780, "EffectVPRegenModifier" , 0 },
903  { 781, "EffectCrush" , 0 },
904  { 782, "SWMG_GetSwoopUpgrade" , 0 },
905  { 783, "GetFeatAcquired" , 0 },
906  { 784, "GetSpellAcquired" , 0 },
907  { 785, "ShowSwoopUpgradeScreen" , 0 },
908  { 786, "GrantFeat" , 0 },
909  { 787, "GrantSpell" , 0 },
910  { 788, "SpawnMine" , 0 },
911  { 789, "SWMG_GetTrackPosition" , 0 },
912  { 790, "SWMG_SetFollowerPosition" , 0 },
913  { 791, "SetFakeCombatState" , 0 },
914  { 792, "SWMG_DestroyMiniGameObject" , 0 },
915  { 793, "GetOwnerDemolitionsSkill" , 0 },
916  { 794, "SetOrientOnClick" , 0 },
917  { 795, "GetInfluence" , 0 },
918  { 796, "SetInfluence" , 0 },
919  { 797, "ModifyInfluence" , 0 },
920  { 798, "GetRacialSubType" , 0 },
921  { 799, "IncrementGlobalNumber" , 0 },
922  { 800, "DecrementGlobalNumber" , 0 },
923  { 801, "SetBonusForcePoints" , 0 },
924  { 802, "AddBonusForcePoints" , 0 },
925  { 803, "GetBonusForcePoints" , 0 },
926  { 804, "SWMG_SetJumpSpeed" , 0 },
927  { 805, "IsMoviePlaying" , 0 },
928  { 806, "QueueMovie" , 0 },
929  { 807, "PlayMovieQueue" , 0 },
930  { 808, "YavinHackDoorClose" , 0 },
931  { 809, "EffectDroidConfused" , 0 },
932  { 810, "IsStealthed" , 0 },
933  { 811, "IsMeditating" , 0 },
934  { 812, "IsInTotalDefense" , 0 },
935  { 813, "SetHealTarget" , 0 },
936  { 814, "GetHealTarget" , 0 },
937  { 815, "GetRandomDestination" , 0 },
938  { 816, "IsFormActive" , 0 },
939  { 817, "GetSpellFormMask" , 0 },
940  { 818, "GetSpellBaseForcePointCost" , 0 },
941  { 819, "SetKeepStealthInDialog" , 0 },
942  { 820, "HasLineOfSight" , 0 },
943  { 821, "ShowDemoScreen" , 0 },
944  { 822, "ForceHeartbeat" , 0 },
945  { 823, "EffectForceSight" , 0 },
946  { 824, "IsRunning" , 0 },
947  { 825, "SWMG_PlayerApplyForce" , 0 },
948  { 826, "SetForfeitConditions" , 0 },
949  { 827, "GetLastForfeitViolation" , 0 },
950  { 828, "ModifyReflexSavingThrowBase" , 0 },
951  { 829, "ModifyFortitudeSavingThrowBase" , 0 },
952  { 830, "ModifyWillSavingThrowBase" , 0 },
953  { 831, "GetScriptStringParameter" , 0 },
954  { 832, "GetObjectPersonalSpace" , 0 },
955  { 833, "AdjustCreatureAttributes" , 0 },
956  { 834, "SetCreatureAILevel" , 0 },
957  { 835, "ResetCreatureAILevel" , 0 },
958  { 836, "AddAvailablePUPByTemplate" , 0 },
959  { 837, "AddAvailablePUPByObject" , 0 },
960  { 838, "AssignPUP" , 0 },
961  { 839, "SpawnAvailablePUP" , 0 },
962  { 840, "AddPartyPuppet" , 0 },
963  { 841, "GetPUPOwner" , 0 },
964  { 842, "GetIsPuppet" , 0 },
965  { 843, "ActionFollowOwner" , 0 },
966  { 844, "GetIsPartyLeader" , 0 },
967  { 845, "GetPartyLeader" , 0 },
968  { 846, "RemoveNPCFromPartyToBase" , 0 },
969  { 847, "CreatureFlourishWeapon" , 0 },
970  { 848, "EffectMindTrick" , 0 },
971  { 849, "EffectFactionModifier" , 0 },
972  { 850, "ChangeObjectAppearance" , 0 },
973  { 851, "GetIsXBox" , 0 },
974  { 852, "EffectDroidScramble" , 0 },
975  { 853, "ActionSwitchWeapons" , 0 },
976  { 854, "PlayOverlayAnimation" , 0 },
977  { 855, "UnlockAllSongs" , 0 },
978  { 856, "DisableMap" , 0 },
979  { 857, "DetonateMine" , 0 },
980  { 858, "DisableHealthRegen" , 0 },
981  { 859, "SetCurrentForm" , 0 },
982  { 860, "SetDisableTransit" , 0 },
983  { 861, "SetInputClass" , 0 },
984  { 862, "SetForceAlwaysUpdate" , 0 },
985  { 863, "EnableRain" , 0 },
986  { 864, "DisplayMessageBox" , 0 },
987  { 865, "DisplayDatapad" , 0 },
988  { 866, "RemoveHeartbeat" , 0 },
989  { 867, "RemoveEffectByID" , 0 },
990  { 868, "RemoveEffectByExactMatch" , 0 },
991  { 869, "AdjustCreatureSkills" , 0 },
992  { 870, "GetSkillRankBase" , 0 },
993  { 871, "EnableRendering" , 0 },
994  { 872, "GetCombatActionsPending" , 0 },
995  { 873, "SaveNPCByObject" , 0 },
996  { 874, "SavePUPByObject" , 0 },
997  { 875, "GetIsPlayerMadeCharacter" , 0 },
998  { 876, "RebuildPartyTable" , 0 }
999 };
1000 
1002 const Functions::FunctionSignature Functions::kFunctionSignatures[] = {
1003  { 0, kTypeInt , { kTypeInt } },
1004  { 1, kTypeVoid , { kTypeString } },
1005  { 2, kTypeVoid , { kTypeFloat, kTypeInt, kTypeInt } },
1006  { 3, kTypeString , { kTypeFloat, kTypeInt, kTypeInt } },
1007  { 4, kTypeVoid , { kTypeInt } },
1008  { 5, kTypeVoid , { kTypeObject } },
1009  { 6, kTypeVoid , { kTypeObject, kTypeScriptState } },
1010  { 7, kTypeVoid , { kTypeFloat, kTypeScriptState } },
1011  { 8, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1012  { 9, kTypeVoid , { } },
1013  { 10, kTypeVoid , { kTypeFloat } },
1014  { 11, kTypeInt , { kTypeInt } },
1015  { 12, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeInt } },
1016  { 13, kTypeInt , { kTypeInt } },
1017  { 14, kTypeVoid , { kTypeInt } },
1018  { 15, kTypeInt , { } },
1019  { 16, kTypeInt , { } },
1020  { 17, kTypeInt , { } },
1021  { 18, kTypeInt , { } },
1022  { 19, kTypeInt , { } },
1023  { 20, kTypeVoid , { } },
1024  { 21, kTypeVoid , { kTypeEngineType, kTypeInt } },
1025  { 22, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1026  { 23, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1027  { 24, kTypeObject , { kTypeObject } },
1028  { 25, kTypeObject , { } },
1029  { 26, kTypeObject , { } },
1030  { 27, kTypeVector , { kTypeObject } },
1031  { 28, kTypeFloat , { kTypeObject } },
1032  { 29, kTypeObject , { kTypeObject } },
1033  { 30, kTypeObject , { kTypeObject, kTypeString } },
1035  { 32, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1036  { 33, kTypeVoid , { kTypeObject, kTypeInt } },
1037  { 34, kTypeVoid , { kTypeObject } },
1038  { 35, kTypeVoid , { kTypeObject } },
1039  { 36, kTypeObject , { kTypeObject } },
1040  { 37, kTypeVoid , { kTypeObject, kTypeInt } },
1042  { 39, kTypeVoid , { kTypeString, kTypeInt } },
1043  { 40, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1044  { 41, kTypeFloat , { kTypeObject } },
1045  { 42, kTypeInt , { kTypeObject } },
1046  { 43, kTypeVoid , { kTypeObject } },
1047  { 44, kTypeVoid , { kTypeObject } },
1048  { 45, kTypeVoid , { kTypeFloat } },
1049  { 46, kTypeVoid , { kTypeString } },
1050  { 47, kTypeObject , { } },
1052  { 49, kTypeInt , { kTypeObject } },
1053  { 50, kTypeInt , { kTypeObject } },
1054  { 51, kTypeEngineType, { } },
1055  { 52, kTypeObject , { } },
1056  { 53, kTypeInt , { } },
1057  { 54, kTypeVoid , { kTypeObject } },
1058  { 55, kTypeInt , { kTypeObject } },
1059  { 56, kTypeInt , { kTypeObject } },
1060  { 57, kTypeVoid , { kTypeInt } },
1061  { 58, kTypeVoid , { kTypeInt } },
1062  { 59, kTypeInt , { kTypeString } },
1063  { 60, kTypeString , { kTypeString } },
1064  { 61, kTypeString , { kTypeString } },
1065  { 62, kTypeString , { kTypeString, kTypeInt } },
1066  { 63, kTypeString , { kTypeString, kTypeInt } },
1067  { 64, kTypeString , { kTypeString, kTypeString, kTypeInt } },
1068  { 65, kTypeString , { kTypeString, kTypeInt, kTypeInt } },
1069  { 66, kTypeInt , { kTypeString, kTypeString } },
1070  { 67, kTypeFloat , { kTypeFloat } },
1071  { 68, kTypeFloat , { kTypeFloat } },
1072  { 69, kTypeFloat , { kTypeFloat } },
1073  { 70, kTypeFloat , { kTypeFloat } },
1074  { 71, kTypeFloat , { kTypeFloat } },
1075  { 72, kTypeFloat , { kTypeFloat } },
1076  { 73, kTypeFloat , { kTypeFloat } },
1077  { 74, kTypeFloat , { kTypeFloat } },
1078  { 75, kTypeFloat , { kTypeFloat, kTypeFloat } },
1079  { 76, kTypeFloat , { kTypeFloat } },
1080  { 77, kTypeInt , { kTypeInt } },
1081  { 78, kTypeEngineType, { kTypeInt } },
1082  { 79, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1083  { 80, kTypeEngineType, { kTypeInt, kTypeInt } },
1084  { 81, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1085  { 82, kTypeEngineType, { kTypeInt } },
1086  { 83, kTypeInt , { kTypeObject } },
1087  { 84, kTypeInt , { kTypeObject } },
1088  { 85, kTypeEngineType, { kTypeObject } },
1089  { 86, kTypeEngineType, { kTypeObject } },
1090  { 87, kTypeVoid , { kTypeObject, kTypeEngineType } },
1091  { 88, kTypeInt , { kTypeEngineType } },
1092  { 89, kTypeInt , { kTypeEngineType } },
1093  { 90, kTypeInt , { kTypeEngineType } },
1094  { 91, kTypeObject , { kTypeEngineType } },
1095  { 92, kTypeString , { kTypeInt } },
1096  { 93, kTypeObject , { kTypeObject, kTypeInt } },
1097  { 94, kTypeObject , { kTypeObject, kTypeInt } },
1098  { 95, kTypeInt , { kTypeInt } },
1099  { 96, kTypeInt , { kTypeInt } },
1100  { 97, kTypeInt , { kTypeInt } },
1101  { 98, kTypeInt , { kTypeInt } },
1102  { 99, kTypeInt , { kTypeInt } },
1103  { 100, kTypeInt , { kTypeInt } },
1104  { 101, kTypeInt , { kTypeInt } },
1105  { 102, kTypeInt , { kTypeInt } },
1106  { 103, kTypeInt , { kTypeInt } },
1107  { 104, kTypeFloat , { kTypeVector } },
1108  { 105, kTypeInt , { } },
1109  { 106, kTypeInt , { kTypeObject } },
1110  { 107, kTypeInt , { kTypeObject } },
1111  { 108, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1112  { 109, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1113  { 110, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1114  { 111, kTypeInt , { } },
1115  { 112, kTypeEngineType, { kTypeEngineType } },
1116  { 113, kTypeEngineType, { kTypeEngineType } },
1117  { 114, kTypeEngineType, { kTypeEngineType } },
1118  { 115, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1119  { 116, kTypeInt , { kTypeObject, kTypeInt } },
1120  { 117, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1121  { 118, kTypeEngineType, { kTypeInt, kTypeInt } },
1122  { 119, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1123  { 120, kTypeEngineType, { kTypeInt, kTypeInt } },
1124  { 121, kTypeFloat , { kTypeInt } },
1125  { 122, kTypeFloat , { kTypeInt } },
1126  { 123, kTypeFloat , { kTypeInt } },
1127  { 124, kTypeVoid , { kTypeObject, kTypeFloat } },
1128  { 125, kTypeInt , { kTypeObject } },
1129  { 126, kTypeInt , { } },
1130  { 127, kTypeInt , { kTypeObject } },
1133  { 130, kTypeEngineType, { } },
1134  { 131, kTypeVoid , { kTypeObject, kTypeEngineType } },
1135  { 132, kTypeEngineType, { kTypeInt } },
1136  { 133, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1137  { 134, kTypeEngineType, { } },
1138  { 135, kTypeVoid , { kTypeObject, kTypeObject } },
1139  { 136, kTypeVoid , { kTypeObject, kTypeObject } },
1140  { 137, kTypeVector , { kTypeVector } },
1141  { 138, kTypeInt , { kTypeObject } },
1142  { 139, kTypeInt , { kTypeObject, kTypeInt } },
1143  { 140, kTypeInt , { kTypeObject } },
1144  { 141, kTypeVoid , { kTypeVector, kTypeInt } },
1145  { 142, kTypeVector , { kTypeFloat, kTypeFloat, kTypeFloat } },
1146  { 143, kTypeVoid , { kTypeVector } },
1147  { 144, kTypeVector , { kTypeFloat } },
1148  { 145, kTypeFloat , { kTypeVector } },
1149  { 146, kTypeInt , { kTypeObject, kTypeInt } },
1150  { 147, kTypeInt , { kTypeObject, kTypeInt } },
1151  { 148, kTypeEngineType, { } },
1152  { 149, kTypeEngineType, { kTypeInt } },
1153  { 150, kTypeVoid , { kTypeObject, kTypeInt } },
1154  { 151, kTypeFloat , { kTypeObject, kTypeObject } },
1155  { 152, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1156  { 153, kTypeEngineType, { kTypeObject, kTypeInt } },
1157  { 154, kTypeEngineType, { } },
1158  { 155, kTypeObject , { kTypeInt, kTypeObject } },
1159  { 156, kTypeEngineType, { kTypeInt } },
1160  { 157, kTypeEngineType, { } },
1161  { 158, kTypeEngineType, { } },
1162  { 159, kTypeEngineType, { } },
1163  { 160, kTypeVoid , { kTypeString, kTypeString } },
1164  { 161, kTypeEngineType, { } },
1165  { 162, kTypeVoid , { kTypeInt, kTypeObject } },
1166  { 163, kTypeInt , { kTypeObject } },
1167  { 164, kTypeEngineType, { kTypeInt, kTypeFloat } },
1168  { 165, kTypeEngineType, { kTypeInt } },
1169  { 166, kTypeInt , { kTypeObject } },
1170  { 167, kTypeVoid , { kTypeObject, kTypeFloat } },
1171  { 168, kTypeString , { kTypeObject } },
1172  { 169, kTypeInt , { kTypeObject, kTypeObject } },
1173  { 170, kTypeInt , { kTypeEngineType } },
1175  { 172, kTypeInt , { kTypeObject, kTypeObject } },
1176  { 173, kTypeVoid , { kTypeObject, kTypeObject } },
1177  { 174, kTypeInt , { kTypeObject } },
1178  { 175, kTypeVoid , { kTypeObject, kTypeInt } },
1179  { 176, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1180  { 177, kTypeInt , { kTypeString, kTypeString } },
1181  { 178, kTypeString , { kTypeInt } },
1182  { 179, kTypeInt , { } },
1183  { 180, kTypeEngineType, { kTypeInt, kTypeInt } },
1184  { 181, kTypeObject , { kTypeObject, kTypeInt } },
1185  { 182, kTypeObject , { kTypeObject, kTypeInt } },
1186  { 183, kTypeObject , { kTypeObject, kTypeInt } },
1187  { 184, kTypeObject , { kTypeObject, kTypeInt } },
1188  { 185, kTypeInt , { kTypeObject } },
1189  { 186, kTypeInt , { kTypeObject, kTypeObject } },
1190  { 187, kTypeInt , { kTypeObject } },
1191  { 188, kTypeFloat , { kTypeObject } },
1192  { 189, kTypeInt , { kTypeObject } },
1193  { 190, kTypeInt , { kTypeObject } },
1194  { 191, kTypeInt , { kTypeObject } },
1195  { 192, kTypeObject , { kTypeObject, kTypeInt } },
1196  { 193, kTypeObject , { kTypeObject, kTypeInt } },
1197  { 194, kTypeString , { kTypeString } },
1198  { 195, kTypeInt , { } },
1199  { 196, kTypeVoid , { kTypeObject, kTypeInt } },
1200  { 197, kTypeObject , { kTypeString } },
1201  { 198, kTypeObject , { kTypeObject } },
1203  { 200, kTypeObject , { kTypeString, kTypeInt } },
1204  { 201, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1205  { 202, kTypeVoid , { kTypeFloat } },
1206  { 203, kTypeVoid , { kTypeInt, kTypeString } },
1208  { 205, kTypeVoid , { } },
1209  { 206, kTypeVoid , { } },
1211  { 208, kTypeInt , { kTypeObject, kTypeObject } },
1212  { 209, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1213  { 210, kTypeString , { } },
1214  { 211, kTypeObject , { kTypeObject } },
1215  { 212, kTypeEngineType, { kTypeInt } },
1216  { 213, kTypeEngineType, { kTypeObject } },
1217  { 214, kTypeVoid , { kTypeEngineType } },
1218  { 215, kTypeEngineType, { kTypeVector, kTypeFloat } },
1220  { 217, kTypeInt , { kTypeObject } },
1221  { 218, kTypeFloat , { kTypeFloat } },
1222  { 219, kTypeFloat , { kTypeFloat } },
1224  { 221, kTypeVoid , { kTypeString, kTypeInt } },
1225  { 222, kTypeEngineType, { } },
1226  { 223, kTypeVector , { kTypeEngineType } },
1227  { 224, kTypeEngineType, { } },
1228  { 225, kTypeFloat , { kTypeEngineType } },
1230  { 227, kTypeObject , { kTypeInt, kTypeObject, kTypeInt } },
1231  { 228, kTypeObject , { kTypeInt, kTypeEngineType, kTypeInt } },
1232  { 229, kTypeObject , { kTypeString, kTypeObject, kTypeInt } },
1233  { 230, kTypeFloat , { kTypeInt } },
1234  { 231, kTypeInt , { kTypeFloat } },
1235  { 232, kTypeInt , { kTypeString } },
1236  { 233, kTypeFloat , { kTypeString } },
1238  { 235, kTypeInt , { kTypeObject, kTypeObject } },
1239  { 236, kTypeInt , { kTypeObject, kTypeObject } },
1240  { 237, kTypeInt , { kTypeObject, kTypeObject } },
1241  { 238, kTypeObject , { } },
1242  { 239, kTypeString , { kTypeInt } },
1243  { 240, kTypeVoid , { kTypeInt, kTypeInt } },
1245  { 242, kTypeObject , { } },
1247  { 244, kTypeEngineType, { kTypeObject, kTypeInt, kTypeInt } },
1248  { 245, kTypeObject , { } },
1249  { 246, kTypeInt , { } },
1250  { 247, kTypeInt , { } },
1251  { 248, kTypeInt , { } },
1252  { 249, kTypeString , { } },
1253  { 250, kTypeEngineType, { kTypeInt } },
1254  { 251, kTypeInt , { } },
1255  { 252, kTypeEngineType, { kTypeInt } },
1256  { 253, kTypeString , { kTypeObject } },
1257  { 254, kTypeObject , { } },
1258  { 255, kTypeInt , { kTypeString, kTypeObject } },
1259  { 256, kTypeObject , { } },
1260  { 257, kTypeInt , { } },
1261  { 258, kTypeInt , { } },
1262  { 259, kTypeInt , { } },
1263  { 260, kTypeObject , { } },
1264  { 261, kTypeInt , { } },
1265  { 262, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1266  { 263, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1267  { 264, kTypeObject , { kTypeObject } },
1268  { 265, kTypeInt , { } },
1269  { 266, kTypeVoid , { kTypeObject, kTypeInt } },
1270  { 267, kTypeInt , { } },
1271  { 268, kTypeVoid , { kTypeInt } },
1272  { 269, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1273  { 270, kTypeEngineType, { } },
1274  { 271, kTypeVoid , { kTypeObject, kTypeObject } },
1275  { 272, kTypeString , { kTypeObject } },
1276  { 273, kTypeEngineType, { kTypeInt } },
1277  { 274, kTypeInt , { kTypeObject, kTypeInt, kTypeObject } },
1278  { 275, kTypeEngineType, { kTypeInt, kTypeInt } },
1279  { 276, kTypeInt , { kTypeObject } },
1280  { 277, kTypeVoid , { kTypeInt, kTypeObject } },
1281  { 278, kTypeInt , { kTypeObject } },
1282  { 279, kTypeVoid , { kTypeInt, kTypeObject } },
1283  { 280, kTypeInt , { kTypeObject } },
1284  { 281, kTypeVoid , { kTypeInt, kTypeObject } },
1285  { 282, kTypeObject , { } },
1286  { 283, kTypeObject , { } },
1287  { 284, kTypeVoid , { kTypeInt, kTypeString } },
1288  { 285, kTypeInt , { kTypeInt, kTypeObject } },
1289  { 286, kTypeInt , { kTypeInt, kTypeObject } },
1290  { 287, kTypeVoid , { kTypeInt, kTypeObject } },
1292  { 289, kTypeInt , { kTypeObject, kTypeObject } },
1293  { 290, kTypeInt , { kTypeObject, kTypeObject } },
1294  { 291, kTypeObject , { } },
1295  { 292, kTypeObject , { } },
1296  { 293, kTypeObject , { } },
1297  { 294, kTypeVoid , { kTypeScriptState } },
1298  { 295, kTypeEngineType, { } },
1299  { 296, kTypeVoid , { kTypeInt, kTypeObject } },
1300  { 297, kTypeInt , { kTypeObject } },
1301  { 298, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1303  { 300, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1304  { 301, kTypeEngineType, { kTypeInt } },
1305  { 302, kTypeEngineType, { kTypeInt } },
1306  { 303, kTypeEngineType, { kTypeInt } },
1307  { 304, kTypeInt , { kTypeInt, kTypeObject } },
1308  { 305, kTypeInt , { kTypeEngineType } },
1309  { 306, kTypeInt , { kTypeEngineType, kTypeObject } },
1310  { 307, kTypeEngineType, { kTypeInt, kTypeObject, kTypeInt } },
1312  { 309, kTypeVoid , { kTypeEngineType, kTypeObject } },
1313  { 310, kTypeVoid , { kTypeEngineType, kTypeEngineType } },
1314  { 311, kTypeInt , { kTypeObject } },
1315  { 312, kTypeInt , { kTypeObject } },
1316  { 313, kTypeVoid , { kTypeEngineType } },
1317  { 314, kTypeEngineType, { kTypeInt } },
1318  { 315, kTypeInt , { kTypeInt, kTypeObject } },
1319  { 316, kTypeObject , { kTypeObject } },
1320  { 317, kTypeInt , { kTypeObject } },
1321  { 318, kTypeInt , { kTypeObject } },
1322  { 319, kTypeFloat , { kTypeObject, kTypeObject } },
1323  { 320, kTypeInt , { kTypeObject, kTypeInt } },
1324  { 321, kTypeInt , { kTypeObject } },
1325  { 322, kTypeVoid , { kTypeObject, kTypeInt } },
1326  { 323, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1327  { 324, kTypeVoid , { kTypeObject, kTypeInt } },
1328  { 325, kTypeInt , { kTypeObject } },
1329  { 326, kTypeObject , { } },
1330  { 327, kTypeVoid , { kTypeObject } },
1331  { 328, kTypeObject , { kTypeObject } },
1332  { 329, kTypeVoid , { kTypeObject } },
1333  { 330, kTypeObject , { } },
1334  { 331, kTypeInt , { kTypeInt, kTypeObject } },
1335  { 332, kTypeInt , { kTypeObject } },
1336  { 333, kTypeVoid , { kTypeObject, kTypeInt } },
1337  { 334, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1338  { 335, kTypeFloat , { kTypeObject } },
1339  { 336, kTypeObject , { } },
1340  { 337, kTypeInt , { kTypeObject, kTypeInt } },
1341  { 338, kTypeVoid , { kTypeObject, kTypeInt } },
1342  { 339, kTypeObject , { kTypeObject } },
1343  { 340, kTypeObject , { kTypeObject } },
1344  { 341, kTypeInt , { kTypeInt, kTypeObject } },
1345  { 342, kTypeInt , { kTypeInt, kTypeObject } },
1346  { 343, kTypeInt , { kTypeInt, kTypeObject } },
1347  { 344, kTypeInt , { kTypeInt } },
1348  { 345, kTypeInt , { } },
1349  { 346, kTypeObject , { } },
1350  { 347, kTypeObject , { } },
1351  { 348, kTypeObject , { } },
1352  { 349, kTypeObject , { } },
1353  { 350, kTypeObject , { } },
1354  { 351, kTypeEngineType, { kTypeInt, kTypeInt } },
1355  { 352, kTypeInt , { } },
1356  { 353, kTypeObject , { } },
1359  { 356, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1360  { 357, kTypeEngineType, { kTypeEngineType } },
1361  { 358, kTypeInt , { kTypeObject } },
1362  { 359, kTypeInt , { kTypeEngineType } },
1363  { 360, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1364  { 361, kTypeObject , { } },
1365  { 362, kTypeInt , { kTypeEngineType } },
1366  { 363, kTypeInt , { kTypeEngineType } },
1368  { 365, kTypeInt , { } },
1369  { 366, kTypeVoid , { kTypeObject, kTypeInt } },
1370  { 367, kTypeVoid , { kTypeString, kTypeInt, kTypeInt } },
1371  { 368, kTypeVoid , { kTypeString } },
1372  { 369, kTypeInt , { kTypeString } },
1373  { 370, kTypeInt , { kTypeInt } },
1374  { 371, kTypeInt , { kTypeInt } },
1375  { 372, kTypeEngineType, { kTypeInt } },
1376  { 373, kTypeEngineType, { kTypeInt } },
1377  { 374, kTypeVoid , { kTypeObject, kTypeString } },
1378  { 375, kTypeObject , { } },
1379  { 376, kTypeObject , { } },
1380  { 377, kTypeInt , { kTypeInt, kTypeObject } },
1382  { 379, kTypeVoid , { } },
1383  { 380, kTypeObject , { kTypeObject, kTypeInt } },
1384  { 381, kTypeObject , { kTypeObject, kTypeInt } },
1385  { 382, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1387  { 384, kTypeInt , { kTypeString } },
1388  { 385, kTypeVoid , { kTypeObject, kTypeInt } },
1389  { 386, kTypeVoid , { kTypeObject, kTypeInt } },
1390  { 387, kTypeEngineType, { kTypeFloat } },
1391  { 388, kTypeVoid , { kTypeObject, kTypeInt } },
1392  { 389, kTypeVoid , { kTypeInt, kTypeObject } },
1393  { 390, kTypeInt , { kTypeObject, kTypeEngineType } },
1394  { 391, kTypeEngineType, { } },
1395  { 392, kTypeEngineType, { } },
1396  { 393, kTypeVoid , { kTypeObject, kTypeInt } },
1397  { 394, kTypeVoid , { kTypeObject, kTypeInt } },
1398  { 395, kTypeInt , { kTypeObject } },
1399  { 396, kTypeString , { kTypeInt } },
1400  { 397, kTypeInt , { kTypeObject } },
1401  { 398, kTypeInt , { kTypeObject, kTypeInt } },
1402  { 399, kTypeVoid , { kTypeObject, kTypeInt } },
1403  { 400, kTypeVoid , { kTypeObject } },
1404  { 401, kTypeInt , { kTypeObject } },
1405  { 402, kTypeEngineType, { kTypeObject } },
1406  { 403, kTypeVoid , { kTypeObject, kTypeObject } },
1407  { 404, kTypeVoid , { } },
1408  { 405, kTypeInt , { } },
1409  { 406, kTypeInt , { } },
1410  { 407, kTypeInt , { } },
1411  { 408, kTypeInt , { } },
1412  { 409, kTypeInt , { kTypeObject } },
1413  { 410, kTypeObject , { } },
1414  { 411, kTypeEngineType, { } },
1415  { 412, kTypeVoid , { kTypeObject, kTypeInt } },
1416  { 413, kTypeVoid , { kTypeObject } },
1417  { 414, kTypeVoid , { kTypeObject } },
1418  { 415, kTypeVoid , { kTypeObject, kTypeInt } },
1419  { 416, kTypeVoid , { kTypeObject, kTypeVector } },
1420  { 417, kTypeVoid , { kTypeString, kTypeObject } },
1421  { 418, kTypeInt , { kTypeObject } },
1422  { 419, kTypeObject , { } },
1423  { 420, kTypeEngineType, { } },
1424  { 421, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1425  { 422, kTypeInt , { kTypeObject, kTypeInt } },
1426  { 423, kTypeInt , { } },
1428  { 425, kTypeVoid , { kTypeObject } },
1429  { 426, kTypeVoid , { kTypeObject } },
1430  { 427, kTypeVoid , { kTypeObject, kTypeInt } },
1431  { 428, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1432  { 429, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1433  { 430, kTypeVoid , { kTypeObject } },
1434  { 431, kTypeVoid , { kTypeObject } },
1435  { 432, kTypeVoid , { kTypeObject, kTypeInt } },
1436  { 433, kTypeVoid , { kTypeObject } },
1437  { 434, kTypeVoid , { kTypeObject } },
1438  { 435, kTypeVoid , { kTypeObject, kTypeInt } },
1439  { 436, kTypeVoid , { kTypeObject, kTypeInt } },
1440  { 437, kTypeObject , { } },
1441  { 438, kTypeObject , { } },
1442  { 439, kTypeObject , { } },
1443  { 440, kTypeObject , { } },
1444  { 441, kTypeEngineType, { } },
1445  { 442, kTypeObject , { } },
1446  { 443, kTypeInt , { kTypeObject } },
1447  { 444, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1448  { 445, kTypeInt , { kTypeObject } },
1449  { 446, kTypeEngineType, { kTypeInt, kTypeInt } },
1450  { 447, kTypeEngineType, { kTypeInt, kTypeInt } },
1451  { 448, kTypeEngineType, { kTypeInt, kTypeInt } },
1452  { 449, kTypeEngineType, { kTypeInt, kTypeInt } },
1453  { 450, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1454  { 451, kTypeEngineType, { kTypeInt } },
1455  { 452, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1456  { 453, kTypeEngineType, { kTypeInt, kTypeInt } },
1457  { 454, kTypeEngineType, { kTypeInt } },
1458  { 455, kTypeInt , { kTypeObject } },
1459  { 456, kTypeVoid , { kTypeObject, kTypeInt } },
1460  { 457, kTypeEngineType, { kTypeInt } },
1461  { 458, kTypeEngineType, { kTypeInt } },
1462  { 459, kTypeEngineType, { kTypeInt } },
1463  { 460, kTypeEngineType, { kTypeInt } },
1464  { 461, kTypeVoid , { kTypeInt } },
1465  { 462, kTypeInt , { } },
1466  { 463, kTypeEngineType, { kTypeInt } },
1467  { 464, kTypeInt , { } },
1468  { 465, kTypeEngineType, { } },
1469  { 466, kTypeEngineType, { } },
1470  { 467, kTypeEngineType, { } },
1471  { 468, kTypeVoid , { kTypeInt } },
1472  { 469, kTypeEngineType, { kTypeInt } },
1473  { 470, kTypeEngineType, { kTypeInt } },
1474  { 471, kTypeEngineType, { } },
1475  { 472, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1476  { 473, kTypeEngineType, { kTypeInt } },
1477  { 474, kTypeInt , { } },
1478  { 475, kTypeInt , { kTypeObject } },
1479  { 476, kTypeVoid , { } },
1480  { 477, kTypeEngineType, { kTypeInt } },
1481  { 478, kTypeVoid , { kTypeInt } },
1482  { 479, kTypeInt , { kTypeObject } },
1483  { 480, kTypeVoid , { kTypeObject } },
1484  { 481, kTypeInt , { } },
1485  { 482, kTypeVoid , { kTypeInt } },
1486  { 483, kTypeVoid , { kTypeObject } },
1487  { 484, kTypeVoid , { kTypeObject } },
1488  { 485, kTypeEngineType, { kTypeInt } },
1489  { 486, kTypeObject , { kTypeObject } },
1490  { 487, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1491  { 488, kTypeObject , { kTypeObject, kTypeInt } },
1492  { 489, kTypeObject , { } },
1493  { 490, kTypeObject , { kTypeObject } },
1494  { 491, kTypeInt , { kTypeObject } },
1495  { 492, kTypeInt , { kTypeObject } },
1496  { 493, kTypeInt , { kTypeObject } },
1497  { 494, kTypeFloat , { kTypeObject } },
1498  { 495, kTypeObject , { kTypeObject } },
1499  { 496, kTypeInt , { kTypeObject } },
1500  { 497, kTypeInt , { kTypeObject } },
1501  { 498, kTypeInt , { } },
1502  { 499, kTypeVoid , { kTypeInt } },
1503  { 500, kTypeVoid , { kTypeObject, kTypeObject } },
1504  { 501, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1505  { 502, kTypeVoid , { kTypeInt, kTypeEngineType, kTypeInt } },
1506  { 503, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1507  { 504, kTypeVoid , { kTypeObject, kTypeInt } },
1508  { 505, kTypeVoid , { kTypeObject, kTypeInt } },
1509  { 506, kTypeVoid , { kTypeObject, kTypeInt } },
1510  { 507, kTypeVoid , { kTypeObject, kTypeVector, kTypeInt } },
1511  { 508, kTypeVoid , { kTypeInt } },
1513  { 510, kTypeVoid , { } },
1514  { 511, kTypeInt , { kTypeObject } },
1515  { 512, kTypeVoid , { } },
1516  { 513, kTypeInt , { } },
1517  { 514, kTypeInt , { } },
1518  { 515, kTypeVoid , { kTypeVector, kTypeInt } },
1519  { 516, kTypeVoid , { kTypeInt } },
1520  { 517, kTypeVoid , { kTypeInt } },
1521  { 518, kTypeVoid , { kTypeInt } },
1522  { 519, kTypeInt , { } },
1523  { 520, kTypeVoid , { kTypeFloat } },
1524  { 521, kTypeFloat , { } },
1525  { 522, kTypeInt , { kTypeObject } },
1526  { 523, kTypeFloat , { } },
1527  { 524, kTypeInt , { kTypeObject } },
1528  { 525, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1529  { 526, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1530  { 527, kTypeInt , { kTypeObject } },
1531  { 528, kTypeInt , { kTypeObject } },
1532  { 529, kTypeInt , { kTypeObject, kTypeObject } },
1533  { 530, kTypeInt , { kTypeObject } },
1534  { 531, kTypeInt , { kTypeObject } },
1535  { 532, kTypeInt , { kTypeObject } },
1536  { 533, kTypeObject , { kTypeObject } },
1537  { 534, kTypeString , { kTypeObject } },
1538  { 535, kTypeInt , { kTypeObject } },
1539  { 536, kTypeInt , { kTypeObject } },
1540  { 537, kTypeInt , { kTypeObject } },
1541  { 538, kTypeInt , { kTypeObject } },
1542  { 539, kTypeInt , { kTypeObject } },
1543  { 540, kTypeInt , { kTypeObject } },
1544  { 541, kTypeInt , { kTypeObject } },
1545  { 542, kTypeObject , { } },
1546  { 543, kTypeInt , { kTypeInt, kTypeObject } },
1547  { 544, kTypeVoid , { kTypeObject, kTypeInt } },
1548  { 545, kTypeInt , { kTypeObject } },
1549  { 546, kTypeInt , { kTypeObject, kTypeInt } },
1550  { 547, kTypeVoid , { kTypeObject, kTypeInt } },
1551  { 548, kTypeObject , { } },
1552  { 549, kTypeObject , { } },
1553  { 550, kTypeInt , { kTypeObject, kTypeObject } },
1554  { 551, kTypeInt , { kTypeObject } },
1555  { 552, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1556  { 553, kTypeVoid , { kTypeObject, kTypeObject } },
1558  { 555, kTypeVoid , { kTypeObject } },
1559  { 556, kTypeObject , { kTypeObject } },
1560  { 557, kTypeVoid , { } },
1561  { 558, kTypeInt , { kTypeObject } },
1562  { 559, kTypeInt , { kTypeObject } },
1563  { 560, kTypeVoid , { kTypeString } },
1564  { 561, kTypeString , { } },
1565  { 562, kTypeObject , { kTypeObject } },
1566  { 563, kTypeVoid , { kTypeInt, kTypeFloat } },
1567  { 564, kTypeVoid , { kTypeInt } },
1568  { 565, kTypeInt , { } },
1569  { 566, kTypeInt , { kTypeObject } },
1570  { 567, kTypeVoid , { kTypeObject, kTypeInt } },
1571  { 568, kTypeVoid , { kTypeObject, kTypeInt } },
1572  { 569, kTypeInt , { kTypeObject } },
1573  { 570, kTypeInt , { kTypeObject } },
1574  { 571, kTypeFloat , { kTypeInt } },
1575  { 572, kTypeVoid , { kTypeObject, kTypeObject } },
1576  { 573, kTypeVoid , { kTypeObject } },
1577  { 574, kTypeInt , { kTypeInt, kTypeObject } },
1578  { 575, kTypeInt , { kTypeInt } },
1579  { 576, kTypeInt , { kTypeObject } },
1580  { 577, kTypeObject , { kTypeInt } },
1581  { 578, kTypeInt , { kTypeString } },
1582  { 579, kTypeVoid , { kTypeString, kTypeInt } },
1583  { 580, kTypeInt , { kTypeString } },
1584  { 581, kTypeVoid , { kTypeString, kTypeInt } },
1585  { 582, kTypeVoid , { kTypeString, kTypeInt, kTypeInt, kTypeFloat } },
1586  { 583, kTypeString , { } },
1587  { 584, kTypeString , { } },
1588  { 585, kTypeObject , { kTypeString } },
1590  { 587, kTypeInt , { } },
1591  { 588, kTypeInt , { } },
1592  { 589, kTypeObject , { } },
1593  { 590, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1594  { 591, kTypeVoid , { } },
1595  { 592, kTypeVoid , { } },
1596  { 593, kTypeObject , { } },
1597  { 594, kTypeObject , { } },
1598  { 595, kTypeInt , { } },
1599  { 596, kTypeInt , { } },
1600  { 597, kTypeString , { kTypeObject } },
1601  { 598, kTypeVoid , { } },
1602  { 599, kTypeInt , { kTypeObject } },
1603  { 600, kTypeInt , { kTypeObject } },
1604  { 601, kTypeInt , { kTypeObject } },
1605  { 602, kTypeInt , { kTypeObject } },
1606  { 603, kTypeInt , { kTypeObject } },
1607  { 604, kTypeVoid , { kTypeObject, kTypeInt } },
1608  { 605, kTypeVoid , { } },
1609  { 606, kTypeInt , { } },
1610  { 607, kTypeVoid , { kTypeObject, kTypeString } },
1611  { 608, kTypeFloat , { } },
1612  { 609, kTypeFloat , { } },
1613  { 610, kTypeVoid , { kTypeFloat, kTypeFloat } },
1614  { 611, kTypeObject , { } },
1615  { 612, kTypeInt , { } },
1616  { 613, kTypeObject , { kTypeInt } },
1617  { 614, kTypeInt , { } },
1618  { 615, kTypeObject , { kTypeInt } },
1619  { 616, kTypeInt , { kTypeObject } },
1620  { 617, kTypeInt , { kTypeObject } },
1621  { 618, kTypeVoid , { kTypeObject, kTypeInt } },
1622  { 619, kTypeFloat , { kTypeObject } },
1623  { 620, kTypeVoid , { kTypeObject, kTypeFloat } },
1624  { 621, kTypeInt , { kTypeObject } },
1625  { 622, kTypeVoid , { kTypeObject, kTypeInt } },
1626  { 623, kTypeVector , { kTypeObject } },
1627  { 624, kTypeInt , { kTypeObject } },
1628  { 625, kTypeString , { kTypeObject, kTypeInt } },
1629  { 626, kTypeString , { kTypeObject, kTypeInt } },
1630  { 627, kTypeInt , { kTypeObject, kTypeInt } },
1631  { 628, kTypeFloat , { kTypeObject, kTypeInt } },
1632  { 629, kTypeFloat , { kTypeObject, kTypeInt } },
1633  { 630, kTypeFloat , { kTypeObject, kTypeInt } },
1634  { 631, kTypeInt , { kTypeObject, kTypeInt } },
1635  { 632, kTypeVoid , { kTypeObject, kTypeInt, kTypeString } },
1636  { 633, kTypeVoid , { kTypeObject, kTypeInt, kTypeString } },
1637  { 634, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1638  { 635, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1639  { 636, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1640  { 637, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1641  { 638, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1642  { 639, kTypeString , { } },
1643  { 640, kTypeInt , { kTypeObject, kTypeInt } },
1644  { 641, kTypeVector , { } },
1645  { 642, kTypeFloat , { } },
1646  { 643, kTypeFloat , { } },
1647  { 644, kTypeFloat , { } },
1648  { 645, kTypeFloat , { } },
1649  { 646, kTypeVector , { } },
1650  { 647, kTypeVoid , { kTypeVector } },
1651  { 648, kTypeVoid , { kTypeFloat } },
1652  { 649, kTypeVoid , { kTypeFloat } },
1653  { 650, kTypeVoid , { kTypeFloat } },
1654  { 651, kTypeVoid , { kTypeFloat } },
1655  { 652, kTypeVoid , { kTypeVector } },
1656  { 653, kTypeVector , { } },
1657  { 654, kTypeVoid , { kTypeVector } },
1658  { 655, kTypeVector , { } },
1659  { 656, kTypeVoid , { kTypeVector } },
1660  { 657, kTypeFloat , { kTypeObject, kTypeInt } },
1661  { 658, kTypeFloat , { kTypeObject, kTypeInt } },
1662  { 659, kTypeFloat , { kTypeObject, kTypeInt } },
1663  { 660, kTypeFloat , { kTypeObject, kTypeInt } },
1664  { 661, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1665  { 662, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1666  { 663, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1667  { 664, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1668  { 665, kTypeInt , { kTypeObject } },
1669  { 666, kTypeVoid , { kTypeObject } },
1670  { 667, kTypeFloat , { } },
1671  { 668, kTypeVoid , { kTypeFloat } },
1672  { 669, kTypeVoid , { kTypeInt, kTypeString, kTypeString } },
1673  { 670, kTypeVoid , { kTypeInt, kTypeInt } },
1674  { 671, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1675  { 672, kTypeVoid , { } },
1676  { 673, kTypeVoid , { kTypeInt } },
1677  { 674, kTypeVoid , { kTypeInt } },
1678  { 675, kTypeEngineType, { kTypeInt } },
1679  { 676, kTypeEngineType, { } },
1680  { 677, kTypeVoid , { kTypeInt, kTypeEngineType } },
1682  { 679, kTypeInt , { kTypeObject, kTypeInt } },
1683  { 680, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1684  { 681, kTypeInt , { kTypeObject, kTypeInt } },
1685  { 682, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1686  { 683, kTypeInt , { kTypeObject, kTypeInt } },
1687  { 684, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1688  { 685, kTypeInt , { kTypeObject, kTypeInt } },
1689  { 686, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1690  { 687, kTypeInt , { kTypeObject, kTypeInt } },
1691  { 688, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1692  { 689, kTypeFloat , { kTypeObject } },
1693  { 690, kTypeVoid , { kTypeObject, kTypeFloat } },
1694  { 691, kTypeInt , { kTypeObject } },
1695  { 692, kTypeEngineType, { kTypeString } },
1696  { 693, kTypeVoid , { kTypeString, kTypeEngineType } },
1697  { 694, kTypeInt , { kTypeInt, kTypeObject } },
1698  { 695, kTypeInt , { kTypeInt } },
1699  { 696, kTypeInt , { kTypeInt } },
1700  { 697, kTypeInt , { kTypeInt, kTypeString } },
1701  { 698, kTypeObject , { kTypeInt, kTypeEngineType } },
1702  { 699, kTypeInt , { kTypeInt } },
1703  { 700, kTypeVoid , { kTypeInt } },
1704  { 701, kTypeInt , { } },
1706  { 703, kTypeEngineType, { } },
1707  { 704, kTypeInt , { } },
1708  { 705, kTypeInt , { kTypeObject } },
1709  { 706, kTypeVoid , { kTypeInt } },
1710  { 707, kTypeVoid , { kTypeObject, kTypeInt } },
1711  { 708, kTypeVoid , { kTypeInt, kTypeInt } },
1712  { 709, kTypeInt , { kTypeInt } },
1713  { 710, kTypeVoid , { } },
1714  { 711, kTypeString , { } },
1715  { 712, kTypeVoid , { kTypeString, kTypeInt, kTypeInt, kTypeInt } },
1716  { 713, kTypeInt , { kTypeObject } },
1717  { 714, kTypeVoid , { kTypeString, kTypeInt } },
1718  { 715, kTypeInt , { kTypeObject } },
1719  { 716, kTypeVoid , { kTypeObject, kTypeInt } },
1720  { 717, kTypeVector , { } },
1721  { 718, kTypeVoid , { kTypeVector } },
1724  { 721, kTypeObject , { kTypeObject } },
1725  { 722, kTypeInt , { kTypeObject } },
1726  { 723, kTypeInt , { kTypeObject } },
1727  { 724, kTypeInt , { kTypeObject } },
1728  { 725, kTypeInt , { kTypeObject } },
1729  { 726, kTypeInt , { kTypeObject } },
1730  { 727, kTypeObject , { kTypeObject } },
1731  { 728, kTypeObject , { kTypeObject } },
1733  { 730, kTypeVoid , { } },
1734  { 731, kTypeVoid , { kTypeInt, kTypeObject } },
1735  { 732, kTypeInt , { kTypeObject } },
1736  { 733, kTypeVoid , { kTypeString, kTypeInt } },
1737  { 734, kTypeVoid , { kTypeInt } },
1738  { 735, kTypeInt , { kTypeEngineType } },
1739  { 736, kTypeVoid , { kTypeInt, kTypeInt } },
1740  { 737, kTypeVoid , { kTypeInt, kTypeInt } },
1741  { 738, kTypeVoid , { kTypeString, kTypeInt } },
1742  { 739, kTypeVoid , { kTypeInt } },
1743  { 740, kTypeVoid , { kTypeInt, kTypeInt } },
1744  { 741, kTypeInt , { kTypeInt } },
1745  { 742, kTypeVoid , { kTypeInt, kTypeInt } },
1746  { 743, kTypeInt , { kTypeInt } },
1747  { 744, kTypeInt , { } },
1748  { 745, kTypeVoid , { kTypeObject, kTypeFloat } },
1750  { 747, kTypeVoid , { kTypeString, kTypeFloat } },
1751  { 748, kTypeInt , { kTypeInt } },
1752  { 749, kTypeVoid , { } },
1753  { 750, kTypeVoid , { kTypeObject, kTypeInt } },
1754  { 751, kTypeInt , { kTypeObject } },
1755  { 752, kTypeObject , { kTypeObject } },
1756  { 753, kTypeVoid , { kTypeInt } },
1757  { 754, kTypeEngineType, { } },
1758  { 755, kTypeEngineType, { } },
1759  { 756, kTypeEngineType, { } },
1760  { 757, kTypeVoid , { } },
1761  { 758, kTypeVoid , { kTypeObject, kTypeInt } },
1762  { 759, kTypeVoid , { kTypeFloat } },
1763  { 760, kTypeVoid , { } },
1764  { 761, kTypeInt , { } },
1765  { 762, kTypeVoid , { } },
1766  { 763, kTypeVoid , { kTypeInt } },
1767  { 764, kTypeInt , { kTypeInt } },
1768  { 765, kTypeVoid , { kTypeFloat } },
1770  { 767, kTypeVoid , { kTypeInt, kTypeObject } },
1771  { 768, kTypeInt , { kTypeInt } },
1772  { 769, kTypeVoid , { } },
1773  { 770, kTypeEngineType, { kTypeInt } },
1774  { 771, kTypeInt , { } },
1775  { 772, kTypeInt , { } },
1776  { 773, kTypeVoid , { kTypeObject } },
1777  { 774, kTypeInt , { } },
1778  { 775, kTypeInt , { } },
1779  { 776, kTypeInt , { } },
1780  { 777, kTypeEngineType, { } },
1781  { 778, kTypeEngineType, { } },
1782  { 779, kTypeEngineType, { kTypeInt } },
1783  { 780, kTypeEngineType, { kTypeInt } },
1784  { 781, kTypeEngineType, { } },
1785  { 782, kTypeInt , { kTypeInt } },
1786  { 783, kTypeInt , { kTypeInt, kTypeObject } },
1787  { 784, kTypeInt , { kTypeInt, kTypeObject } },
1788  { 785, kTypeVoid , { } },
1789  { 786, kTypeVoid , { kTypeInt, kTypeObject } },
1790  { 787, kTypeVoid , { kTypeInt, kTypeObject } },
1792  { 789, kTypeVector , { kTypeObject } },
1793  { 790, kTypeVector , { kTypeVector } },
1794  { 791, kTypeVoid , { kTypeObject, kTypeInt } },
1795  { 792, kTypeVoid , { kTypeObject } },
1796  { 793, kTypeInt , { kTypeObject } },
1797  { 794, kTypeVoid , { kTypeObject, kTypeInt } },
1798  { 795, kTypeInt , { kTypeInt } },
1799  { 796, kTypeVoid , { kTypeInt, kTypeInt } },
1800  { 797, kTypeVoid , { kTypeInt, kTypeInt } },
1801  { 798, kTypeInt , { kTypeObject } },
1802  { 799, kTypeVoid , { kTypeString, kTypeInt } },
1803  { 800, kTypeVoid , { kTypeString, kTypeInt } },
1804  { 801, kTypeVoid , { kTypeObject, kTypeInt } },
1805  { 802, kTypeVoid , { kTypeObject, kTypeInt } },
1806  { 803, kTypeVoid , { kTypeObject } },
1807  { 804, kTypeVoid , { kTypeFloat } },
1808  { 805, kTypeInt , { } },
1809  { 806, kTypeVoid , { kTypeString, kTypeInt } },
1810  { 807, kTypeVoid , { kTypeInt } },
1811  { 808, kTypeVoid , { kTypeObject } },
1812  { 809, kTypeEngineType, { } },
1813  { 810, kTypeInt , { kTypeObject } },
1814  { 811, kTypeInt , { kTypeObject } },
1815  { 812, kTypeInt , { kTypeObject } },
1816  { 813, kTypeVoid , { kTypeObject, kTypeObject } },
1817  { 814, kTypeObject , { kTypeObject } },
1818  { 815, kTypeVector , { kTypeObject, kTypeInt } },
1819  { 816, kTypeInt , { kTypeObject, kTypeInt } },
1820  { 817, kTypeInt , { kTypeInt } },
1821  { 818, kTypeInt , { kTypeInt } },
1822  { 819, kTypeVoid , { kTypeInt } },
1825  { 822, kTypeVoid , { kTypeObject } },
1826  { 823, kTypeEngineType, { } },
1827  { 824, kTypeInt , { kTypeObject } },
1828  { 825, kTypeVoid , { kTypeVector } },
1829  { 826, kTypeVoid , { kTypeInt } },
1830  { 827, kTypeInt , { } },
1831  { 828, kTypeVoid , { kTypeObject, kTypeInt } },
1832  { 829, kTypeVoid , { kTypeObject, kTypeInt } },
1833  { 830, kTypeVoid , { kTypeObject, kTypeInt } },
1834  { 831, kTypeString , { } },
1835  { 832, kTypeFloat , { kTypeObject } },
1836  { 833, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1837  { 834, kTypeVoid , { kTypeObject, kTypeInt } },
1838  { 835, kTypeVoid , { kTypeObject } },
1839  { 836, kTypeInt , { kTypeInt, kTypeString } },
1840  { 837, kTypeInt , { kTypeInt, kTypeObject } },
1841  { 838, kTypeInt , { kTypeInt, kTypeInt } },
1842  { 839, kTypeObject , { kTypeInt, kTypeEngineType } },
1843  { 840, kTypeInt , { kTypeInt, kTypeObject } },
1844  { 841, kTypeObject , { kTypeObject } },
1845  { 842, kTypeInt , { kTypeObject } },
1846  { 843, kTypeVoid , { kTypeFloat } },
1847  { 844, kTypeInt , { kTypeObject } },
1848  { 845, kTypeObject , { } },
1849  { 846, kTypeInt , { kTypeInt } },
1850  { 847, kTypeVoid , { kTypeObject } },
1851  { 848, kTypeEngineType, { } },
1852  { 849, kTypeEngineType, { kTypeInt } },
1853  { 850, kTypeVoid , { kTypeObject, kTypeInt } },
1854  { 851, kTypeInt , { } },
1855  { 852, kTypeEngineType, { } },
1856  { 853, kTypeVoid , { } },
1857  { 854, kTypeVoid , { kTypeObject, kTypeInt } },
1858  { 855, kTypeVoid , { } },
1859  { 856, kTypeVoid , { kTypeInt } },
1860  { 857, kTypeVoid , { kTypeObject } },
1861  { 858, kTypeVoid , { kTypeInt } },
1862  { 859, kTypeVoid , { kTypeObject, kTypeInt } },
1863  { 860, kTypeVoid , { kTypeInt } },
1864  { 861, kTypeVoid , { kTypeInt } },
1865  { 862, kTypeVoid , { kTypeObject, kTypeInt } },
1866  { 863, kTypeVoid , { kTypeInt } },
1867  { 864, kTypeVoid , { kTypeInt, kTypeString } },
1868  { 865, kTypeVoid , { kTypeObject } },
1869  { 866, kTypeVoid , { kTypeObject } },
1870  { 867, kTypeVoid , { kTypeObject, kTypeInt } },
1871  { 868, kTypeVoid , { kTypeObject, kTypeEngineType } },
1872  { 869, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1873  { 870, kTypeInt , { kTypeInt, kTypeObject } },
1874  { 871, kTypeVoid , { kTypeObject, kTypeInt } },
1875  { 872, kTypeInt , { kTypeObject } },
1876  { 873, kTypeVoid , { kTypeInt, kTypeObject } },
1877  { 874, kTypeVoid , { kTypeInt, kTypeObject } },
1878  { 875, kTypeInt , { kTypeObject } },
1879  { 876, kTypeVoid , { } }
1880 };
1881 
1883 const Functions::FunctionDefaults Functions::kFunctionDefaults[] = {
1884  { 0, { } },
1885  { 1, { } },
1886  { 2, { &kDefaultInt18, &kDefaultInt9 } },
1887  { 3, { &kDefaultInt18, &kDefaultInt9 } },
1888  { 4, { } },
1889  { 5, { } },
1890  { 6, { } },
1891  { 7, { } },
1892  { 8, { &kDefaultIntMinus1 } },
1893  { 9, { } },
1894  { 10, { } },
1895  { 11, { } },
1896  { 12, { } },
1897  { 13, { } },
1898  { 14, { } },
1899  { 15, { } },
1900  { 16, { } },
1901  { 17, { } },
1902  { 18, { } },
1903  { 19, { } },
1904  { 20, { } },
1905  { 21, { &kDefaultFalse } },
1906  { 22, { &kDefaultFalse, &kDefaultFloat1_0 } },
1907  { 23, { &kDefaultFalse, &kDefaultFloat40_0 } },
1908  { 24, { } },
1909  { 25, { } },
1910  { 26, { } },
1911  { 27, { } },
1912  { 28, { } },
1913  { 29, { } },
1914  { 30, { } },
1915  { 31, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultInt0 } },
1916  { 32, { &kDefaultFalse } },
1917  { 33, { &kDefaultFalse } },
1918  { 34, { } },
1919  { 35, { } },
1920  { 36, { &kDefaultObjectSelf } },
1921  { 37, { &kDefaultFalse } },
1922  { 38, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
1923  { 39, { &kDefaultTalkVolumeTalk } },
1924  { 40, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
1925  { 41, { } },
1926  { 42, { } },
1927  { 43, { } },
1928  { 44, { } },
1929  { 45, { } },
1930  { 46, { } },
1931  { 47, { } },
1933  { 49, { &kDefaultObjectSelf } },
1934  { 50, { &kDefaultObjectSelf } },
1935  { 51, { } },
1936  { 52, { } },
1937  { 53, { } },
1938  { 54, { } },
1939  { 55, { &kDefaultObjectSelf } },
1940  { 56, { &kDefaultObjectSelf } },
1941  { 57, { } },
1942  { 58, { } },
1943  { 59, { } },
1944  { 60, { } },
1945  { 61, { } },
1946  { 62, { } },
1947  { 63, { } },
1948  { 64, { } },
1949  { 65, { } },
1950  { 66, { } },
1951  { 67, { } },
1952  { 68, { } },
1953  { 69, { } },
1954  { 70, { } },
1955  { 71, { } },
1956  { 72, { } },
1957  { 73, { } },
1958  { 74, { } },
1959  { 75, { } },
1960  { 76, { } },
1961  { 77, { } },
1962  { 78, { } },
1964  { 80, { } },
1965  { 81, { &kDefaultInt0 } },
1966  { 82, { &kDefaultInt0 } },
1967  { 83, { &kDefaultObjectSelf } },
1968  { 84, { } },
1969  { 85, { } },
1970  { 86, { } },
1971  { 87, { } },
1972  { 88, { } },
1973  { 89, { } },
1974  { 90, { } },
1975  { 91, { } },
1976  { 92, { } },
1977  { 93, { &kDefaultObjectInvalid, &kDefaultObjectTypeCreature } },
1978  { 94, { &kDefaultObjectInvalid, &kDefaultObjectTypeCreature } },
1979  { 95, { &kDefaultInt1 } },
1980  { 96, { &kDefaultInt1 } },
1981  { 97, { &kDefaultInt1 } },
1982  { 98, { &kDefaultInt1 } },
1983  { 99, { &kDefaultInt1 } },
1984  { 100, { &kDefaultInt1 } },
1985  { 101, { &kDefaultInt1 } },
1986  { 102, { &kDefaultInt1 } },
1987  { 103, { &kDefaultInt1 } },
1988  { 104, { } },
1989  { 105, { } },
1990  { 106, { } },
1991  { 107, { } },
1992  { 108, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1993  { 109, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1994  { 110, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1995  { 111, { } },
1996  { 112, { } },
1997  { 113, { } },
1998  { 114, { } },
2000  { 116, { &kDefaultInt0 } },
2001  { 117, { &kDefaultSavingThrowTypeAll } },
2002  { 118, { &kDefaultAttackBonusMisc } },
2003  { 119, { &kDefaultInt0 } },
2004  { 120, { &kDefaultDamageTypeUniversal } },
2005  { 121, { } },
2006  { 122, { } },
2007  { 123, { } },
2008  { 124, { } },
2009  { 125, { } },
2010  { 126, { } },
2011  { 127, { } },
2014  { 130, { } },
2015  { 131, { } },
2016  { 132, { } },
2017  { 133, { &kDefaultFalse, &kDefaultTrue, &kDefaultFalse } },
2018  { 134, { } },
2019  { 135, { } },
2020  { 136, { } },
2021  { 137, { } },
2022  { 138, { } },
2023  { 139, { } },
2024  { 140, { } },
2025  { 141, { } },
2027  { 143, { } },
2028  { 144, { } },
2029  { 145, { } },
2030  { 146, { &kDefaultTrue } },
2031  { 147, { &kDefaultTrue } },
2032  { 148, { } },
2033  { 149, { &kDefaultForcePowerAllForcePowers } },
2034  { 150, { } },
2035  { 151, { } },
2036  { 152, { &kDefaultInt0, &kDefaultInt0 } },
2037  { 153, { &kDefaultInt0 } },
2038  { 154, { } },
2039  { 155, { &kDefaultObjectSelf } },
2040  { 156, { } },
2041  { 157, { } },
2042  { 158, { } },
2043  { 159, { } },
2044  { 160, { } },
2045  { 161, { } },
2046  { 162, { &kDefaultObjectSelf } },
2047  { 163, { &kDefaultObjectSelf } },
2048  { 164, { } },
2049  { 165, { } },
2050  { 166, { } },
2051  { 167, { &kDefaultFloat0_0 } },
2052  { 168, { } },
2053  { 169, { } },
2054  { 170, { } },
2056  { 172, { &kDefaultObjectSelf } },
2057  { 173, { } },
2058  { 174, { } },
2059  { 175, { } },
2060  { 176, { &kDefaultInt0 } },
2061  { 177, { } },
2062  { 178, { } },
2063  { 179, { } },
2064  { 180, { &kDefaultFalse } },
2065  { 181, { &kDefaultObjectSelf, &kDefaultTrue } },
2066  { 182, { &kDefaultObjectSelf, &kDefaultTrue } },
2067  { 183, { &kDefaultObjectSelf, &kDefaultTrue } },
2068  { 184, { &kDefaultObjectSelf, &kDefaultTrue } },
2069  { 185, { } },
2070  { 186, { } },
2071  { 187, { } },
2072  { 188, { } },
2073  { 189, { } },
2074  { 190, { } },
2075  { 191, { } },
2076  { 192, { &kDefaultObjectSelf, &kDefaultTrue } },
2077  { 193, { &kDefaultObjectSelf, &kDefaultTrue } },
2078  { 194, { } },
2079  { 195, { } },
2080  { 196, { &kDefaultTrue } },
2081  { 197, { } },
2082  { 198, { } },
2083  { 199, { } },
2084  { 200, { &kDefaultInt0 } },
2085  { 201, { &kDefaultFalse } },
2086  { 202, { } },
2087  { 203, { &kDefaultStringEmpty } },
2089  { 205, { } },
2090  { 206, { } },
2091  { 207, { &kDefaultFalse } },
2092  { 208, { } },
2093  { 209, { } },
2094  { 210, { } },
2095  { 211, { } },
2096  { 212, { } },
2097  { 213, { } },
2098  { 214, { } },
2099  { 215, { } },
2100  { 216, { &kDefaultFloat0_0 } },
2101  { 217, { } },
2102  { 218, { } },
2103  { 219, { } },
2104  { 220, { &kDefaultFloat0_0 } },
2105  { 221, { &kDefaultTalkVolumeTalk } },
2106  { 222, { } },
2107  { 223, { } },
2108  { 224, { } },
2109  { 225, { } },
2111  { 227, { &kDefaultObjectTypeAll, &kDefaultObjectSelf, &kDefaultInt1 } },
2112  { 228, { &kDefaultInt1 } },
2113  { 229, { &kDefaultObjectSelf, &kDefaultInt1 } },
2114  { 230, { } },
2115  { 231, { } },
2116  { 232, { } },
2117  { 233, { } },
2119  { 235, { &kDefaultObjectSelf } },
2120  { 236, { &kDefaultObjectSelf } },
2121  { 237, { &kDefaultObjectSelf } },
2122  { 238, { } },
2123  { 239, { } },
2124  { 240, { &kDefaultTalkVolumeTalk } },
2126  { 242, { } },
2127  { 243, { &kDefaultFalse } },
2128  { 244, { &kDefaultTrue } },
2129  { 245, { } },
2130  { 246, { } },
2131  { 247, { } },
2132  { 248, { } },
2133  { 249, { } },
2134  { 250, { } },
2135  { 251, { } },
2136  { 252, { &kDefaultInt0 } },
2137  { 253, { } },
2138  { 254, { } },
2139  { 255, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
2140  { 256, { } },
2141  { 257, { } },
2142  { 258, { } },
2143  { 259, { } },
2144  { 260, { } },
2145  { 261, { } },
2146  { 262, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2147  { 263, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2148  { 264, { &kDefaultObjectSelf } },
2149  { 265, { } },
2150  { 266, { } },
2151  { 267, { } },
2152  { 268, { } },
2153  { 269, { &kDefaultInt0 } },
2154  { 270, { } },
2155  { 271, { } },
2156  { 272, { } },
2157  { 273, { } },
2158  { 274, { &kDefaultObjectInvalid } },
2159  { 275, { } },
2160  { 276, { &kDefaultObjectSelf } },
2161  { 277, { &kDefaultObjectSelf } },
2162  { 278, { &kDefaultObjectSelf } },
2163  { 279, { &kDefaultObjectSelf } },
2164  { 280, { &kDefaultObjectSelf } },
2165  { 281, { &kDefaultObjectSelf } },
2166  { 282, { } },
2167  { 283, { } },
2168  { 284, { } },
2169  { 285, { &kDefaultObjectSelf } },
2170  { 286, { &kDefaultObjectSelf } },
2171  { 287, { } },
2172  { 288, { &kDefaultInt0, &kDefaultObjectInvalid } },
2173  { 289, { &kDefaultObjectSelf } },
2174  { 290, { &kDefaultObjectSelf } },
2175  { 291, { } },
2176  { 292, { } },
2177  { 293, { } },
2178  { 294, { } },
2179  { 295, { } },
2180  { 296, { &kDefaultObjectSelf } },
2181  { 297, { &kDefaultObjectSelf } },
2182  { 298, { } },
2183  { 299, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
2184  { 300, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
2185  { 301, { } },
2186  { 302, { } },
2187  { 303, { } },
2188  { 304, { &kDefaultObjectSelf } },
2189  { 305, { } },
2190  { 306, { &kDefaultObjectSelf } },
2191  { 307, { &kDefaultObjectSelf, &kDefaultInt0 } },
2192  { 308, { &kDefaultObjectSelf, &kDefaultInt0, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
2193  { 309, { } },
2194  { 310, { } },
2195  { 311, { } },
2196  { 312, { } },
2197  { 313, { } },
2198  { 314, { } },
2199  { 315, { &kDefaultObjectSelf } },
2200  { 316, { &kDefaultObjectSelf } },
2201  { 317, { &kDefaultObjectSelf } },
2202  { 318, { &kDefaultObjectSelf } },
2203  { 319, { } },
2204  { 320, { &kDefaultObjectSelf, &kDefaultFalse } },
2205  { 321, { &kDefaultObjectSelf } },
2206  { 322, { } },
2207  { 323, { &kDefaultTrue, &kDefaultFalse } },
2208  { 324, { } },
2209  { 325, { } },
2210  { 326, { } },
2211  { 327, { &kDefaultObjectSelf } },
2212  { 328, { } },
2213  { 329, { } },
2214  { 330, { } },
2215  { 331, { &kDefaultObjectSelf } },
2216  { 332, { } },
2217  { 333, { } },
2218  { 334, { } },
2219  { 335, { } },
2220  { 336, { } },
2221  { 337, { } },
2222  { 338, { } },
2223  { 339, { &kDefaultObjectSelf } },
2224  { 340, { &kDefaultObjectSelf } },
2225  { 341, { &kDefaultObjectSelf } },
2226  { 342, { &kDefaultObjectSelf } },
2227  { 343, { &kDefaultObjectSelf } },
2228  { 344, { } },
2229  { 345, { } },
2230  { 346, { } },
2231  { 347, { } },
2232  { 348, { } },
2233  { 349, { } },
2234  { 350, { } },
2235  { 351, { } },
2236  { 352, { } },
2237  { 353, { } },
2238  { 354, { &kDefaultObjectInvalid, &kDefaultObjectInvalid, &kDefaultFalse, &kDefaultFalse, &kDefaultStringEmpty } },
2240  { 356, { } },
2241  { 357, { } },
2242  { 358, { } },
2243  { 359, { } },
2244  { 360, { &kDefaultFalse, &kDefaultFloat40_0 } },
2245  { 361, { } },
2246  { 362, { } },
2247  { 363, { } },
2248  { 364, { &kDefaultFalse, &kDefaultObjectInvalid } },
2249  { 365, { } },
2250  { 366, { } },
2251  { 367, { &kDefaultFalse } },
2252  { 368, { } },
2253  { 369, { } },
2254  { 370, { } },
2255  { 371, { } },
2256  { 372, { } },
2257  { 373, { } },
2258  { 374, { } },
2259  { 375, { } },
2260  { 376, { } },
2261  { 377, { &kDefaultObjectSelf } },
2262  { 378, { &kDefaultInt0, &kDefaultInt0 } },
2263  { 379, { } },
2264  { 380, { &kDefaultTrue } },
2265  { 381, { &kDefaultTrue } },
2266  { 382, { &kDefaultFalse, &kDefaultFloat30_0 } },
2268  { 384, { } },
2269  { 385, { &kDefaultInt1 } },
2270  { 386, { } },
2271  { 387, { } },
2272  { 388, { } },
2273  { 389, { } },
2274  { 390, { } },
2275  { 391, { } },
2276  { 392, { } },
2277  { 393, { } },
2278  { 394, { } },
2279  { 395, { } },
2280  { 396, { } },
2281  { 397, { } },
2282  { 398, { } },
2283  { 399, { &kDefaultObjectInvalid, &kDefaultFalse } },
2284  { 400, { &kDefaultObjectInvalid } },
2285  { 401, { } },
2286  { 402, { } },
2287  { 403, { } },
2288  { 404, { } },
2289  { 405, { } },
2290  { 406, { } },
2291  { 407, { } },
2292  { 408, { } },
2293  { 409, { &kDefaultObjectSelf } },
2294  { 410, { } },
2295  { 411, { } },
2296  { 412, { } },
2297  { 413, { } },
2298  { 414, { } },
2299  { 415, { } },
2300  { 416, { } },
2301  { 417, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
2302  { 418, { &kDefaultObjectSelf } },
2303  { 419, { } },
2304  { 420, { } },
2305  { 421, { &kDefaultTrue, &kDefaultFalse } },
2306  { 422, { &kDefaultObjectInvalid, &kDefaultFalse } },
2307  { 423, { } },
2308  { 424, { &kDefaultObjectInvalid } },
2309  { 425, { } },
2310  { 426, { } },
2311  { 427, { } },
2312  { 428, { &kDefaultFalse } },
2313  { 429, { &kDefaultFalse } },
2314  { 430, { } },
2315  { 431, { } },
2316  { 432, { } },
2317  { 433, { } },
2318  { 434, { } },
2319  { 435, { } },
2320  { 436, { } },
2321  { 437, { } },
2322  { 438, { } },
2323  { 439, { } },
2324  { 440, { } },
2325  { 441, { } },
2326  { 442, { } },
2327  { 443, { } },
2328  { 444, { &kDefaultFalse } },
2329  { 445, { } },
2330  { 446, { } },
2331  { 447, { &kDefaultAttackBonusMisc } },
2332  { 448, { &kDefaultDamageTypeUniversal } },
2333  { 449, { } },
2335  { 451, { } },
2336  { 452, { &kDefaultSavingThrowTypeAll } },
2337  { 453, { } },
2338  { 454, { } },
2339  { 455, { &kDefaultObjectSelf } },
2340  { 456, { } },
2341  { 457, { } },
2342  { 458, { } },
2343  { 459, { } },
2344  { 460, { } },
2345  { 461, { } },
2346  { 462, { } },
2347  { 463, { } },
2348  { 464, { } },
2349  { 465, { } },
2350  { 466, { } },
2351  { 467, { } },
2352  { 468, { } },
2353  { 469, { } },
2354  { 470, { } },
2355  { 471, { } },
2356  { 472, { &kDefaultInt0, &kDefaultInt0 } },
2357  { 473, { } },
2358  { 474, { } },
2359  { 475, { } },
2360  { 476, { } },
2361  { 477, { } },
2362  { 478, { } },
2363  { 479, { } },
2364  { 480, { } },
2365  { 481, { } },
2366  { 482, { } },
2367  { 483, { } },
2368  { 484, { } },
2369  { 485, { } },
2370  { 486, { &kDefaultObjectSelf } },
2371  { 487, { } },
2372  { 488, { &kDefaultObjectSelf, &kDefaultTrue } },
2373  { 489, { } },
2374  { 490, { &kDefaultObjectSelf } },
2375  { 491, { } },
2376  { 492, { } },
2377  { 493, { } },
2378  { 494, { } },
2379  { 495, { &kDefaultObjectSelf } },
2380  { 496, { } },
2381  { 497, { } },
2382  { 498, { } },
2383  { 499, { } },
2384  { 500, { } },
2385  { 501, { &kDefaultProjectilePathTypeDefault } },
2386  { 502, { &kDefaultProjectilePathTypeDefault } },
2387  { 503, { } },
2388  { 504, { } },
2389  { 505, { } },
2390  { 506, { } },
2391  { 507, { } },
2392  { 508, { } },
2394  { 510, { } },
2395  { 511, { } },
2396  { 512, { } },
2397  { 513, { } },
2398  { 514, { } },
2399  { 515, { &kDefaultVector0, &kDefaultIntMinus1 } },
2400  { 516, { } },
2401  { 517, { } },
2402  { 518, { } },
2403  { 519, { } },
2404  { 520, { } },
2405  { 521, { } },
2406  { 522, { &kDefaultObjectSelf } },
2407  { 523, { } },
2408  { 524, { } },
2409  { 525, { &kDefaultTrue } },
2410  { 526, { &kDefaultTrue } },
2411  { 527, { } },
2412  { 528, { } },
2413  { 529, { } },
2414  { 530, { } },
2415  { 531, { } },
2416  { 532, { } },
2417  { 533, { } },
2418  { 534, { } },
2419  { 535, { } },
2420  { 536, { } },
2421  { 537, { } },
2422  { 538, { } },
2423  { 539, { } },
2424  { 540, { } },
2425  { 541, { } },
2426  { 542, { } },
2427  { 543, { &kDefaultObjectSelf } },
2428  { 544, { &kDefaultObjectSelf, &kDefaultTrue } },
2429  { 545, { &kDefaultObjectSelf } },
2430  { 546, { } },
2431  { 547, { } },
2432  { 548, { } },
2433  { 549, { } },
2434  { 550, { } },
2435  { 551, { } },
2436  { 552, { } },
2437  { 553, { } },
2439  { 555, { } },
2440  { 556, { &kDefaultObjectSelf } },
2441  { 557, { } },
2442  { 558, { } },
2443  { 559, { } },
2444  { 560, { } },
2445  { 561, { } },
2446  { 562, { } },
2447  { 563, { &kDefaultFloat0_75 } },
2448  { 564, { &kDefaultTrue } },
2449  { 565, { } },
2450  { 566, { } },
2451  { 567, { } },
2452  { 568, { } },
2453  { 569, { } },
2454  { 570, { } },
2455  { 571, { } },
2456  { 572, { } },
2457  { 573, { } },
2458  { 574, { } },
2459  { 575, { } },
2460  { 576, { } },
2461  { 577, { } },
2462  { 578, { } },
2463  { 579, { } },
2464  { 580, { } },
2465  { 581, { } },
2466  { 582, { } },
2467  { 583, { } },
2468  { 584, { } },
2469  { 585, { } },
2470  { 586, { &kDefaultInt1, &kDefaultInt0, &kDefaultInt0 } },
2471  { 587, { } },
2472  { 588, { } },
2473  { 589, { } },
2474  { 590, { &kDefaultInt0 } },
2475  { 591, { } },
2476  { 592, { } },
2477  { 593, { } },
2478  { 594, { } },
2479  { 595, { } },
2480  { 596, { } },
2481  { 597, { &kDefaultObjectSelf } },
2482  { 598, { } },
2483  { 599, { &kDefaultObjectSelf } },
2484  { 600, { &kDefaultObjectSelf } },
2485  { 601, { &kDefaultObjectSelf } },
2486  { 602, { &kDefaultObjectSelf } },
2487  { 603, { &kDefaultObjectSelf } },
2488  { 604, { } },
2489  { 605, { } },
2490  { 606, { } },
2491  { 607, { } },
2492  { 608, { } },
2493  { 609, { } },
2494  { 610, { } },
2495  { 611, { } },
2496  { 612, { } },
2497  { 613, { } },
2498  { 614, { } },
2499  { 615, { } },
2500  { 616, { } },
2501  { 617, { } },
2502  { 618, { } },
2503  { 619, { } },
2504  { 620, { } },
2505  { 621, { } },
2506  { 622, { } },
2507  { 623, { } },
2508  { 624, { } },
2509  { 625, { } },
2510  { 626, { } },
2511  { 627, { } },
2512  { 628, { } },
2513  { 629, { } },
2514  { 630, { } },
2515  { 631, { } },
2516  { 632, { } },
2517  { 633, { } },
2518  { 634, { } },
2519  { 635, { } },
2520  { 636, { } },
2521  { 637, { } },
2522  { 638, { } },
2523  { 639, { } },
2524  { 640, { } },
2525  { 641, { } },
2526  { 642, { } },
2527  { 643, { } },
2528  { 644, { } },
2529  { 645, { } },
2530  { 646, { } },
2531  { 647, { } },
2532  { 648, { } },
2533  { 649, { } },
2534  { 650, { } },
2535  { 651, { } },
2536  { 652, { } },
2537  { 653, { } },
2538  { 654, { } },
2539  { 655, { } },
2540  { 656, { } },
2541  { 657, { } },
2542  { 658, { } },
2543  { 659, { } },
2544  { 660, { } },
2545  { 661, { } },
2546  { 662, { } },
2547  { 663, { } },
2548  { 664, { } },
2549  { 665, { } },
2550  { 666, { } },
2551  { 667, { } },
2552  { 668, { } },
2553  { 669, { &kDefaultStringWorldEntry } },
2554  { 670, { } },
2555  { 671, { &kDefaultIntMinus1, &kDefaultIntMinus1 } },
2556  { 672, { } },
2557  { 673, { } },
2558  { 674, { } },
2559  { 675, { } },
2560  { 676, { } },
2561  { 677, { } },
2562  { 678, { &kDefaultTrue, &kDefaultFalse } },
2563  { 679, { } },
2564  { 680, { } },
2565  { 681, { } },
2566  { 682, { } },
2567  { 683, { } },
2568  { 684, { } },
2569  { 685, { } },
2570  { 686, { } },
2571  { 687, { } },
2572  { 688, { } },
2573  { 689, { } },
2574  { 690, { } },
2575  { 691, { } },
2576  { 692, { } },
2577  { 693, { } },
2578  { 694, { } },
2579  { 695, { } },
2580  { 696, { } },
2581  { 697, { } },
2582  { 698, { } },
2583  { 699, { } },
2584  { 700, { } },
2585  { 701, { } },
2586  { 702, { &kDefaultObjectInvalid, &kDefaultObjectInvalid, &kDefaultInt0 } },
2587  { 703, { } },
2588  { 704, { } },
2589  { 705, { } },
2590  { 706, { } },
2591  { 707, { } },
2592  { 708, { } },
2593  { 709, { } },
2594  { 710, { } },
2595  { 711, { } },
2597  { 713, { } },
2598  { 714, { } },
2599  { 715, { } },
2600  { 716, { } },
2601  { 717, { } },
2602  { 718, { } },
2605  { 721, { &kDefaultObjectSelf } },
2606  { 722, { &kDefaultObjectSelf } },
2607  { 723, { &kDefaultObjectSelf } },
2608  { 724, { &kDefaultObjectSelf } },
2609  { 725, { &kDefaultObjectSelf } },
2610  { 726, { &kDefaultObjectSelf } },
2611  { 727, { &kDefaultObjectSelf } },
2612  { 728, { &kDefaultObjectSelf } },
2613  { 729, { } },
2614  { 730, { } },
2615  { 731, { &kDefaultObjectSelf } },
2616  { 732, { &kDefaultObjectSelf } },
2617  { 733, { &kDefaultFalse } },
2618  { 734, { } },
2619  { 735, { } },
2620  { 736, { } },
2621  { 737, { } },
2622  { 738, { } },
2623  { 739, { } },
2624  { 740, { } },
2625  { 741, { } },
2626  { 742, { } },
2627  { 743, { } },
2628  { 744, { } },
2629  { 745, { } },
2630  { 746, { } },
2631  { 747, { } },
2632  { 748, { } },
2633  { 749, { } },
2634  { 750, { } },
2635  { 751, { } },
2636  { 752, { &kDefaultObjectSelf } },
2637  { 753, { } },
2638  { 754, { } },
2639  { 755, { } },
2640  { 756, { } },
2641  { 757, { } },
2642  { 758, { } },
2643  { 759, { } },
2644  { 760, { } },
2645  { 761, { } },
2646  { 762, { } },
2647  { 763, { &kDefaultInt1 } },
2648  { 764, { } },
2649  { 765, { &kDefaultFloat1_0 } },
2650  { 766, { &kDefaultFalse } },
2651  { 767, { } },
2652  { 768, { } },
2653  { 769, { } },
2654  { 770, { } },
2655  { 771, { } },
2656  { 772, { } },
2657  { 773, { } },
2658  { 774, { } },
2659  { 775, { } },
2660  { 776, { } },
2661  { 777, { } },
2662  { 778, { } },
2663  { 779, { } },
2664  { 780, { } },
2665  { 781, { } },
2666  { 782, { } },
2667  { 783, { &kDefaultObjectSelf } },
2668  { 784, { &kDefaultObjectSelf } },
2669  { 785, { } },
2670  { 786, { } },
2671  { 787, { } },
2672  { 788, { } },
2673  { 789, { } },
2674  { 790, { } },
2675  { 791, { } },
2676  { 792, { } },
2677  { 793, { } },
2678  { 794, { &kDefaultObjectSelf, &kDefaultTrue } },
2679  { 795, { } },
2680  { 796, { } },
2681  { 797, { } },
2682  { 798, { } },
2683  { 799, { } },
2684  { 800, { } },
2685  { 801, { } },
2686  { 802, { } },
2687  { 803, { } },
2688  { 804, { } },
2689  { 805, { } },
2690  { 806, { &kDefaultTrue } },
2691  { 807, { &kDefaultTrue } },
2692  { 808, { } },
2693  { 809, { } },
2694  { 810, { } },
2695  { 811, { } },
2696  { 812, { } },
2697  { 813, { } },
2698  { 814, { } },
2699  { 815, { } },
2700  { 816, { } },
2701  { 817, { } },
2702  { 818, { } },
2703  { 819, { } },
2704  { 820, { &kDefaultObjectInvalid, &kDefaultObjectInvalid } },
2705  { 821, { } },
2706  { 822, { } },
2707  { 823, { } },
2708  { 824, { } },
2709  { 825, { } },
2710  { 826, { } },
2711  { 827, { } },
2712  { 828, { } },
2713  { 829, { } },
2714  { 830, { } },
2715  { 831, { } },
2716  { 832, { } },
2717  { 833, { } },
2718  { 834, { } },
2719  { 835, { } },
2720  { 836, { } },
2721  { 837, { } },
2722  { 838, { } },
2723  { 839, { } },
2724  { 840, { } },
2725  { 841, { &kDefaultObjectSelf } },
2726  { 842, { &kDefaultObjectSelf } },
2727  { 843, { &kDefaultFloat2_5 } },
2728  { 844, { &kDefaultObjectSelf } },
2729  { 845, { } },
2730  { 846, { } },
2731  { 847, { } },
2732  { 848, { } },
2733  { 849, { } },
2734  { 850, { } },
2735  { 851, { } },
2736  { 852, { } },
2737  { 853, { } },
2738  { 854, { } },
2739  { 855, { } },
2740  { 856, { &kDefaultFalse } },
2741  { 857, { } },
2742  { 858, { &kDefaultFalse } },
2743  { 859, { } },
2744  { 860, { &kDefaultFalse } },
2745  { 861, { } },
2746  { 862, { } },
2747  { 863, { } },
2748  { 864, { &kDefaultStringEmpty } },
2749  { 865, { } },
2750  { 866, { } },
2751  { 867, { } },
2752  { 868, { } },
2753  { 869, { } },
2754  { 870, { &kDefaultObjectSelf } },
2755  { 871, { } },
2756  { 872, { } },
2757  { 873, { } },
2758  { 874, { } },
2759  { 875, { } },
2760  { 876, { } }
2761 };
2762 
2763 } // End of namespace KotOR2
2764 
2765 } // End of namespace Engines
2766 
2767 #endif // ENGINES_KOTOR2_SCRIPT_TABLES_H
void sqrt(Aurora::NWScript::FunctionContext &ctx)
void vector(Aurora::NWScript::FunctionContext &ctx)
void printInteger(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundPlay(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeNone((int32) 0)
static const Aurora::NWScript::Variable kDefaultObjectInvalid & kDefaultValueObjectInvalid
A class holding an UTF-8 string.
Definition: ustring.h:48
void musicBackgroundGetDayTrack(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFalse((int32) 0)
static const Aurora::NWScript::Variable kDefaultInt1((int32) 1)
void writeTimestampedLogEntry(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat2_5(2.5f)
void findSubString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStringEmpty(Common::UString(""))
void objectToString(Aurora::NWScript::FunctionContext &ctx)
void fabs(Aurora::NWScript::FunctionContext &ctx)
void d3(Aurora::NWScript::FunctionContext &ctx)
void acos(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultAttackBonusMisc((int32) 0)
static const Aurora::NWScript::Variable kDefaultAlignmentAll((int32) 0)
void getFirstPC(Aurora::NWScript::FunctionContext &ctx)
void getModule(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt0((int32) 0)
static const Aurora::NWScript::Variable kDefaultForcePowerAllForcePowers((int32) - 1)
static const Aurora::NWScript::Variable kDefaultObjectTypeCreature((int32) 1)
void insertString(Aurora::NWScript::FunctionContext &ctx)
static const FunctionSignature kFunctionSignatures[]
The table defining the signature (return type and type of parameters) of each engine function...
Definition: functions.h:71
void printString(Aurora::NWScript::FunctionContext &ctx)
void getStringLeft(Aurora::NWScript::FunctionContext &ctx)
void getStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
void intToHexString(Aurora::NWScript::FunctionContext &ctx)
void d2(Aurora::NWScript::FunctionContext &ctx)
void tan(Aurora::NWScript::FunctionContext &ctx)
void floatToInt(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeAll((int32) 0)
static const Aurora::NWScript::Variable kDefaultFloat40_0(40.0f)
static const Aurora::NWScript::Variable kDefaultTrue((int32) 1)
void getLastClosedBy(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt9((int32) 9)
void asin(Aurora::NWScript::FunctionContext &ctx)
An object in a Star Wars: Knights of the Old Republic II - The Sith Lords area.
void getIsOpen(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultDamageTypeUniversal((int32) 8)
void delayCommand(Aurora::NWScript::FunctionContext &ctx)
void abs(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultTalkVolumeTalk((int32) 0)
Basic Star Wars: Knights of the Old Republic II - The Sith Lords type definitions.
void printFloat(Aurora::NWScript::FunctionContext &ctx)
void getIsPC(Aurora::NWScript::FunctionContext &ctx)
void printVector(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectSelf & kDefaultValueObjectSelf
void printObject(Aurora::NWScript::FunctionContext &ctx)
void getObjectByTag(Aurora::NWScript::FunctionContext &ctx)
void getNextPC(Aurora::NWScript::FunctionContext &ctx)
Fake value to describe the calling object in a script.
Definition: types.h:52
void vectorMagnitude(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt18((int32) 18)
void d4(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat0_75(0.75f)
static const Aurora::NWScript::Variable kDefaultObjectTypeAll((int32) 32767)
void intToFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat30_0(30.0f)
void getStringRight(Aurora::NWScript::FunctionContext &ctx)
void sin(Aurora::NWScript::FunctionContext &ctx)
void getLocalNumber(Aurora::NWScript::FunctionContext &ctx)
void floatToString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultACDodgeBonus((int32) 0)
static const Aurora::NWScript::Variable kDefaultPersistentZoneActive((int32) 0)
void getLocked(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultDamagePowerNormal((int32) 0)
void musicBackgroundChangeNight(Aurora::NWScript::FunctionContext &ctx)
void getLocalBoolean(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeInvalid((int32) 32767)
"effect", "event", "location", "talent"...
Definition: types.h:43
void log(Aurora::NWScript::FunctionContext &ctx)
void playMovie(Aurora::NWScript::FunctionContext &ctx)
void isObjectPartyMember(Aurora::NWScript::FunctionContext &ctx)
static const FunctionDefaults kFunctionDefaults[]
The table defining the default values for the parameters of each engine function. ...
Definition: functions.h:72
void getIsObjectValid(Aurora::NWScript::FunctionContext &ctx)
void setLocalNumber(Aurora::NWScript::FunctionContext &ctx)
void sendMessageToPC(Aurora::NWScript::FunctionContext &ctx)
void vectorNormalize(Aurora::NWScript::FunctionContext &ctx)
void setLocked(Aurora::NWScript::FunctionContext &ctx)
void getStringLowerCase(Aurora::NWScript::FunctionContext &ctx)
void getStringUpperCase(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultIntMinus1((int32) - 1)
static const Aurora::NWScript::Variable kDefaultACVsDamageTypeAll((int32) 8199)
void musicBackgroundGetNightTrack(Aurora::NWScript::FunctionContext &ctx)
void getLastUsedBy(Aurora::NWScript::FunctionContext &ctx)
void assignCommand(Aurora::NWScript::FunctionContext &ctx)
void d10(Aurora::NWScript::FunctionContext &ctx)
Any other type.
Definition: types.h:48
void actionStartConversation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultProjectilePathTypeDefault((int32) 0)
void d12(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeDay(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f)
static const FunctionPointer kFunctionPointers[]
The table defining the name and function pointer of each engine function.
Definition: functions.h:70
void getExitingObject(Aurora::NWScript::FunctionContext &ctx)
void getStringLength(Aurora::NWScript::FunctionContext &ctx)
void getEnteringObject(Aurora::NWScript::FunctionContext &ctx)
void d8(Aurora::NWScript::FunctionContext &ctx)
void pow(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat1_0(1.0f)
void d20(Aurora::NWScript::FunctionContext &ctx)
void d6(Aurora::NWScript::FunctionContext &ctx)
void getClickingObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStringWorldEntry(Common::UString("World Entry"))
void stringToInt(Aurora::NWScript::FunctionContext &ctx)
void atan(Aurora::NWScript::FunctionContext &ctx)
void d100(Aurora::NWScript::FunctionContext &ctx)
void intToString(Aurora::NWScript::FunctionContext &ctx)
void setLocalBoolean(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultConversationTypeCinematic((int32) 0)
void getLastOpenedBy(Aurora::NWScript::FunctionContext &ctx)
void cos(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundStop(Aurora::NWScript::FunctionContext &ctx)
void random(Aurora::NWScript::FunctionContext &ctx)
int32_t int32
Definition: types.h:203
void getSubString(Aurora::NWScript::FunctionContext &ctx)
void stringToFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat0_0(0.0f)