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_WITCHER_NWSCRIPT_FUNCTION_TABLES_H
51 #define ENGINES_WITCHER_NWSCRIPT_FUNCTION_TABLES_H
52 
55 
56 namespace Engines {
57 
58 namespace Witcher {
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 Witcher::Object kDefaultValueObjectInvalid(kObjectTypeInvalid);
75 static Witcher::Object kDefaultValueObjectSelf (kObjectTypeSelf);
76 
82 
84 static const Aurora::NWScript::Variable kDefaultFloat0_0 ( 0.0f);
85 static const Aurora::NWScript::Variable kDefaultFloat0_5 ( 0.5f);
86 static const Aurora::NWScript::Variable kDefaultFloat1_0 ( 1.0f);
87 static const Aurora::NWScript::Variable kDefaultFloat30_0 ( 30.0f);
88 static const Aurora::NWScript::Variable kDefaultFloat40_0 ( 40.0f);
89 
90 static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f);
91 
93 
94 static const Aurora::NWScript::Variable kDefaultObjectInvalid(&kDefaultValueObjectInvalid);
95 static const Aurora::NWScript::Variable kDefaultObjectSelf (&kDefaultValueObjectSelf);
96 
97 // TODO: Add the relevant enums to types.h, and use these values.
98 
108 
110 
111 
114  { 0, "Random" , &Functions::random },
115  { 1, "PrintString" , &Functions::printString },
116  { 2, "PrintFloat" , &Functions::printFloat },
117  { 3, "FloatToString" , &Functions::floatToString },
118  { 4, "PrintInteger" , &Functions::printInteger },
119  { 5, "PrintObject" , &Functions::printObject },
120  { 6, "AssignCommand" , &Functions::assignCommand },
121  { 7, "DelayCommand" , &Functions::delayCommand },
122  { 8, "ExecuteScript" , &Functions::executeScript },
123  { 9, "ClearAllActions" , 0 },
124  { 10, "SetFacing" , 0 },
125  { 11, "SetCalendar" , 0 },
126  { 12, "SetTime" , 0 },
127  { 13, "GetCalendarYear" , 0 },
128  { 14, "GetCalendarMonth" , 0 },
129  { 15, "GetCalendarDay" , 0 },
130  { 16, "GetTimeHour" , 0 },
131  { 17, "GetTimeMinute" , 0 },
132  { 18, "GetTimeSecond" , 0 },
133  { 19, "GetTimeMillisecond" , 0 },
134  { 20, "ActionRandomWalk" , 0 },
135  { 21, "ActionMoveToLocation" , &Functions::actionMoveToLocation },
136  { 22, "ActionMoveToObject" , &Functions::actionMoveToObject },
137  { 23, "ActionMoveAwayFromObject" , 0 },
138  { 24, "GetArea" , &Functions::getArea },
139  { 25, "GetEnteringObject" , &Functions::getEnteringObject },
140  { 26, "GetExitingObject" , &Functions::getExitingObject },
141  { 27, "GetPosition" , &Functions::getPosition },
142  { 28, "GetFacing" , 0 },
143  { 29, "GetItemPossessor" , 0 },
144  { 30, "GetItemPossessedBy" , 0 },
145  { 31, "CreateItemOnObject" , 0 },
146  { 32, "ActionEquipItem" , 0 },
147  { 33, "ActionUnequipItem" , 0 },
148  { 34, "ActionPickUpItem" , 0 },
149  { 35, "ActionPutDownItem" , 0 },
150  { 36, "GetLastAttacker" , 0 },
151  { 37, "ActionAttack" , 0 },
152  { 38, "GetNearestCreature" , &Functions::getNearestCreature },
153  { 39, "ActionSpeakString" , &Functions::actionSpeakString },
154  { 40, "ActionPlayAnimation" , 0 },
155  { 41, "GetDistanceToObject" , &Functions::getDistanceToObject },
156  { 42, "GetIsObjectValid" , &Functions::getIsObjectValid },
157  { 43, "ActionOpenDoor" , &Functions::actionOpenDoor },
158  { 44, "ActionCloseDoor" , &Functions::actionCloseDoor },
159  { 45, "SetCameraFacing" , 0 },
160  { 46, "PlaySound" , &Functions::playSound },
161  { 47, "GetSpellTargetObject" , 0 },
162  { 48, "ActionCastSpellAtObject" , 0 },
163  { 49, "GetCurrentVitalityPoints" , 0 },
164  { 50, "GetMaxVitalityPoints" , 0 },
165  { 51, "GetLocalInt" , &Functions::getLocalInt },
166  { 52, "GetLocalFloat" , &Functions::getLocalFloat },
167  { 53, "GetLocalString" , &Functions::getLocalString },
168  { 54, "GetLocalObject" , &Functions::getLocalObject },
169  { 55, "SetLocalInt" , &Functions::setLocalInt },
170  { 56, "SetLocalFloat" , &Functions::setLocalFloat },
171  { 57, "SetLocalString" , &Functions::setLocalString },
172  { 58, "SetLocalObject" , &Functions::setLocalObject },
173  { 59, "GetStringLength" , &Functions::getStringLength },
174  { 60, "GetStringUpperCase" , &Functions::getStringUpperCase },
175  { 61, "GetStringLowerCase" , &Functions::getStringLowerCase },
176  { 62, "GetStringRight" , &Functions::getStringRight },
177  { 63, "GetStringLeft" , &Functions::getStringLeft },
178  { 64, "InsertString" , &Functions::insertString },
179  { 65, "GetSubString" , &Functions::getSubString },
180  { 66, "FindSubString" , &Functions::findSubString },
181  { 67, "fabs" , &Functions::fabs },
182  { 68, "cos" , &Functions::cos },
183  { 69, "sin" , &Functions::sin },
184  { 70, "tan" , &Functions::tan },
185  { 71, "acos" , &Functions::acos },
186  { 72, "asin" , &Functions::asin },
187  { 73, "atan" , &Functions::atan },
188  { 74, "log" , &Functions::log },
189  { 75, "pow" , &Functions::pow },
190  { 76, "sqrt" , &Functions::sqrt },
191  { 77, "abs" , &Functions::abs },
192  { 78, "EffectHeal" , 0 },
193  { 79, "EffectDamage" , 0 },
194  { 80, "GetCurrentScriptSpellID" , 0 },
195  { 81, "GetNumRunningEffectsApplied" , 0 },
196  { 82, "EffectResurrection" , 0 },
197  { 83, "EffectSummonCreature" , 0 },
198  { 84, "AddAbility" , 0 },
199  { 85, "GetFirstEffect" , 0 },
200  { 86, "GetNextEffect" , 0 },
201  { 87, "RemoveEffect" , 0 },
202  { 88, "GetIsEffectValid" , 0 },
203  { 89, "GetEffectDurationType" , 0 },
204  { 90, "GetEffectSubType" , 0 },
205  { 91, "GetEffectCreator" , 0 },
206  { 92, "IntToString" , &Functions::intToString },
207  { 93, "GetFirstObjectInArea" , 0 },
208  { 94, "GetNextObjectInArea" , 0 },
209  { 95, "d2" , &Functions::d2 },
210  { 96, "d3" , &Functions::d3 },
211  { 97, "d4" , &Functions::d4 },
212  { 98, "d6" , &Functions::d6 },
213  { 99, "d8" , &Functions::d8 },
214  { 100, "d10" , &Functions::d10 },
215  { 101, "d12" , &Functions::d12 },
216  { 102, "d20" , &Functions::d20 },
217  { 103, "d100" , &Functions::d100 },
218  { 104, "VectorMagnitude" , &Functions::vectorMagnitude },
219  { 105, "GetPerceptionRange" , 0 },
220  { 106, "GetObjectType" , &Functions::getObjectType },
221  { 107, "GetRacialType" , 0 },
222  { 108, "AddRunningEffect" , 0 },
223  { 109, "TalentItem" , 0 },
224  { 110, "SetDoorUsable" , 0 },
225  { 111, "RemoveRunningEffect" , 0 },
226  { 112, "MagicalEffect" , 0 },
227  { 113, "SupernaturalEffect" , 0 },
228  { 114, "ExtraordinaryEffect" , 0 },
229  { 115, "RemoveAbility" , 0 },
230  { 116, "HasAbility" , 0 },
231  { 117, "GetCurrentAttribute" , 0 },
232  { 118, "AddSequenceAttack" , 0 },
233  { 119, "AddAttackSequence" , 0 },
234  { 120, "RemoveAttackSequence" , 0 },
235  { 121, "RoundsToSeconds" , 0 },
236  { 122, "HoursToSeconds" , 0 },
237  { 123, "TurnsToSeconds" , 0 },
238  { 124, "ApplyForce" , 0 },
239  { 125, "TestDirectLine" , 0 },
240  { 126, "GetIsAggressive" , 0 },
241  { 127, "SetAllowAggressiveAttitude" , 0 },
242  { 128, "GetFirstObjectInShape" , 0 },
243  { 129, "GetNextObjectInShape" , 0 },
244  { 130, "GetLastActionResult" , 0 },
245  { 131, "SignalEvent" , 0 },
246  { 132, "EventUserDefined" , 0 },
247  { 133, "EffectDeath" , 0 },
248  { 134, "EffectKnockdown" , 0 },
249  { 135, "ActionGiveItem" , 0 },
250  { 136, "ActionTakeItem" , 0 },
251  { 137, "VectorNormalize" , &Functions::vectorNormalize },
252  { 138, "ReplaceSequenceAttack" , 0 },
253  { 139, "GetAbilityScore" , 0 },
254  { 140, "GetIsDead" , 0 },
255  { 141, "PrintVector" , &Functions::printVector },
256  { 142, "Vector" , &Functions::vector },
257  { 143, "SetFacingPoint" , 0 },
258  { 144, "AngleToVector" , 0 },
259  { 145, "VectorToAngle" , 0 },
260  { 146, "GetCurrentEndurancePoints" , 0 },
261  { 147, "GetMaxEndurancePoints" , 0 },
262  { 148, "EffectParalyze" , 0 },
263  { 149, "FindSpellByTypeAndLevel" , 0 },
264  { 150, "EffectDeaf" , 0 },
265  { 151, "GetDistanceBetween" , 0 },
266  { 152, "SetLocalLocation" , 0 },
267  { 153, "GetLocalLocation" , 0 },
268  { 154, "EffectSleep" , 0 },
269  { 155, "GetItemInSlot" , 0 },
270  { 156, "EffectCharmed" , 0 },
271  { 157, "EffectConfused" , 0 },
272  { 158, "EffectFrightened" , 0 },
273  { 159, "EffectDominated" , 0 },
274  { 160, "EffectDazed" , 0 },
275  { 161, "EffectStunned" , 0 },
276  { 162, "SetCommandable" , 0 },
277  { 163, "GetCommandable" , 0 },
278  { 164, "EffectRegenerate" , 0 },
279  { 165, "EffectMovementSpeedIncrease" , 0 },
280  { 166, "GetHitDice" , 0 },
281  { 167, "ActionForceFollowObject" , 0 },
282  { 168, "GetTag" , &Functions::getTag },
283  { 169, "AddKnownSpell" , 0 },
284  { 170, "GetEffectType" , 0 },
285  { 171, "EffectAreaOfEffect" , 0 },
286  { 172, "GetFactionEqual" , 0 },
287  { 173, "ChangeFaction" , 0 },
288  { 174, "GetIsListening" , 0 },
289  { 175, "SetListening" , 0 },
290  { 176, "SetListenPattern" , 0 },
291  { 177, "TestStringAgainstPattern" , 0 },
292  { 178, "GetMatchedSubstring" , 0 },
293  { 179, "GetMatchedSubstringsCount" , 0 },
294  { 180, "EffectVisualEffect" , 0 },
295  { 181, "GetFactionWeakestMember" , 0 },
296  { 182, "GetFactionStrongestMember" , 0 },
297  { 183, "GetFactionMostDamagedMember" , 0 },
298  { 184, "GetFactionLeastDamagedMember" , 0 },
299  { 185, "GetFactionGold" , 0 },
300  { 186, "GetStoryPhaseByNPC" , 0 },
301  { 187, "SetPerceptionRangeType" , 0 },
302  { 188, "GetCurrentNonLethalDamagePoints" , 0 },
303  { 189, "GetFactionAverageLevel" , 0 },
304  { 190, "GetFactionAverageXP" , 0 },
305  { 191, "HasProfile" , 0 },
306  { 192, "GetFactionWorstAC" , 0 },
307  { 193, "GetFactionBestAC" , 0 },
308  { 194, "ActionSit" , 0 },
309  { 195, "GetListenPatternNumber" , 0 },
310  { 196, "ActionJumpToObject" , &Functions::actionJumpToObject },
311  { 197, "GetWaypointByTag" , &Functions::getWaypointByTag },
312  { 198, "GetTransitionTarget" , 0 },
313  { 199, "EffectLinkEffects" , 0 },
314  { 200, "GetObjectByTag" , &Functions::getObjectByTag },
315  { 201, "ItemIsUnarmedCombatWeapon" , 0 },
316  { 202, "ActionWait" , 0 },
317  { 203, "SetAreaTransitionBMP" , 0 },
318  { 204, "ActionStartConversation" , 0 },
319  { 205, "ActionPauseConversation" , 0 },
320  { 206, "ActionResumeConversation" , 0 },
321  { 207, "SetHostileToEnemiesOf" , 0 },
322  { 208, "GetStoryNPCObject" , 0 },
323  { 209, "GetStoryNPC" , 0 },
324  { 210, "GetSittingCreature" , 0 },
325  { 211, "GetGoingToBeAttackedBy" , 0 },
326  { 212, "RemoveKnownSpell" , 0 },
327  { 213, "GetLocation" , &Functions::getLocation },
328  { 214, "ActionJumpToLocation" , &Functions::actionJumpToLocation },
329  { 215, "Location" , &Functions::location },
330  { 216, "ApplyEffectAtLocation" , 0 },
331  { 217, "GetIsPC" , &Functions::getIsPC },
332  { 218, "FeetToMeters" , 0 },
333  { 219, "YardsToMeters" , 0 },
334  { 220, "ApplyEffectToObject" , 0 },
335  { 221, "SpeakString" , &Functions::speakString },
336  { 222, "GetSpellTargetLocation" , 0 },
337  { 223, "GetPositionFromLocation" , &Functions::getPositionFromLocation },
338  { 224, "GetAreaFromLocation" , 0 },
339  { 225, "GetFacingFromLocation" , 0 },
340  { 226, "GetNearestCreatureToLocation" , 0 },
341  { 227, "GetNearestObject" , &Functions::getNearestObject },
342  { 228, "GetNearestObjectToLocation" , 0 },
343  { 229, "GetNearestObjectByTag" , &Functions::getNearestObjectByTag },
344  { 230, "IntToFloat" , &Functions::intToFloat },
345  { 231, "FloatToInt" , &Functions::floatToInt },
346  { 232, "StringToInt" , &Functions::stringToInt },
347  { 233, "StringToFloat" , &Functions::stringToFloat },
348  { 234, "ActionCastSpellAtLocation" , 0 },
349  { 235, "GetStoryPhase" , 0 },
350  { 236, "GetSpawnSetSpawnPhase" , 0 },
351  { 237, "GetStoryNPCSpawnPhase" , 0 },
352  { 238, "GetPCSpeaker" , 0 },
353  { 239, "GetStringByStrRef" , &Functions::getStringByStrRef },
354  { 240, "ActionSpeakStringByStrRef" , 0 },
355  { 241, "DestroyObject" , 0 },
356  { 242, "GetModule" , &Functions::getModule },
357  { 243, "CreateObject" , 0 },
358  { 244, "EventSpellCastAt" , 0 },
359  { 245, "GetLastSpellCaster" , 0 },
360  { 246, "GetLastSpell" , 0 },
361  { 247, "GetUserDefinedEventNumber" , 0 },
362  { 248, "GetSpellId" , 0 },
363  { 249, "RandomName" , 0 },
364  { 250, "GetSpellIntensity" , 0 },
365  { 251, "RemoveEffectByType" , 0 },
366  { 252, "EffectSilence" , 0 },
367  { 253, "GetName" , &Functions::getName },
368  { 254, "GetLastSpeaker" , 0 },
369  { 255, "BeginConversation" , 0 },
370  { 256, "GetLastPerceived" , 0 },
371  { 257, "GetLastPerceptionHeard" , 0 },
372  { 258, "GetLastPerceptionInaudible" , 0 },
373  { 259, "GetLastPerceptionSeen" , 0 },
374  { 260, "GetLastClosedBy" , &Functions::getLastClosedBy },
375  { 261, "GetLastPerceptionVanished" , 0 },
376  { 262, "GetFirstInPersistentObject" , 0 },
377  { 263, "GetNextInPersistentObject" , 0 },
378  { 264, "GetAreaOfEffectCreator" , 0 },
379  { 265, "DeleteLocalInt" , 0 },
380  { 266, "DeleteLocalFloat" , 0 },
381  { 267, "DeleteLocalString" , 0 },
382  { 268, "DeleteLocalObject" , 0 },
383  { 269, "DeleteLocalLocation" , 0 },
384  { 270, "EffectHaste" , 0 },
385  { 271, "EffectSlow" , 0 },
386  { 272, "ObjectToString" , &Functions::objectToString },
387  { 273, "FindKnownSpellByTypeAndLevel" , 0 },
388  { 274, "SetCurrentScriptSpellID" , 0 },
389  { 275, "PrintError" , 0 },
390  { 276, "GetEncounterActive" , 0 },
391  { 277, "SetEncounterActive" , 0 },
392  { 278, "GetEncounterSpawnsMax" , 0 },
393  { 279, "SetEncounterSpawnsMax" , 0 },
394  { 280, "GetEncounterSpawnsCurrent" , 0 },
395  { 281, "SetEncounterSpawnsCurrent" , 0 },
396  { 282, "GetModuleItemAcquired" , 0 },
397  { 283, "GetModuleItemAcquiredFrom" , 0 },
398  { 284, "SetCustomToken" , 0 },
399  { 285, "GetHasFeat" , 0 },
400  { 286, "Mod" , 0 },
401  { 287, "ActionUseFeat" , 0 },
402  { 288, "ModAdd" , 0 },
403  { 289, "GetObjectSeen" , 0 },
404  { 290, "GetObjectHeard" , 0 },
405  { 291, "GetLastPlayerDied" , 0 },
406  { 292, "GetModuleItemLost" , 0 },
407  { 293, "GetModuleItemLostBy" , 0 },
408  { 294, "ActionDoCommand" , &Functions::actionDoCommand },
409  { 295, "EventConversation" , 0 },
410  { 296, "SetEncounterDifficulty" , 0 },
411  { 297, "GetEncounterDifficulty" , 0 },
412  { 298, "GetDistanceBetweenLocations" , 0 },
413  { 299, "EffectTemporaryEndurancePoints" , 0 },
414  { 300, "PlayAnimation" , 0 },
415  { 301, "TalentSpell" , 0 },
416  { 302, "TalentFeat" , 0 },
417  { 303, "ModToFloat" , 0 },
418  { 304, "GetHasSpellEffect" , 0 },
419  { 305, "GetEffectSpellId" , 0 },
420  { 306, "GetCreatureHasTalent" , 0 },
421  { 307, "GetCreatureTalentRandom" , 0 },
422  { 308, "GetCreatureTalentBest" , 0 },
423  { 309, "ActionUseTalentOnObject" , 0 },
424  { 310, "ActionUseTalentAtLocation" , 0 },
425  { 311, "GetGoldPieceValue" , 0 },
426  { 312, "GetIsPlayableRacialType" , 0 },
427  { 313, "JumpToLocation" , &Functions::jumpToLocation },
428  { 314, "EffectTemporaryVitalityPoints" , 0 },
429  { 315, "SetCurrentVitalityPoints" , 0 },
430  { 316, "GetAttackTarget" , 0 },
431  { 317, "IsCurrentActionSitting" , 0 },
432  { 318, "_TriggerOnWitness" , 0 },
433  { 319, "GetMaster" , 0 },
434  { 320, "GetIsInCombat" , 0 },
435  { 321, "GetLastAssociateCommand" , 0 },
436  { 322, "GiveGoldToCreature" , 0 },
437  { 323, "SetIsDestroyable" , 0 },
438  { 324, "SetLocked" , &Functions::setLocked },
439  { 325, "GetLocked" , &Functions::getLocked },
440  { 326, "GetClickingObject" , &Functions::getClickingObject },
441  { 327, "SetAssociateListenPatterns" , 0 },
442  { 328, "GetLastWeaponUsed" , 0 },
443  { 329, "ActionInteractObject" , 0 },
444  { 330, "GetLastUsedBy" , &Functions::getLastUsedBy },
445  { 331, "GetLevel" , 0 },
446  { 332, "GetIdentified" , 0 },
447  { 333, "SetIdentified" , 0 },
448  { 334, "SummonAnimalCompanion" , 0 },
449  { 335, "SummonFamiliar" , 0 },
450  { 336, "GetBlockingDoor" , 0 },
451  { 337, "GetIsDoorActionPossible" , 0 },
452  { 338, "DoDoorAction" , 0 },
453  { 339, "GetFirstItemInInventory" , 0 },
454  { 340, "GetNextItemInInventory" , 0 },
455  { 341, "SetCurrentEndurancePoints" , 0 },
456  { 342, "GetCurrentDrunkState" , 0 },
457  { 343, "SetCurrentDrunkState" , 0 },
458  { 344, "GetDamageDealtByMedium" , 0 },
459  { 345, "GetTotalDamageDealt" , 0 },
460  { 346, "GetLastDamager" , 0 },
461  { 347, "GetLastDisarmed" , 0 },
462  { 348, "GetLastDisturbed" , 0 },
463  { 349, "GetLastLocked" , 0 },
464  { 350, "GetLastUnlocked" , 0 },
465  { 351, "BroadcastUserDefinedEvent" , 0 },
466  { 352, "GetInventoryDisturbType" , 0 },
467  { 353, "GetInventoryDisturbItem" , 0 },
468  { 354, "GetHenchman" , 0 },
469  { 355, "GetCurrentToxicity" , 0 },
470  { 356, "VersusRacialTypeEffect" , 0 },
471  { 357, "VersusTrapEffect" , 0 },
472  { 358, "GetGender" , 0 },
473  { 359, "GetIsTalentValid" , 0 },
474  { 360, "ActionMoveAwayFromLocation" , 0 },
475  { 361, "GetAttemptedAttackTarget" , 0 },
476  { 362, "GetTypeFromTalent" , 0 },
477  { 363, "GetIdFromTalent" , 0 },
478  { 364, "GetAssociate" , 0 },
479  { 365, "AddHenchman" , 0 },
480  { 366, "RemoveHenchman" , 0 },
481  { 367, "AddJournalEntry" , 0 },
482  { 368, "HasJournalEntry" , 0 },
483  { 369, "GetPCPublicCDKey" , 0 },
484  { 370, "GetPCIPAddress" , 0 },
485  { 371, "GetPCPlayerName" , 0 },
486  { 372, "SetPCLike" , 0 },
487  { 373, "SetPCDislike" , 0 },
488  { 374, "SendMessageToPC" , &Functions::sendMessageToPC },
489  { 375, "GetAttemptedSpellTarget" , 0 },
490  { 376, "GetLastOpenedBy" , &Functions::getLastOpenedBy },
491  { 377, "GetHasSpell" , 0 },
492  { 378, "OpenStore" , 0 },
493  { 379, "EffectTurned" , 0 },
494  { 380, "GetFirstFactionMember" , 0 },
495  { 381, "GetNextFactionMember" , 0 },
496  { 382, "ActionForceMoveToLocation" , 0 },
497  { 383, "ActionForceMoveToObject" , 0 },
498  { 384, "GetEnemyProfile" , 0 },
499  { 385, "JumpToObject" , &Functions::jumpToObject },
500  { 386, "SetMapPinEnabled" , 0 },
501  { 387, "EffectHitPointChangeWhenDying" , 0 },
502  { 388, "PopUpGUIPanel" , 0 },
503  { 389, "GetIsUsingActionPoint" , 0 },
504  { 390, "GetCurrentActionName" , 0 },
505  { 391, "GetMonsterNPCObject" , 0 },
506  { 392, "GetMonsterNPC" , 0 },
507  { 393, "GiveXPToCreature" , 0 },
508  { 394, "SetXP" , 0 },
509  { 395, "GetXP" , 0 },
510  { 396, "IntToHexString" , &Functions::intToHexString },
511  { 397, "GetBaseItemType" , 0 },
512  { 398, "GetItemHasItemProperty" , 0 },
513  { 399, "ActionEquipMostDamagingMelee" , 0 },
514  { 400, "ActionEquipMostDamagingRanged" , 0 },
515  { 401, "GetAnimation" , 0 },
516  { 402, "ActionRest" , 0 },
517  { 403, "ExploreAreaForPlayer" , 0 },
518  { 404, "ActionEquipMostEffectiveArmor" , 0 },
519  { 405, "GetIsDay" , 0 },
520  { 406, "GetIsNight" , 0 },
521  { 407, "GetIsDawn" , 0 },
522  { 408, "GetIsDusk" , 0 },
523  { 409, "GetIsEncounterCreature" , 0 },
524  { 410, "GetLastPlayerDying" , 0 },
525  { 411, "GetStartingLocation" , 0 },
526  { 412, "ChangeToStandardFaction" , 0 },
527  { 413, "SoundObjectPlay" , 0 },
528  { 414, "SoundObjectStop" , 0 },
529  { 415, "SoundObjectSetVolume" , 0 },
530  { 416, "SoundObjectSetPosition" , 0 },
531  { 417, "SpeakOneLinerConversation" , &Functions::speakOneLinerConversation },
532  { 418, "GetGold" , 0 },
533  { 419, "GetLastRespawnButtonPresser" , 0 },
534  { 420, "GetIsDM" , 0 },
535  { 421, "PlayVoiceChat" , 0 },
536  { 422, "GetIsWeaponEffective" , 0 },
537  { 423, "GetLastSpellHarmful" , 0 },
538  { 424, "EventActivateItem" , 0 },
539  { 425, "MusicBackgroundPlay" , &Functions::musicBackgroundPlay },
540  { 426, "MusicBackgroundStop" , &Functions::musicBackgroundStop },
541  { 427, "MusicBackgroundSetDelay" , 0 },
542  { 428, "MusicBackgroundChangeDay" , &Functions::musicBackgroundChangeDay },
543  { 429, "MusicBackgroundChangeNight" , &Functions::musicBackgroundChangeNight },
544  { 430, "MusicBattlePlay" , 0 },
545  { 431, "MusicBattleStop" , 0 },
546  { 432, "MusicBattleChange" , 0 },
547  { 433, "AmbientSoundPlay" , 0 },
548  { 434, "AmbientSoundStop" , 0 },
549  { 435, "AmbientSoundChangeDay" , 0 },
550  { 436, "AmbientSoundChangeNight" , 0 },
551  { 437, "GetLastKiller" , 0 },
552  { 438, "GetSpellCastItem" , 0 },
553  { 439, "GetItemActivated" , 0 },
554  { 440, "GetItemActivator" , 0 },
555  { 441, "GetItemActivatedTargetLocation" , 0 },
556  { 442, "GetItemActivatedTarget" , 0 },
557  { 443, "GetIsOpen" , &Functions::getIsOpen },
558  { 444, "TakeGoldFromCreature" , 0 },
559  { 445, "IsInConversation" , 0 },
560  { 446, "EnableSequenceJumps" , 0 },
561  { 447, "SetupSpellTrigger" , 0 },
562  { 448, "GetLastTriggerSpellEnergy" , 0 },
563  { 449, "GetLastTriggerSpellID" , 0 },
564  { 450, "GetCurrentGamePhase" , 0 },
565  { 451, "EffectMovementSpeedDecrease" , 0 },
566  { 452, "SetCurrentGamePhase" , 0 },
567  { 453, "IsQuestCompleted" , 0 },
568  { 454, "GetQuestCurrentPhaseIndex" , 0 },
569  { 455, "GetPlotFlag" , 0 },
570  { 456, "SetPlotFlag" , 0 },
571  { 457, "EffectInvisibility" , 0 },
572  { 458, "GetQuestPhaseIndex" , 0 },
573  { 459, "EffectDarkness" , 0 },
574  { 460, "CompareGamePhases" , 0 },
575  { 461, "SetStoryNPCStoryPhase" , 0 },
576  { 462, "SetCurrentToxicity" , 0 },
577  { 463, "EffectPolymorph" , 0 },
578  { 464, "SetItemModelPart" , 0 },
579  { 465, "EffectTrueSeeing" , 0 },
580  { 466, "EffectSeeInvisible" , 0 },
581  { 467, "EffectTimeStop" , 0 },
582  { 468, "EffectBlindness" , 0 },
583  { 469, "_ClearPersonalAttitude" , 0 },
584  { 470, "GetIsObjectVisible" , 0 },
585  { 471, "CompareTags" , 0 },
586  { 472, "ActionReady" , 0 },
587  { 473, "EnableSpawnPhase" , 0 },
588  { 474, "ActivatePortal" , 0 },
589  { 475, "GetNumStackedItems" , 0 },
590  { 476, "GetValueFromSettings_Float" , 0 },
591  { 477, "SetConversationResponse" , 0 },
592  { 478, "GetLastJoiningItem" , 0 },
593  { 479, "GetCreatureSize" , 0 },
594  { 480, "EffectDisappearAppear" , 0 },
595  { 481, "EffectDisappear" , 0 },
596  { 482, "EffectAppear" , 0 },
597  { 483, "GetCurrentToxinCapacity" , 0 },
598  { 484, "SetCurrentToxinCapacity" , 0 },
599  { 485, "GetTimeFromLastHeartbeat" , 0 },
600  { 486, "GetLastTrapDetected" , 0 },
601  { 487, "GetConversationResponse" , 0 },
602  { 488, "GetNearestTrapToObject" , 0 },
603  { 489, "SetTag" , 0 },
604  { 490, "SetName" , 0 },
605  { 491, "HasSequenceForWeapon" , 0 },
606  { 492, "PlayCutscene" , 0 },
607  { 493, "SetAttackSequence" , 0 },
608  { 494, "GetCurrentWeather" , 0 },
609  { 495, "GetAge" , 0 },
610  { 496, "GetMovementRate" , 0 },
611  { 497, "GetAnimalCompanionCreatureType" , 0 },
612  { 498, "GetFamiliarCreatureType" , 0 },
613  { 499, "GetAnimalCompanionName" , 0 },
614  { 500, "GetFamiliarName" , 0 },
615  { 501, "ActionCastFakeSpellAtObject" , 0 },
616  { 502, "ActionCastFakeSpellAtLocation" , 0 },
617  { 503, "RemoveSummonedAssociate" , 0 },
618  { 504, "GetPlaceableState" , 0 },
619  { 505, "GetIsResting" , 0 },
620  { 506, "GetLastPCRested" , 0 },
621  { 507, "SetWeather" , 0 },
622  { 508, "GetLastRestEventType" , 0 },
623  { 509, "StartNewModule" , &Functions::startNewModule },
624  { 510, "HasOppositeProfileTo" , 0 },
625  { 511, "GetWeaponRanged" , 0 },
626  { 512, "DoSinglePlayerAutoSave" , 0 },
627  { 513, "GetGameDifficulty" , 0 },
628  { 514, "GetDialogActionParam" , 0 },
629  { 515, "PlayVoiceSetVoiceOfTag" , 0 },
630  { 516, "SoundObjectPlayWithFade" , 0 },
631  { 517, "SoundObjectStopWithFade" , 0 },
632  { 518, "IsSphereVisibleOnClient" , 0 },
633  { 519, "GetLastGiftItem" , 0 },
634  { 520, "OpenPlayerGoldPanel" , 0 },
635  { 521, "SetPanelButtonFlash" , 0 },
636  { 522, "GetCurrentAction" , 0 },
637  { 523, "SetStandardFactionReputation" , 0 },
638  { 524, "GetStandardFactionReputation" , 0 },
639  { 525, "FloatingTextStrRefOnCreature" , 0 },
640  { 526, "FloatingTextStringOnCreature" , 0 },
641  { 527, "GetTrapDisarmable" , 0 },
642  { 528, "GetTrapDetectable" , 0 },
643  { 529, "GetTrapDetectedBy" , 0 },
644  { 530, "GetTrapFlagged" , 0 },
645  { 531, "GetTrapBaseType" , 0 },
646  { 532, "GetTrapOneShot" , 0 },
647  { 533, "GetTrapCreator" , 0 },
648  { 534, "GetTrapKeyTag" , 0 },
649  { 535, "GetTrapDisarmDC" , 0 },
650  { 536, "GetTrapDetectDC" , 0 },
651  { 537, "GetLockKeyRequired" , 0 },
652  { 538, "GetLockKeyTag" , 0 },
653  { 539, "GetLockLockable" , 0 },
654  { 540, "GetLockUnlockDC" , 0 },
655  { 541, "GetLockLockDC" , 0 },
656  { 542, "GetPCLevellingUp" , 0 },
657  { 543, "GetHasFeatEffect" , 0 },
658  { 544, "SetPlaceableIllumination" , 0 },
659  { 545, "GetPlaceableIllumination" , 0 },
660  { 546, "GetIsPlaceableObjectActionPossible", 0 },
661  { 547, "DoPlaceableObjectAction" , 0 },
662  { 548, "GetFirstPC" , &Functions::getFirstPC },
663  { 549, "GetNextPC" , &Functions::getNextPC },
664  { 550, "SetTrapDetectedBy" , 0 },
665  { 551, "GetIsTrapped" , 0 },
666  { 552, "PreloadCreature" , 0 },
667  { 553, "_SetProfile" , 0 },
668  { 554, "PopUpDeathGUIPanel" , 0 },
669  { 555, "SetTrapDisabled" , 0 },
670  { 556, "GetLastHostileActor" , 0 },
671  { 557, "ExportAllCharacters" , 0 },
672  { 558, "MusicBackgroundGetDayTrack" , &Functions::musicBackgroundGetDayTrack },
673  { 559, "MusicBackgroundGetNightTrack" , &Functions::musicBackgroundGetNightTrack },
674  { 560, "WriteTimestampedLogEntry" , &Functions::writeTimestampedLogEntry },
675  { 561, "GetModuleName" , 0 },
676  { 562, "GetFactionLeader" , 0 },
677  { 563, "SendMessageToAllDMs" , 0 },
678  { 564, "EndGame" , 0 },
679  { 565, "BootPC" , 0 },
680  { 566, "RestartModule" , 0 },
681  { 567, "AmbientSoundSetDayVolume" , 0 },
682  { 568, "AmbientSoundSetNightVolume" , 0 },
683  { 569, "MusicBackgroundGetBattleTrack" , 0 },
684  { 570, "GetHasInventory" , 0 },
685  { 571, "GetStrRefSoundDuration" , 0 },
686  { 572, "GetAttitude" , 0 },
687  { 573, "CreateVisualEffectAtLocation" , 0 },
688  { 574, "MusicIncidentalPlay" , 0 },
689  { 575, "MusicIncidentalStop" , 0 },
690  { 576, "SetPerceptionUpdateInterval" , 0 },
691  { 577, "GetAppearanceType" , 0 },
692  { 578, "SpawnScriptDebugger" , 0 },
693  { 579, "GetModuleItemAcquiredStackSize" , 0 },
694  { 580, "BackupPersonalAttitudes" , 0 },
695  { 581, "RestorePersonalAttitudes" , 0 },
696  { 582, "GetResRef" , 0 },
697  { 583, "EffectPetrify" , 0 },
698  { 584, "CopyItem" , 0 },
699  { 585, "EffectCutsceneParalyze" , 0 },
700  { 586, "GetDroppableFlag" , 0 },
701  { 587, "GetUseableFlag" , 0 },
702  { 588, "GetStolenFlag" , 0 },
703  { 589, "SetCampaignFloat" , 0 },
704  { 590, "SetCampaignInt" , 0 },
705  { 591, "SetCampaignVector" , 0 },
706  { 592, "SetCampaignLocation" , 0 },
707  { 593, "SetCampaignString" , 0 },
708  { 594, "DestroyCampaignDatabase" , 0 },
709  { 595, "GetCampaignFloat" , 0 },
710  { 596, "GetCampaignInt" , 0 },
711  { 597, "GetCampaignVector" , 0 },
712  { 598, "GetCampaignLocation" , 0 },
713  { 599, "GetCampaignString" , 0 },
714  { 600, "CopyObject" , 0 },
715  { 601, "DeleteCampaignVariable" , 0 },
716  { 602, "StoreCampaignObject" , 0 },
717  { 603, "RetrieveCampaignObject" , 0 },
718  { 604, "EffectCutsceneDominated" , 0 },
719  { 605, "GetItemStackSize" , 0 },
720  { 606, "SetItemStackSize" , 0 },
721  { 607, "GetItemCharges" , 0 },
722  { 608, "SetItemCharges" , 0 },
723  { 609, "AddItemProperty" , 0 },
724  { 610, "RemoveItemProperty" , 0 },
725  { 611, "GetIsItemPropertyValid" , 0 },
726  { 612, "GetFirstItemProperty" , 0 },
727  { 613, "GetNextItemProperty" , 0 },
728  { 614, "GetItemPropertyType" , 0 },
729  { 615, "GetItemPropertyDuration" , 0 },
730  { 616, "GetLastBribeAmount" , 0 },
731  { 617, "EnableStoryNPCActions" , 0 },
732  { 618, "EffectPush" , 0 },
733  { 619, "AddWeaponEffect" , 0 },
734  { 620, "RemoveWeaponEffect" , 0 },
735  { 621, "SetProtectionPoints" , 0 },
736  { 622, "SetSpecialDistance" , 0 },
737  { 623, "GetProtectionPoints" , 0 },
738  { 624, "UnlockPlayerStoryBasedAbility" , 0 },
739  { 625, "TerminateProtection" , 0 },
740  { 626, "GetLastPerceptionEventType" , 0 },
741  { 627, "GetLastPerceptionZone" , 0 },
742  { 628, "GetIsItemOfType" , 0 },
743  { 629, "GetIsAmmoForWeapon" , 0 },
744  { 630, "ImmediateRest" , 0 },
745  { 631, "DPrint" , 0 },
746  { 632, "CreateVisualEffectAtCreature" , 0 },
747  { 633, "GetIsAISystemEnabled" , 0 },
748  { 634, "GetProfileName" , 0 },
749  { 635, "GetNumPeacefulProfiles" , 0 },
750  { 636, "SetPlaceableUsable" , 0 },
751  { 637, "AddToCallstack" , 0 },
752  { 638, "GetCallstackLine" , 0 },
753  { 639, "GetCallstack" , 0 },
754  { 640, "ChangePlaceableEffectPhase" , 0 },
755  { 641, "_SetCallstackIdent" , 0 },
756  { 642, "_AdjustCallstackIdent" , 0 },
757  { 643, "HasSequence" , 0 },
758  { 644, "GetCurrentSequenceId" , 0 },
759  { 645, "SetCurrentSequenceId" , 0 },
760  { 646, "GetIsWeaponRanged" , 0 },
761  { 647, "NoOp" , 0 },
762  { 648, "GetBattleMusicIdByCreature" , 0 },
763  { 649, "GetSpecialDistance" , 0 },
764  { 650, "CreateVisualEffectAtObject" , 0 },
765  { 651, "DeleteVisualEffectFromObject" , 0 },
766  { 652, "SetGiftMessages" , 0 },
767  { 653, "HasTheSameAffiliations" , 0 },
768  { 654, "IsAfraidOf" , 0 },
769  { 655, "GetLastItemSold" , 0 },
770  { 656, "CloseStoreAndInventory" , 0 },
771  { 657, "GetNPCDialogByTags" , 0 },
772  { 658, "GetDialogInterlocutorByTag" , 0 },
773  { 659, "IsCutscenePlaying" , 0 },
774  { 660, "SetPositionNearObject" , 0 },
775  { 661, "StartMaterialEffect" , 0 },
776  { 662, "StopMaterialEffect" , 0 },
777  { 663, "BindEffectParamToObjectPosition" , 0 },
778  { 664, "GetDialogFile" , 0 },
779  { 665, "_UpdateIsInTrigger" , 0 },
780  { 666, "HasJournalEntryConcerningObject" , 0 },
781  { 667, "Meditate" , 0 },
782  { 668, "GetCurrentWeatherIntensity" , 0 },
783  { 669, "BackupAfraidOf" , 0 },
784  { 670, "RestoreAfraidOf" , 0 },
785  { 671, "SetAfraidOfAffiliations" , 0 },
786  { 672, "GetProfileType" , 0 },
787  { 673, "GetIsExcited" , 0 },
788  { 674, "BindEffectParamToPartPosition" , 0 },
789  { 675, "ForceUpdateMeleePositions" , 0 },
790  { 676, "IsMeleePositionFree" , 0 },
791  { 677, "CanPlotNPCRaiseFromDead" , 0 },
792  { 678, "ProlongPlotNPCDeathEffect" , 0 },
793  { 679, "AddTalents" , 0 },
794  { 680, "CacheSequenceDistances" , 0 },
795  { 681, "RevealWorldMapRegion" , 0 },
796  { 682, "GetNearestAreaTransitionTarget" , 0 },
797  { 683, "AlchemyLearnMixture" , 0 },
798  { 684, "AlchemyLearnItem" , 0 },
799  { 685, "AlchemyGetItemKnown" , 0 },
800  { 686, "SetLockedAttackTarget" , 0 },
801  { 687, "ScriptDecisionsTempOff" , 0 },
802  { 688, "CanScriptDecideOfActions" , 0 },
803  { 689, "IsTriggerEnabled" , 0 },
804  { 690, "EnableTrigger" , 0 },
805  { 691, "SpeakStringByStrRef" , &Functions::speakStringByStrRef },
806  { 692, "SetCutsceneMode" , 0 },
807  { 693, "GetLastPCToCancelCutscene" , 0 },
808  { 694, "GetDialogSoundLength" , 0 },
809  { 695, "FadeFromBlack" , 0 },
810  { 696, "FadeToBlack" , 0 },
811  { 697, "StopFade" , 0 },
812  { 698, "BlackScreen" , 0 },
813  { 699, "GetBaseAttackBonus" , 0 },
814  { 700, "SetImmortal" , 0 },
815  { 701, "OpenPlayerInventory" , 0 },
816  { 702, "StoreCameraFacing" , 0 },
817  { 703, "RestoreCameraFacing" , 0 },
818  { 704, "LevelUpHenchman" , 0 },
819  { 705, "SetDroppableFlag" , 0 },
820  { 706, "SetNeutralBumpable" , 0 },
821  { 707, "GetModuleItemAcquiredBy" , 0 },
822  { 708, "GetImmortal" , 0 },
823  { 709, "_SetEmotionalSubstate" , 0 },
824  { 710, "Get2DAString" , &Functions::get2DAString },
825  { 711, "GetMainProfile" , 0 },
826  { 712, "GetAILevel" , 0 },
827  { 713, "SetAILevel" , 0 },
828  { 714, "GetIsPossessedFamiliar" , 0 },
829  { 715, "UnpossessFamiliar" , 0 },
830  { 716, "GetIsInside" , 0 },
831  { 717, "SendMessageToPCByStrRef" , 0 },
832  { 718, "IncrementRemainingFeatUses" , 0 },
833  { 719, "ExportSingleCharacter" , 0 },
834  { 720, "PlaySoundByStrRef" , &Functions::playSoundByStrRef },
835  { 721, "RunClientMacro" , 0 },
836  { 722, "RunClientLua" , &Functions::runClientLua },
837  { 723, "EffectRunScript" , 0 },
838  { 724, "SetEmotionalState" , 0 },
839  { 725, "GetEffectScriptID" , 0 },
840  { 726, "ForceEmotionalAnim" , 0 },
841  { 727, "GetObjectById" , 0 },
842  { 728, "TestDialogFlag" , 0 },
843  { 729, "SetDialogFlagValue" , 0 },
844  { 730, "GetDialogFlagValue" , 0 },
845  { 731, "FindDialogFlagIndex" , 0 },
846  { 732, "SetStartingStyleForWeaponType" , 0 },
847  { 733, "GetBestSlotForWeapon" , 0 },
848  { 734, "SetWaypointDesc" , 0 },
849  { 735, "ActionJumpToModule" , 0 },
850  { 736, "AddImpulse" , 0 },
851  { 737, "_SetPersonalAttitude" , 0 },
852  { 738, "GetPersonalAttitude" , 0 },
853  { 739, "HasPersonalAttitude" , 0 },
854  { 740, "_ClearPersonalAttitudeList" , 0 },
855  { 741, "GetFirstNeighbourCreature" , 0 },
856  { 742, "GetNextNeighbourCreature" , 0 },
857  { 743, "SetSurroundingFlag" , 0 },
858  { 744, "HasProfileByName" , 0 },
859  { 745, "AddDialogActor" , 0 },
860  { 746, "DespawnCreature" , 0 },
861  { 747, "PreloadAreaModel" , 0 },
862  { 748, "PostDialogCommand" , 0 },
863  { 749, "GetCombatState" , 0 },
864  { 750, "SetCombatState" , 0 },
865  { 751, "GetCrowdActionParticipant" , 0 },
866  { 752, "GetNPCDialog" , 0 },
867  { 753, "ErrorExit" , 0 },
868  { 754, "SetQueuedActionsInterruptable" , 0 },
869  { 755, "_SetPauseState" , 0 },
870  { 756, "See" , 0 },
871  { 757, "_StackPopObject" , 0 },
872  { 758, "FindNearestCreatures" , 0 },
873  { 759, "_GetLastInternalEventId" , 0 },
874  { 760, "_StackPopInteger" , 0 },
875  { 761, "_StackPopFloat" , 0 },
876  { 762, "HasEquipedMelee" , 0 },
877  { 763, "HasEquipedRanged" , 0 },
878  { 764, "GetIsFistfighter" , 0 },
879  { 765, "SetMapPinActive" , 0 },
880  { 766, "_FastSetInt" , 0 },
881  { 767, "_FastGetInt" , 0 },
882  { 768, "_FastSetObject" , 0 },
883  { 769, "_FastGetObject" , 0 },
884  { 770, "Assert" , 0 },
885  { 771, "_FastSetFloat" , 0 },
886  { 772, "_FastGetFloat" , 0 },
887  { 773, "TriggerInternalEvent" , 0 },
888  { 774, "GetNumGuardianTriggers" , 0 },
889  { 775, "GetNumGuardianWaypoints" , 0 },
890  { 776, "GetGuardianTrigger" , 0 },
891  { 777, "GetGuardianWaypoint" , 0 },
892  { 778, "SetIsInTrigger" , 0 },
893  { 779, "GetIsInMyTriggers" , 0 },
894  { 780, "SetPerceptionMultiplier" , 0 },
895  { 781, "GetPerceptionMultiplier" , 0 },
896  { 782, "SlotDlaTomka01" , 0 },
897  { 783, "SlotDlaTomka02" , 0 },
898  { 784, "SlotDlaTomka03" , 0 },
899  { 785, "SlotDlaTomka04" , 0 },
900  { 786, "HasAction" , 0 },
901  { 787, "ForceMapOfAnotherArea" , 0 },
902  { 788, "IsMapFullyLoaded" , 0 },
903  { 789, "GetCreatureAppearance" , 0 },
904  { 790, "SetCreatureAppearance" , 0 },
905  { 791, "DontEnableNPCActionsAfterDialog" , 0 },
906  { 792, "HasPhysics" , 0 },
907  { 793, "WillBeOneLiner" , 0 },
908  { 794, "SetCombatModeBaseDist" , 0 },
909  { 795, "ActionTeleportAndTalk" , 0 },
910  { 796, "PreDialogShot" , 0 },
911  { 797, "EnterFistfightMode" , 0 },
912  { 798, "LeaveFistfightMode" , 0 },
913  { 799, "LoadAreaMap" , 0 },
914  { 800, "SetDontEquipAnythingAfterDialog" , 0 },
915  { 801, "EndFistfightKnockOutEffect" , 0 },
916  { 802, "OpenPlayerBribePanel" , 0 },
917  { 803, "GetBribeVariationValue" , 0 },
918  { 804, "ResetXP" , 0 },
919  { 805, "AddGreaseAbility" , 0 },
920  { 806, "ClearGrease" , 0 },
921  { 807, "Get2DARow" , 0 },
922  { 808, "Get2DAInt" , 0 },
923  { 809, "SlotDlaMichala5" , 0 },
924  { 810, "SlotDlaMichala6" , 0 },
925  { 811, "SlotDlaMichala7" , 0 },
926  { 812, "SlotDlaMichala8" , 0 },
927  { 813, "SlotDlaMichala9" , 0 },
928  { 814, "Find5NearestCreatures" , 0 },
929  { 815, "IsInInteractiveMode" , 0 },
930  { 816, "SetMovementRate" , 0 },
931  { 817, "EquipMelee" , 0 },
932  { 818, "EquipRanged" , 0 },
933  { 819, "CanImmobileAttackMelee" , 0 },
934  { 820, "HasDialog" , 0 },
935  { 821, "GetNumNearbyCreatures" , 0 },
936  { 822, "_UpdatePassiveState" , 0 },
937  { 823, "_SetIsPassiveAttacker" , 0 },
938  { 824, "RandomFL" , 0 },
939  { 825, "GetBestRainHideout" , 0 },
940  { 826, "_DespawnBecouseOfRain" , 0 },
941  { 827, "_IsDespawningBecouseOfRain" , 0 },
942  { 828, "_GetLastExecutedScript" , 0 },
943  { 829, "ResetQuestUpdateFlag" , 0 },
944  { 830, "GetQuestUpdateFlag" , 0 },
945  { 831, "IsActorInDialog" , 0 },
946  { 832, "GetRandomLocationNearObject" , 0 },
947  { 833, "CanPlayVoiceSetOfType" , 0 },
948  { 834, "OpenPlayerBetPanel" , 0 },
949  { 835, "IsAreaFullyLoadedOnClient" , 0 },
950  { 836, "IsInInterior" , 0 },
951  { 837, "_CanFindPath" , 0 },
952  { 838, "_IsActionQueueEmpty" , 0 },
953  { 839, "IsModuleSaveGame" , 0 },
954  { 840, "GetRealMaxActiveAttackers" , 0 },
955  { 841, "GetRealActiveAttackers" , 0 },
956  { 842, "_UpdatePassiveAttackersList" , 0 },
957  { 843, "HasVoiceOfTag" , 0 },
958  { 844, "SetDialogOwner" , 0 },
959  { 845, "ForceCharacterDevelopment" , 0 },
960  { 846, "DisableCutsceneModeAfterDialog" , 0 },
961  { 847, "EnableMusician" , 0 }
962 };
963 
965 const Functions::FunctionSignature Functions::kFunctionSignatures[] = {
966  { 0, kTypeInt , { kTypeInt } },
967  { 1, kTypeVoid , { kTypeString } },
968  { 2, kTypeVoid , { kTypeFloat, kTypeInt, kTypeInt } },
969  { 3, kTypeString , { kTypeFloat, kTypeInt, kTypeInt } },
970  { 4, kTypeVoid , { kTypeInt } },
971  { 5, kTypeString , { kTypeObject } },
972  { 6, kTypeVoid , { kTypeObject, kTypeScriptState } },
973  { 7, kTypeVoid , { kTypeFloat, kTypeScriptState } },
974  { 8, kTypeVoid , { kTypeString, kTypeObject } },
975  { 9, kTypeVoid , { kTypeInt, kTypeObject } },
976  { 10, kTypeVoid , { kTypeFloat } },
977  { 11, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
978  { 12, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeInt } },
979  { 13, kTypeInt , { } },
980  { 14, kTypeInt , { } },
981  { 15, kTypeInt , { } },
982  { 16, kTypeInt , { } },
983  { 17, kTypeInt , { } },
984  { 18, kTypeInt , { } },
985  { 19, kTypeInt , { } },
986  { 20, kTypeVoid , { } },
987  { 21, kTypeVoid , { kTypeEngineType, kTypeInt } },
988  { 22, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
989  { 23, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
990  { 24, kTypeObject , { kTypeObject } },
991  { 25, kTypeObject , { } },
992  { 26, kTypeObject , { } },
993  { 27, kTypeVector , { kTypeObject } },
994  { 28, kTypeFloat , { kTypeObject } },
995  { 29, kTypeObject , { kTypeObject } },
996  { 30, kTypeObject , { kTypeObject, kTypeString } },
998  { 32, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
999  { 33, kTypeVoid , { kTypeObject, kTypeInt } },
1000  { 34, kTypeVoid , { kTypeObject } },
1001  { 35, kTypeVoid , { kTypeObject, kTypeInt } },
1002  { 36, kTypeObject , { kTypeObject } },
1003  { 37, kTypeVoid , { kTypeObject, kTypeInt } },
1005  { 39, kTypeVoid , { kTypeString, kTypeInt } },
1006  { 40, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1007  { 41, kTypeFloat , { kTypeObject } },
1008  { 42, kTypeInt , { kTypeObject } },
1009  { 43, kTypeVoid , { kTypeObject } },
1010  { 44, kTypeVoid , { kTypeObject } },
1012  { 46, kTypeVoid , { kTypeString, kTypeInt, kTypeFloat } },
1013  { 47, kTypeObject , { } },
1015  { 49, kTypeInt , { kTypeObject } },
1016  { 50, kTypeInt , { kTypeObject } },
1017  { 51, kTypeInt , { kTypeObject, kTypeString } },
1018  { 52, kTypeFloat , { kTypeObject, kTypeString } },
1019  { 53, kTypeString , { kTypeObject, kTypeString } },
1020  { 54, kTypeObject , { kTypeObject, kTypeString } },
1021  { 55, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1022  { 56, kTypeVoid , { kTypeObject, kTypeString, kTypeFloat } },
1023  { 57, kTypeVoid , { kTypeObject, kTypeString, kTypeString } },
1024  { 58, kTypeVoid , { kTypeObject, kTypeString, kTypeObject } },
1025  { 59, kTypeInt , { kTypeString } },
1026  { 60, kTypeString , { kTypeString } },
1027  { 61, kTypeString , { kTypeString } },
1028  { 62, kTypeString , { kTypeString, kTypeInt } },
1029  { 63, kTypeString , { kTypeString, kTypeInt } },
1030  { 64, kTypeString , { kTypeString, kTypeString, kTypeInt } },
1031  { 65, kTypeString , { kTypeString, kTypeInt, kTypeInt } },
1032  { 66, kTypeInt , { kTypeString, kTypeString } },
1033  { 67, kTypeFloat , { kTypeFloat } },
1034  { 68, kTypeFloat , { kTypeFloat } },
1035  { 69, kTypeFloat , { kTypeFloat } },
1036  { 70, kTypeFloat , { kTypeFloat } },
1037  { 71, kTypeFloat , { kTypeFloat } },
1038  { 72, kTypeFloat , { kTypeFloat } },
1039  { 73, kTypeFloat , { kTypeFloat } },
1040  { 74, kTypeFloat , { kTypeFloat } },
1041  { 75, kTypeFloat , { kTypeFloat, kTypeFloat } },
1042  { 76, kTypeFloat , { kTypeFloat } },
1043  { 77, kTypeInt , { kTypeInt } },
1044  { 78, kTypeEngineType, { kTypeInt } },
1046  { 80, kTypeInt , { kTypeObject } },
1047  { 81, kTypeInt , { kTypeObject, kTypeString, kTypeInt } },
1048  { 82, kTypeEngineType, { } },
1051  { 85, kTypeEngineType, { kTypeObject } },
1052  { 86, kTypeEngineType, { kTypeObject } },
1053  { 87, kTypeVoid , { kTypeObject, kTypeEngineType } },
1054  { 88, kTypeInt , { kTypeEngineType } },
1055  { 89, kTypeInt , { kTypeEngineType } },
1056  { 90, kTypeInt , { kTypeEngineType } },
1057  { 91, kTypeObject , { kTypeEngineType } },
1058  { 92, kTypeString , { kTypeInt } },
1059  { 93, kTypeObject , { kTypeObject } },
1060  { 94, kTypeObject , { kTypeObject } },
1061  { 95, kTypeInt , { kTypeInt } },
1062  { 96, kTypeInt , { kTypeInt } },
1063  { 97, kTypeInt , { kTypeInt } },
1064  { 98, kTypeInt , { kTypeInt } },
1065  { 99, kTypeInt , { kTypeInt } },
1066  { 100, kTypeInt , { kTypeInt } },
1067  { 101, kTypeInt , { kTypeInt } },
1068  { 102, kTypeInt , { kTypeInt } },
1069  { 103, kTypeInt , { kTypeInt } },
1070  { 104, kTypeFloat , { kTypeVector } },
1071  { 105, kTypeFloat , { kTypeInt, kTypeObject } },
1072  { 106, kTypeInt , { kTypeObject } },
1073  { 107, kTypeInt , { kTypeObject } },
1075  { 109, kTypeEngineType, { kTypeObject } },
1076  { 110, kTypeVoid , { kTypeObject, kTypeInt } },
1077  { 111, kTypeInt , { kTypeObject, kTypeString, kTypeInt } },
1078  { 112, kTypeEngineType, { kTypeEngineType } },
1079  { 113, kTypeEngineType, { kTypeEngineType } },
1080  { 114, kTypeEngineType, { kTypeEngineType } },
1081  { 115, kTypeInt , { kTypeString, kTypeObject } },
1082  { 116, kTypeInt , { kTypeString, kTypeObject } },
1086  { 120, kTypeInt , { kTypeString, kTypeObject } },
1087  { 121, kTypeFloat , { kTypeInt } },
1088  { 122, kTypeFloat , { kTypeInt } },
1089  { 123, kTypeFloat , { kTypeInt } },
1091  { 125, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1092  { 126, kTypeInt , { kTypeObject, kTypeObject } },
1093  { 127, kTypeVoid , { kTypeInt, kTypeObject } },
1096  { 130, kTypeInt , { kTypeObject } },
1097  { 131, kTypeVoid , { kTypeObject, kTypeEngineType } },
1098  { 132, kTypeEngineType, { kTypeInt } },
1099  { 133, kTypeEngineType, { kTypeInt, kTypeInt } },
1100  { 134, kTypeEngineType, { kTypeObject } },
1101  { 135, kTypeVoid , { kTypeObject, kTypeObject } },
1102  { 136, kTypeVoid , { kTypeObject, kTypeObject } },
1103  { 137, kTypeVector , { kTypeVector } },
1105  { 139, kTypeInt , { kTypeObject, kTypeInt } },
1106  { 140, kTypeInt , { kTypeObject } },
1107  { 141, kTypeString , { kTypeVector, kTypeInt } },
1108  { 142, kTypeVector , { kTypeFloat, kTypeFloat, kTypeFloat } },
1109  { 143, kTypeVoid , { kTypeVector } },
1110  { 144, kTypeVector , { kTypeFloat } },
1111  { 145, kTypeFloat , { kTypeVector } },
1112  { 146, kTypeInt , { kTypeObject } },
1113  { 147, kTypeInt , { kTypeObject } },
1114  { 148, kTypeEngineType, { } },
1115  { 149, kTypeInt , { kTypeString, kTypeInt, kTypeInt } },
1116  { 150, kTypeEngineType, { } },
1117  { 151, kTypeFloat , { kTypeObject, kTypeObject } },
1119  { 153, kTypeEngineType, { kTypeObject, kTypeString } },
1120  { 154, kTypeEngineType, { } },
1121  { 155, kTypeObject , { kTypeInt, kTypeObject } },
1122  { 156, kTypeEngineType, { } },
1123  { 157, kTypeEngineType, { } },
1124  { 158, kTypeEngineType, { } },
1125  { 159, kTypeEngineType, { } },
1126  { 160, kTypeEngineType, { } },
1127  { 161, kTypeEngineType, { } },
1128  { 162, kTypeVoid , { kTypeInt, kTypeObject } },
1129  { 163, kTypeInt , { kTypeObject } },
1130  { 164, kTypeEngineType, { kTypeInt, kTypeFloat } },
1131  { 165, kTypeEngineType, { kTypeInt } },
1132  { 166, kTypeInt , { kTypeObject } },
1133  { 167, kTypeVoid , { kTypeObject, kTypeFloat, kTypeInt } },
1134  { 168, kTypeString , { kTypeObject } },
1135  { 169, kTypeVoid , { kTypeInt, kTypeObject } },
1136  { 170, kTypeInt , { kTypeEngineType } },
1138  { 172, kTypeInt , { kTypeObject, kTypeObject } },
1139  { 173, kTypeVoid , { kTypeObject, kTypeObject } },
1140  { 174, kTypeInt , { kTypeObject } },
1141  { 175, kTypeVoid , { kTypeObject, kTypeInt } },
1142  { 176, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1143  { 177, kTypeInt , { kTypeString, kTypeString } },
1144  { 178, kTypeString , { kTypeInt } },
1145  { 179, kTypeInt , { } },
1146  { 180, kTypeEngineType, { kTypeInt, kTypeInt } },
1147  { 181, kTypeObject , { kTypeObject, kTypeInt } },
1148  { 182, kTypeObject , { kTypeObject, kTypeInt } },
1149  { 183, kTypeObject , { kTypeObject, kTypeInt } },
1150  { 184, kTypeObject , { kTypeObject, kTypeInt } },
1151  { 185, kTypeInt , { kTypeObject } },
1152  { 186, kTypeString , { kTypeString } },
1153  { 187, kTypeVoid , { kTypeInt, kTypeObject } },
1154  { 188, kTypeInt , { kTypeObject } },
1155  { 189, kTypeInt , { kTypeObject } },
1156  { 190, kTypeInt , { kTypeObject } },
1157  { 191, kTypeInt , { kTypeObject, kTypeInt } },
1158  { 192, kTypeObject , { kTypeObject, kTypeInt } },
1159  { 193, kTypeObject , { kTypeObject, kTypeInt } },
1160  { 194, kTypeVoid , { kTypeObject } },
1161  { 195, kTypeInt , { } },
1162  { 196, kTypeVoid , { kTypeObject, kTypeInt } },
1163  { 197, kTypeObject , { kTypeString } },
1164  { 198, kTypeObject , { kTypeObject } },
1166  { 200, kTypeObject , { kTypeString, kTypeInt } },
1167  { 201, kTypeInt , { kTypeObject } },
1168  { 202, kTypeVoid , { kTypeFloat } },
1169  { 203, kTypeVoid , { kTypeInt, kTypeString } },
1171  { 205, kTypeVoid , { } },
1172  { 206, kTypeVoid , { } },
1173  { 207, kTypeVoid , { kTypeObject, kTypeObject } },
1174  { 208, kTypeObject , { kTypeString } },
1175  { 209, kTypeString , { kTypeObject } },
1176  { 210, kTypeObject , { kTypeObject } },
1177  { 211, kTypeObject , { kTypeObject } },
1178  { 212, kTypeVoid , { kTypeInt, kTypeObject } },
1179  { 213, kTypeEngineType, { kTypeObject } },
1180  { 214, kTypeVoid , { kTypeEngineType } },
1183  { 217, kTypeInt , { kTypeObject } },
1184  { 218, kTypeFloat , { kTypeFloat } },
1185  { 219, kTypeFloat , { kTypeFloat } },
1187  { 221, kTypeVoid , { kTypeString, kTypeInt } },
1188  { 222, kTypeEngineType, { } },
1189  { 223, kTypeVector , { kTypeEngineType } },
1190  { 224, kTypeObject , { kTypeEngineType } },
1191  { 225, kTypeFloat , { kTypeEngineType } },
1193  { 227, kTypeObject , { kTypeInt, kTypeObject, kTypeInt } },
1194  { 228, kTypeObject , { kTypeInt, kTypeEngineType, kTypeInt } },
1196  { 230, kTypeFloat , { kTypeInt } },
1197  { 231, kTypeInt , { kTypeFloat } },
1198  { 232, kTypeInt , { kTypeString } },
1199  { 233, kTypeFloat , { kTypeString } },
1201  { 235, kTypeString , { kTypeObject } },
1202  { 236, kTypeString , { kTypeString } },
1203  { 237, kTypeString , { kTypeString } },
1204  { 238, kTypeObject , { } },
1205  { 239, kTypeString , { kTypeInt, kTypeInt } },
1206  { 240, kTypeVoid , { kTypeInt, kTypeInt } },
1207  { 241, kTypeVoid , { kTypeObject, kTypeFloat } },
1208  { 242, kTypeObject , { } },
1210  { 244, kTypeEngineType, { kTypeObject, kTypeInt, kTypeInt } },
1211  { 245, kTypeObject , { } },
1212  { 246, kTypeInt , { } },
1213  { 247, kTypeInt , { } },
1214  { 248, kTypeInt , { } },
1215  { 249, kTypeString , { } },
1217  { 251, kTypeVoid , { kTypeInt, kTypeObject } },
1218  { 252, kTypeEngineType, { } },
1219  { 253, kTypeString , { kTypeObject } },
1220  { 254, kTypeObject , { } },
1221  { 255, kTypeInt , { kTypeString, kTypeObject, kTypeObject } },
1222  { 256, kTypeObject , { } },
1223  { 257, kTypeInt , { } },
1224  { 258, kTypeInt , { } },
1225  { 259, kTypeInt , { } },
1226  { 260, kTypeObject , { } },
1227  { 261, kTypeInt , { } },
1228  { 262, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1229  { 263, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1230  { 264, kTypeObject , { kTypeObject } },
1231  { 265, kTypeVoid , { kTypeObject, kTypeString } },
1232  { 266, kTypeVoid , { kTypeObject, kTypeString } },
1233  { 267, kTypeVoid , { kTypeObject, kTypeString } },
1234  { 268, kTypeVoid , { kTypeObject, kTypeString } },
1235  { 269, kTypeVoid , { kTypeObject, kTypeString } },
1236  { 270, kTypeEngineType, { } },
1237  { 271, kTypeEngineType, { } },
1238  { 272, kTypeString , { kTypeObject } },
1239  { 273, kTypeInt , { kTypeString, kTypeInt, kTypeInt, kTypeObject } },
1240  { 274, kTypeVoid , { kTypeInt, kTypeObject } },
1241  { 275, kTypeVoid , { kTypeString } },
1242  { 276, kTypeInt , { kTypeObject } },
1243  { 277, kTypeVoid , { kTypeInt, kTypeObject } },
1244  { 278, kTypeInt , { kTypeObject } },
1245  { 279, kTypeVoid , { kTypeInt, kTypeObject } },
1246  { 280, kTypeInt , { kTypeObject } },
1247  { 281, kTypeVoid , { kTypeInt, kTypeObject } },
1248  { 282, kTypeObject , { } },
1249  { 283, kTypeObject , { } },
1250  { 284, kTypeVoid , { kTypeInt, kTypeString } },
1251  { 285, kTypeInt , { kTypeInt, kTypeObject } },
1252  { 286, kTypeEngineType, { kTypeFloat, kTypeFloat } },
1253  { 287, kTypeVoid , { kTypeInt, kTypeObject } },
1255  { 289, kTypeInt , { kTypeObject, kTypeObject } },
1256  { 290, kTypeInt , { kTypeObject, kTypeObject } },
1257  { 291, kTypeObject , { } },
1258  { 292, kTypeObject , { } },
1259  { 293, kTypeObject , { } },
1260  { 294, kTypeVoid , { kTypeScriptState } },
1261  { 295, kTypeEngineType, { } },
1262  { 296, kTypeVoid , { kTypeInt, kTypeObject } },
1263  { 297, kTypeInt , { kTypeObject } },
1264  { 298, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1265  { 299, kTypeEngineType, { kTypeInt } },
1266  { 300, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1267  { 301, kTypeEngineType, { kTypeInt } },
1268  { 302, kTypeEngineType, { kTypeInt } },
1269  { 303, kTypeFloat , { kTypeEngineType } },
1270  { 304, kTypeInt , { kTypeInt, kTypeObject } },
1271  { 305, kTypeInt , { kTypeEngineType } },
1272  { 306, kTypeInt , { kTypeEngineType, kTypeObject } },
1273  { 307, kTypeEngineType, { kTypeInt, kTypeObject } },
1274  { 308, kTypeEngineType, { kTypeInt, kTypeInt, kTypeObject } },
1275  { 309, kTypeVoid , { kTypeEngineType, kTypeObject } },
1276  { 310, kTypeVoid , { kTypeEngineType, kTypeEngineType } },
1277  { 311, kTypeInt , { kTypeObject } },
1278  { 312, kTypeInt , { kTypeObject } },
1279  { 313, kTypeVoid , { kTypeEngineType } },
1280  { 314, kTypeEngineType, { kTypeInt } },
1281  { 315, kTypeVoid , { kTypeInt, kTypeObject } },
1282  { 316, kTypeObject , { kTypeObject } },
1283  { 317, kTypeInt , { kTypeObject } },
1284  { 318, kTypeInt , { kTypeInt, kTypeObject } },
1285  { 319, kTypeObject , { kTypeObject } },
1286  { 320, kTypeInt , { kTypeObject } },
1287  { 321, kTypeInt , { kTypeObject } },
1288  { 322, kTypeVoid , { kTypeObject, kTypeInt } },
1289  { 323, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1290  { 324, kTypeVoid , { kTypeObject, kTypeInt } },
1291  { 325, kTypeInt , { kTypeObject } },
1292  { 326, kTypeObject , { } },
1293  { 327, kTypeVoid , { kTypeObject } },
1294  { 328, kTypeObject , { kTypeObject } },
1295  { 329, kTypeVoid , { kTypeObject } },
1296  { 330, kTypeObject , { } },
1297  { 331, kTypeInt , { kTypeObject } },
1298  { 332, kTypeInt , { kTypeObject } },
1299  { 333, kTypeVoid , { kTypeObject, kTypeInt } },
1300  { 334, kTypeVoid , { kTypeObject } },
1301  { 335, kTypeVoid , { kTypeObject } },
1302  { 336, kTypeObject , { } },
1303  { 337, kTypeInt , { kTypeObject, kTypeInt } },
1304  { 338, kTypeVoid , { kTypeObject, kTypeInt } },
1305  { 339, kTypeObject , { kTypeObject } },
1306  { 340, kTypeObject , { kTypeObject } },
1307  { 341, kTypeVoid , { kTypeInt, kTypeObject } },
1308  { 342, kTypeInt , { kTypeObject } },
1309  { 343, kTypeVoid , { kTypeInt, kTypeObject } },
1310  { 344, kTypeInt , { kTypeString } },
1311  { 345, kTypeInt , { } },
1312  { 346, kTypeObject , { } },
1313  { 347, kTypeObject , { } },
1314  { 348, kTypeObject , { } },
1315  { 349, kTypeObject , { } },
1316  { 350, kTypeObject , { } },
1317  { 351, kTypeVoid , { kTypeEngineType, kTypeFloat } },
1318  { 352, kTypeInt , { } },
1319  { 353, kTypeObject , { } },
1320  { 354, kTypeObject , { kTypeObject } },
1321  { 355, kTypeInt , { kTypeObject } },
1322  { 356, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1323  { 357, kTypeEngineType, { kTypeEngineType } },
1324  { 358, kTypeInt , { kTypeObject } },
1325  { 359, kTypeInt , { kTypeEngineType } },
1326  { 360, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1327  { 361, kTypeObject , { } },
1328  { 362, kTypeInt , { kTypeEngineType } },
1329  { 363, kTypeInt , { kTypeEngineType } },
1330  { 364, kTypeObject , { kTypeInt, kTypeObject } },
1331  { 365, kTypeVoid , { kTypeObject, kTypeObject } },
1332  { 366, kTypeVoid , { kTypeObject, kTypeObject } },
1333  { 367, kTypeVoid , { kTypeString, kTypeString } },
1334  { 368, kTypeInt , { kTypeString, kTypeString } },
1335  { 369, kTypeString , { kTypeObject } },
1336  { 370, kTypeString , { kTypeObject } },
1337  { 371, kTypeString , { kTypeObject } },
1338  { 372, kTypeVoid , { kTypeObject, kTypeObject } },
1339  { 373, kTypeVoid , { kTypeObject, kTypeObject } },
1340  { 374, kTypeVoid , { kTypeObject, kTypeString } },
1341  { 375, kTypeObject , { } },
1342  { 376, kTypeObject , { } },
1343  { 377, kTypeInt , { kTypeInt, kTypeObject } },
1344  { 378, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1345  { 379, kTypeEngineType, { } },
1346  { 380, kTypeObject , { kTypeObject, kTypeInt } },
1347  { 381, kTypeObject , { kTypeObject, kTypeInt } },
1348  { 382, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1350  { 384, kTypeInt , { kTypeInt } },
1351  { 385, kTypeVoid , { kTypeObject, kTypeInt } },
1352  { 386, kTypeVoid , { kTypeObject, kTypeInt } },
1353  { 387, kTypeEngineType, { kTypeFloat } },
1354  { 388, kTypeVoid , { kTypeObject, kTypeInt } },
1355  { 389, kTypeInt , { kTypeObject } },
1356  { 390, kTypeString , { kTypeObject } },
1357  { 391, kTypeObject , { kTypeString } },
1358  { 392, kTypeString , { kTypeObject } },
1359  { 393, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1360  { 394, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1361  { 395, kTypeInt , { kTypeObject } },
1362  { 396, kTypeString , { kTypeInt } },
1363  { 397, kTypeInt , { kTypeObject } },
1364  { 398, kTypeInt , { kTypeObject, kTypeInt } },
1365  { 399, kTypeVoid , { kTypeObject, kTypeInt } },
1366  { 400, kTypeVoid , { kTypeObject } },
1367  { 401, kTypeInt , { kTypeObject } },
1368  { 402, kTypeVoid , { } },
1369  { 403, kTypeVoid , { kTypeObject, kTypeObject } },
1370  { 404, kTypeVoid , { } },
1371  { 405, kTypeInt , { } },
1372  { 406, kTypeInt , { } },
1373  { 407, kTypeInt , { } },
1374  { 408, kTypeInt , { } },
1375  { 409, kTypeInt , { kTypeObject } },
1376  { 410, kTypeObject , { } },
1377  { 411, kTypeEngineType, { } },
1378  { 412, kTypeVoid , { kTypeObject, kTypeInt } },
1379  { 413, kTypeVoid , { kTypeObject } },
1380  { 414, kTypeVoid , { kTypeObject } },
1381  { 415, kTypeVoid , { kTypeObject, kTypeInt } },
1382  { 416, kTypeVoid , { kTypeObject, kTypeVector } },
1383  { 417, kTypeVoid , { kTypeString, kTypeObject } },
1384  { 418, kTypeInt , { kTypeObject } },
1385  { 419, kTypeObject , { } },
1386  { 420, kTypeInt , { kTypeObject } },
1387  { 421, kTypeVoid , { kTypeInt, kTypeObject } },
1388  { 422, kTypeInt , { kTypeObject, kTypeInt } },
1389  { 423, kTypeInt , { } },
1391  { 425, kTypeVoid , { kTypeObject } },
1392  { 426, kTypeVoid , { kTypeObject } },
1393  { 427, kTypeVoid , { kTypeObject, kTypeInt } },
1394  { 428, kTypeVoid , { kTypeObject, kTypeInt } },
1395  { 429, kTypeVoid , { kTypeObject, kTypeInt } },
1396  { 430, kTypeVoid , { kTypeObject } },
1397  { 431, kTypeVoid , { kTypeObject } },
1398  { 432, kTypeVoid , { kTypeObject, kTypeInt } },
1399  { 433, kTypeVoid , { kTypeObject } },
1400  { 434, kTypeVoid , { kTypeObject } },
1401  { 435, kTypeVoid , { kTypeObject, kTypeInt } },
1402  { 436, kTypeVoid , { kTypeObject, kTypeInt } },
1403  { 437, kTypeObject , { } },
1404  { 438, kTypeObject , { } },
1405  { 439, kTypeObject , { } },
1406  { 440, kTypeObject , { } },
1407  { 441, kTypeEngineType, { } },
1408  { 442, kTypeObject , { } },
1409  { 443, kTypeInt , { kTypeObject } },
1410  { 444, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1411  { 445, kTypeInt , { kTypeObject } },
1412  { 446, kTypeInt , { kTypeString, kTypeInt, kTypeObject } },
1414  { 448, kTypeFloat , { } },
1415  { 449, kTypeInt , { } },
1416  { 450, kTypeString , { } },
1417  { 451, kTypeEngineType, { kTypeInt } },
1418  { 452, kTypeVoid , { kTypeString } },
1419  { 453, kTypeInt , { kTypeString } },
1420  { 454, kTypeInt , { kTypeString } },
1421  { 455, kTypeInt , { kTypeObject } },
1422  { 456, kTypeVoid , { kTypeObject, kTypeInt } },
1423  { 457, kTypeEngineType, { kTypeInt } },
1424  { 458, kTypeInt , { kTypeString, kTypeString, kTypeString } },
1425  { 459, kTypeEngineType, { } },
1426  { 460, kTypeInt , { kTypeString, kTypeString } },
1427  { 461, kTypeVoid , { kTypeString, kTypeString } },
1428  { 462, kTypeVoid , { kTypeInt, kTypeObject } },
1429  { 463, kTypeEngineType, { kTypeInt } },
1430  { 464, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeObject } },
1431  { 465, kTypeEngineType, { } },
1432  { 466, kTypeEngineType, { } },
1433  { 467, kTypeEngineType, { } },
1434  { 468, kTypeEngineType, { } },
1435  { 469, kTypeVoid , { kTypeObject, kTypeObject } },
1436  { 470, kTypeInt , { kTypeFloat, kTypeObject } },
1437  { 471, kTypeInt , { kTypeString, kTypeString, kTypeInt } },
1438  { 472, kTypeVoid , { } },
1439  { 473, kTypeVoid , { kTypeString, kTypeInt } },
1441  { 475, kTypeInt , { kTypeObject } },
1442  { 476, kTypeFloat , { kTypeString } },
1443  { 477, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1444  { 478, kTypeObject , { kTypeObject } },
1445  { 479, kTypeInt , { kTypeObject } },
1446  { 480, kTypeEngineType, { kTypeEngineType } },
1447  { 481, kTypeEngineType, { } },
1448  { 482, kTypeEngineType, { } },
1449  { 483, kTypeInt , { kTypeObject } },
1450  { 484, kTypeVoid , { kTypeInt, kTypeObject } },
1451  { 485, kTypeFloat , { kTypeObject } },
1452  { 486, kTypeObject , { kTypeObject } },
1453  { 487, kTypeInt , { kTypeInt, kTypeObject } },
1454  { 488, kTypeObject , { kTypeObject, kTypeInt } },
1455  { 489, kTypeVoid , { kTypeString, kTypeObject } },
1456  { 490, kTypeVoid , { kTypeString, kTypeObject } },
1457  { 491, kTypeInt , { kTypeObject, kTypeObject } },
1459  { 493, kTypeInt , { kTypeInt, kTypeObject } },
1460  { 494, kTypeInt , { kTypeObject } },
1461  { 495, kTypeInt , { kTypeObject } },
1462  { 496, kTypeInt , { kTypeObject } },
1463  { 497, kTypeInt , { kTypeObject } },
1464  { 498, kTypeInt , { kTypeObject } },
1465  { 499, kTypeString , { kTypeObject } },
1466  { 500, kTypeString , { kTypeObject } },
1467  { 501, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1468  { 502, kTypeVoid , { kTypeInt, kTypeEngineType, kTypeInt } },
1469  { 503, kTypeVoid , { kTypeObject, kTypeObject } },
1470  { 504, kTypeInt , { kTypeObject } },
1471  { 505, kTypeInt , { kTypeObject } },
1472  { 506, kTypeObject , { } },
1473  { 507, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1474  { 508, kTypeInt , { } },
1475  { 509, kTypeVoid , { kTypeString } },
1476  { 510, kTypeInt , { kTypeObject, kTypeObject } },
1477  { 511, kTypeInt , { kTypeObject } },
1478  { 512, kTypeVoid , { } },
1479  { 513, kTypeInt , { } },
1480  { 514, kTypeString , { kTypeInt, kTypeObject } },
1481  { 515, kTypeFloat , { kTypeObject, kTypeInt } },
1482  { 516, kTypeVoid , { kTypeObject } },
1483  { 517, kTypeVoid , { kTypeObject } },
1484  { 518, kTypeInt , { kTypeVector, kTypeFloat } },
1485  { 519, kTypeObject , { kTypeObject } },
1486  { 520, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1487  { 521, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1488  { 522, kTypeInt , { kTypeObject } },
1489  { 523, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1490  { 524, kTypeInt , { kTypeInt, kTypeObject } },
1491  { 525, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1492  { 526, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1493  { 527, kTypeInt , { kTypeObject } },
1494  { 528, kTypeInt , { kTypeObject } },
1495  { 529, kTypeInt , { kTypeObject, kTypeObject } },
1496  { 530, kTypeInt , { kTypeObject } },
1497  { 531, kTypeInt , { kTypeObject } },
1498  { 532, kTypeInt , { kTypeObject } },
1499  { 533, kTypeObject , { kTypeObject } },
1500  { 534, kTypeString , { kTypeObject } },
1501  { 535, kTypeInt , { kTypeObject } },
1502  { 536, kTypeInt , { kTypeObject } },
1503  { 537, kTypeInt , { kTypeObject } },
1504  { 538, kTypeString , { kTypeObject } },
1505  { 539, kTypeInt , { kTypeObject } },
1506  { 540, kTypeInt , { kTypeObject } },
1507  { 541, kTypeInt , { kTypeObject } },
1508  { 542, kTypeObject , { } },
1509  { 543, kTypeInt , { kTypeInt, kTypeObject } },
1510  { 544, kTypeVoid , { kTypeObject, kTypeInt } },
1511  { 545, kTypeInt , { kTypeObject } },
1512  { 546, kTypeInt , { kTypeObject, kTypeInt } },
1513  { 547, kTypeVoid , { kTypeObject, kTypeInt } },
1514  { 548, kTypeObject , { } },
1515  { 549, kTypeObject , { } },
1516  { 550, kTypeInt , { kTypeObject, kTypeObject } },
1517  { 551, kTypeInt , { kTypeObject } },
1518  { 552, kTypeInt , { kTypeString, kTypeObject } },
1519  { 553, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1521  { 555, kTypeVoid , { kTypeObject } },
1522  { 556, kTypeObject , { kTypeObject } },
1523  { 557, kTypeVoid , { } },
1524  { 558, kTypeInt , { kTypeObject } },
1525  { 559, kTypeInt , { kTypeObject } },
1526  { 560, kTypeVoid , { kTypeString } },
1527  { 561, kTypeString , { } },
1528  { 562, kTypeObject , { kTypeObject } },
1529  { 563, kTypeVoid , { kTypeString } },
1530  { 564, kTypeVoid , { kTypeString } },
1531  { 565, kTypeVoid , { kTypeObject } },
1532  { 566, kTypeVoid , { } },
1533  { 567, kTypeVoid , { kTypeObject, kTypeInt } },
1534  { 568, kTypeVoid , { kTypeObject, kTypeInt } },
1535  { 569, kTypeInt , { kTypeObject } },
1536  { 570, kTypeInt , { kTypeObject } },
1537  { 571, kTypeFloat , { kTypeInt } },
1538  { 572, kTypeInt , { kTypeObject, kTypeObject } },
1539  { 573, kTypeVoid , { kTypeString, kTypeEngineType } },
1541  { 575, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1542  { 576, kTypeVoid , { kTypeInt } },
1543  { 577, kTypeInt , { kTypeObject } },
1544  { 578, kTypeVoid , { } },
1545  { 579, kTypeInt , { } },
1546  { 580, kTypeVoid , { kTypeObject } },
1547  { 581, kTypeVoid , { kTypeObject } },
1548  { 582, kTypeString , { kTypeObject } },
1549  { 583, kTypeEngineType, { } },
1550  { 584, kTypeObject , { kTypeObject, kTypeObject } },
1551  { 585, kTypeEngineType, { } },
1552  { 586, kTypeInt , { kTypeObject } },
1553  { 587, kTypeInt , { kTypeObject } },
1554  { 588, kTypeInt , { kTypeObject } },
1560  { 594, kTypeVoid , { kTypeString } },
1561  { 595, kTypeFloat , { kTypeString, kTypeString, kTypeObject } },
1562  { 596, kTypeInt , { kTypeString, kTypeString, kTypeObject } },
1567  { 601, kTypeVoid , { kTypeString, kTypeString, kTypeObject } },
1570  { 604, kTypeEngineType, { } },
1571  { 605, kTypeInt , { kTypeObject } },
1572  { 606, kTypeVoid , { kTypeObject, kTypeInt } },
1573  { 607, kTypeInt , { kTypeObject } },
1574  { 608, kTypeVoid , { kTypeObject, kTypeInt } },
1575  { 609, kTypeVoid , { } },
1576  { 610, kTypeVoid , { } },
1577  { 611, kTypeVoid , { } },
1578  { 612, kTypeVoid , { } },
1579  { 613, kTypeVoid , { } },
1580  { 614, kTypeVoid , { } },
1581  { 615, kTypeVoid , { } },
1582  { 616, kTypeInt , { kTypeObject } },
1583  { 617, kTypeVoid , { kTypeInt, kTypeObject } },
1584  { 618, kTypeEngineType, { kTypeFloat } },
1586  { 620, kTypeVoid , { kTypeInt, kTypeObject } },
1588  { 622, kTypeVoid , { kTypeInt, kTypeFloat, kTypeObject } },
1589  { 623, kTypeFloat , { kTypeObject } },
1590  { 624, kTypeVoid , { kTypeString } },
1591  { 625, kTypeVoid , { kTypeObject } },
1592  { 626, kTypeInt , { kTypeObject } },
1593  { 627, kTypeInt , { kTypeObject } },
1594  { 628, kTypeInt , { kTypeString, kTypeObject } },
1595  { 629, kTypeInt , { kTypeObject, kTypeObject } },
1596  { 630, kTypeVoid , { kTypeInt } },
1597  { 631, kTypeVoid , { kTypeString, kTypeInt } },
1599  { 633, kTypeInt , { kTypeObject } },
1600  { 634, kTypeString , { kTypeInt } },
1601  { 635, kTypeInt , { kTypeObject, kTypeObject } },
1602  { 636, kTypeVoid , { kTypeObject, kTypeInt } },
1603  { 637, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1604  { 638, kTypeString , { kTypeInt, kTypeObject } },
1605  { 639, kTypeString , { kTypeObject } },
1606  { 640, kTypeVoid , { kTypeObject, kTypeString } },
1607  { 641, kTypeVoid , { kTypeInt, kTypeObject } },
1608  { 642, kTypeVoid , { kTypeInt, kTypeObject } },
1609  { 643, kTypeInt , { kTypeString, kTypeObject } },
1610  { 644, kTypeString , { kTypeObject } },
1611  { 645, kTypeInt , { kTypeString, kTypeObject } },
1612  { 646, kTypeInt , { kTypeObject } },
1613  { 647, kTypeVoid , { } },
1614  { 648, kTypeInt , { kTypeObject } },
1615  { 649, kTypeFloat , { kTypeInt, kTypeObject } },
1616  { 650, kTypeVoid , { kTypeString, kTypeString, kTypeObject } },
1617  { 651, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1618  { 652, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeObject } },
1619  { 653, kTypeInt , { kTypeObject, kTypeObject } },
1620  { 654, kTypeInt , { kTypeObject, kTypeObject } },
1621  { 655, kTypeObject , { kTypeObject } },
1622  { 656, kTypeVoid , { kTypeInt } },
1624  { 658, kTypeString , { kTypeString, kTypeString } },
1625  { 659, kTypeInt , { } },
1626  { 660, kTypeVoid , { kTypeObject, kTypeObject } },
1627  { 661, kTypeVoid , { kTypeObject, kTypeString } },
1628  { 662, kTypeVoid , { kTypeObject, kTypeString } },
1630  { 664, kTypeString , { kTypeObject } },
1631  { 665, kTypeVoid , { kTypeObject } },
1632  { 666, kTypeInt , { kTypeString, kTypeString } },
1633  { 667, kTypeVoid , { kTypeObject } },
1634  { 668, kTypeInt , { kTypeObject } },
1635  { 669, kTypeVoid , { kTypeObject } },
1636  { 670, kTypeVoid , { kTypeObject } },
1637  { 671, kTypeVoid , { kTypeObject, kTypeObject } },
1638  { 672, kTypeInt , { kTypeInt } },
1639  { 673, kTypeInt , { kTypeObject } },
1641  { 675, kTypeVoid , { kTypeObject } },
1642  { 676, kTypeInt , { kTypeObject, kTypeObject } },
1643  { 677, kTypeInt , { kTypeObject } },
1644  { 678, kTypeVoid , { kTypeObject, kTypeFloat } },
1645  { 679, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1646  { 680, kTypeVoid , { kTypeObject } },
1647  { 681, kTypeVoid , { kTypeInt } },
1648  { 682, kTypeObject , { kTypeObject } },
1649  { 683, kTypeVoid , { kTypeString } },
1650  { 684, kTypeVoid , { kTypeString } },
1651  { 685, kTypeInt , { kTypeObject } },
1652  { 686, kTypeVoid , { kTypeObject, kTypeObject } },
1653  { 687, kTypeVoid , { kTypeObject, kTypeInt } },
1654  { 688, kTypeInt , { kTypeObject } },
1655  { 689, kTypeInt , { kTypeObject } },
1656  { 690, kTypeVoid , { kTypeObject, kTypeInt } },
1657  { 691, kTypeVoid , { kTypeInt, kTypeInt } },
1658  { 692, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1659  { 693, kTypeObject , { } },
1660  { 694, kTypeFloat , { kTypeInt } },
1661  { 695, kTypeVoid , { kTypeObject, kTypeFloat } },
1662  { 696, kTypeVoid , { kTypeObject, kTypeFloat } },
1663  { 697, kTypeVoid , { kTypeObject } },
1664  { 698, kTypeVoid , { kTypeObject } },
1665  { 699, kTypeInt , { kTypeObject } },
1666  { 700, kTypeVoid , { kTypeObject, kTypeInt } },
1667  { 701, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1668  { 702, kTypeVoid , { } },
1669  { 703, kTypeVoid , { } },
1670  { 704, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1671  { 705, kTypeVoid , { kTypeObject, kTypeInt } },
1672  { 706, kTypeVoid , { kTypeObject, kTypeInt } },
1673  { 707, kTypeObject , { } },
1674  { 708, kTypeInt , { kTypeObject } },
1675  { 709, kTypeVoid , { kTypeString, kTypeInt, kTypeObject } },
1676  { 710, kTypeString , { kTypeString, kTypeString, kTypeInt } },
1677  { 711, kTypeInt , { kTypeObject } },
1678  { 712, kTypeInt , { kTypeObject } },
1679  { 713, kTypeVoid , { kTypeObject, kTypeInt } },
1680  { 714, kTypeInt , { kTypeObject } },
1681  { 715, kTypeVoid , { kTypeObject } },
1682  { 716, kTypeVoid , { } },
1683  { 717, kTypeVoid , { } },
1684  { 718, kTypeVoid , { } },
1685  { 719, kTypeVoid , { kTypeObject } },
1686  { 720, kTypeVoid , { kTypeInt, kTypeInt } },
1687  { 721, kTypeVoid , { kTypeString } },
1688  { 722, kTypeVoid , { kTypeString } },
1690  { 724, kTypeVoid , { kTypeObject, kTypeString } },
1691  { 725, kTypeInt , { kTypeEngineType } },
1692  { 726, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1693  { 727, kTypeObject , { kTypeInt } },
1694  { 728, kTypeInt , { kTypeString, kTypeInt } },
1695  { 729, kTypeVoid , { kTypeString, kTypeInt } },
1696  { 730, kTypeInt , { kTypeString } },
1697  { 731, kTypeInt , { kTypeString } },
1698  { 732, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1699  { 733, kTypeInt , { kTypeObject, kTypeObject } },
1700  { 734, kTypeVoid , { kTypeObject, kTypeString } },
1702  { 736, kTypeVoid , { kTypeObject, kTypeVector } },
1703  { 737, kTypeVoid , { kTypeInt, kTypeObject, kTypeObject } },
1704  { 738, kTypeInt , { kTypeObject, kTypeObject } },
1705  { 739, kTypeInt , { kTypeObject, kTypeObject } },
1706  { 740, kTypeVoid , { kTypeObject } },
1707  { 741, kTypeObject , { kTypeObject } },
1708  { 742, kTypeObject , { kTypeObject } },
1709  { 743, kTypeVoid , { kTypeObject, kTypeInt } },
1710  { 744, kTypeInt , { kTypeObject, kTypeString } },
1711  { 745, kTypeVoid , { kTypeObject, kTypeObject } },
1712  { 746, kTypeVoid , { kTypeObject, kTypeInt } },
1713  { 747, kTypeInt , { kTypeString } },
1714  { 748, kTypeInt , { kTypeScriptState, kTypeObject, kTypeInt } },
1715  { 749, kTypeInt , { kTypeObject } },
1716  { 750, kTypeVoid , { kTypeObject, kTypeInt } },
1717  { 751, kTypeObject , { kTypeObject, kTypeInt } },
1718  { 752, kTypeString , { kTypeObject, kTypeString } },
1719  { 753, kTypeVoid , { kTypeString, kTypeInt } },
1720  { 754, kTypeVoid , { kTypeInt, kTypeObject } },
1721  { 755, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1722  { 756, kTypeInt , { kTypeObject, kTypeObject } },
1723  { 757, kTypeObject , { } },
1724  { 758, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1725  { 759, kTypeInt , { kTypeObject } },
1726  { 760, kTypeInt , { } },
1727  { 761, kTypeFloat , { } },
1728  { 762, kTypeInt , { kTypeObject } },
1729  { 763, kTypeInt , { kTypeObject } },
1730  { 764, kTypeInt , { kTypeObject, kTypeInt } },
1731  { 765, kTypeVoid , { kTypeObject, kTypeInt } },
1732  { 766, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1733  { 767, kTypeInt , { kTypeObject, kTypeInt } },
1734  { 768, kTypeVoid , { kTypeObject, kTypeInt, kTypeObject } },
1735  { 769, kTypeObject , { kTypeObject, kTypeInt } },
1736  { 770, kTypeVoid , { kTypeString, kTypeInt, kTypeInt } },
1737  { 771, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1738  { 772, kTypeFloat , { kTypeObject, kTypeInt } },
1740  { 774, kTypeInt , { kTypeObject } },
1741  { 775, kTypeInt , { kTypeObject } },
1744  { 778, kTypeVoid , { kTypeObject, kTypeInt, kTypeObject } },
1745  { 779, kTypeInt , { kTypeObject, kTypeObject } },
1746  { 780, kTypeVoid , { kTypeFloat, kTypeObject } },
1747  { 781, kTypeFloat , { kTypeObject } },
1748  { 782, kTypeVoid , { } },
1749  { 783, kTypeVoid , { } },
1750  { 784, kTypeVoid , { } },
1751  { 785, kTypeVoid , { } },
1752  { 786, kTypeInt , { kTypeObject, kTypeInt } },
1754  { 788, kTypeInt , { } },
1755  { 789, kTypeInt , { kTypeObject } },
1756  { 790, kTypeVoid , { kTypeObject, kTypeInt } },
1757  { 791, kTypeVoid , { kTypeObject } },
1758  { 792, kTypeInt , { kTypeObject } },
1759  { 793, kTypeInt , { kTypeObject, kTypeString } },
1760  { 794, kTypeVoid , { kTypeObject, kTypeFloat } },
1762  { 796, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1763  { 797, kTypeVoid , { kTypeObject } },
1764  { 798, kTypeVoid , { kTypeObject } },
1765  { 799, kTypeVoid , { kTypeString, kTypeString, kTypeString } },
1766  { 800, kTypeVoid , { kTypeObject } },
1767  { 801, kTypeVoid , { kTypeObject } },
1768  { 802, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1769  { 803, kTypeInt , { kTypeObject } },
1770  { 804, kTypeVoid , { kTypeObject } },
1771  { 805, kTypeInt , { kTypeString, kTypeObject, kTypeInt } },
1772  { 806, kTypeVoid , { kTypeObject } },
1773  { 807, kTypeInt , { kTypeString, kTypeString, kTypeInt } },
1774  { 808, kTypeInt , { kTypeString, kTypeString, kTypeInt } },
1775  { 809, kTypeVoid , { } },
1776  { 810, kTypeVoid , { } },
1777  { 811, kTypeVoid , { } },
1778  { 812, kTypeVoid , { } },
1779  { 813, kTypeVoid , { } },
1780  { 814, kTypeVoid , { kTypeObject, kTypeInt } },
1781  { 815, kTypeInt , { kTypeObject } },
1782  { 816, kTypeVoid , { kTypeInt, kTypeObject } },
1783  { 817, kTypeInt , { kTypeObject, kTypeInt } },
1784  { 818, kTypeInt , { kTypeObject, kTypeInt } },
1785  { 819, kTypeInt , { kTypeObject, kTypeObject } },
1786  { 820, kTypeInt , { kTypeObject } },
1787  { 821, kTypeInt , { kTypeFloat, kTypeInt, kTypeInt, kTypeObject } },
1788  { 822, kTypeVoid , { kTypeObject } },
1789  { 823, kTypeVoid , { kTypeInt, kTypeObject } },
1790  { 824, kTypeFloat , { kTypeFloat, kTypeFloat } },
1791  { 825, kTypeObject , { kTypeObject } },
1792  { 826, kTypeVoid , { kTypeObject } },
1793  { 827, kTypeInt , { kTypeObject } },
1794  { 828, kTypeString , { } },
1795  { 829, kTypeVoid , { } },
1796  { 830, kTypeInt , { } },
1797  { 831, kTypeInt , { kTypeObject, kTypeObject } },
1799  { 833, kTypeInt , { kTypeInt, kTypeObject } },
1800  { 834, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1801  { 835, kTypeInt , { kTypeObject } },
1802  { 836, kTypeInt , { kTypeObject } },
1803  { 837, kTypeInt , { kTypeObject, kTypeObject } },
1804  { 838, kTypeInt , { kTypeObject } },
1805  { 839, kTypeInt , { } },
1806  { 840, kTypeInt , { kTypeObject, kTypeObject } },
1807  { 841, kTypeInt , { kTypeObject } },
1808  { 842, kTypeVoid , { kTypeObject } },
1809  { 843, kTypeVoid , { kTypeObject, kTypeInt } },
1810  { 844, kTypeVoid , { kTypeObject, kTypeObject } },
1811  { 845, kTypeVoid , { } },
1812  { 846, kTypeVoid , { kTypeInt } },
1813  { 847, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject, kTypeInt } }
1814 };
1815 
1817 const Functions::FunctionDefaults Functions::kFunctionDefaults[] = {
1818  { 0, { } },
1819  { 1, { } },
1820  { 2, { &kDefaultInt18, &kDefaultInt9 } },
1821  { 3, { &kDefaultInt18, &kDefaultInt9 } },
1822  { 4, { } },
1823  { 5, { } },
1824  { 6, { } },
1825  { 7, { } },
1826  { 8, { &kDefaultObjectSelf } },
1827  { 9, { &kDefaultFalse, &kDefaultObjectInvalid } },
1828  { 10, { } },
1829  { 11, { } },
1830  { 12, { &kDefaultInt0, &kDefaultInt0, &kDefaultInt0 } },
1831  { 13, { } },
1832  { 14, { } },
1833  { 15, { } },
1834  { 16, { } },
1835  { 17, { } },
1836  { 18, { } },
1837  { 19, { } },
1838  { 20, { } },
1839  { 21, { &kDefaultFalse } },
1840  { 22, { &kDefaultFalse, &kDefaultFloat1_0 } },
1841  { 23, { &kDefaultFalse, &kDefaultFloat40_0 } },
1842  { 24, { } },
1843  { 25, { } },
1844  { 26, { } },
1845  { 27, { } },
1846  { 28, { } },
1847  { 29, { } },
1848  { 30, { } },
1849  { 31, { &kDefaultObjectSelf, &kDefaultInt1 } },
1850  { 32, { &kDefaultFalse } },
1851  { 33, { &kDefaultFalse } },
1852  { 34, { } },
1853  { 35, { &kDefaultTrue } },
1854  { 36, { &kDefaultObjectSelf } },
1855  { 37, { &kDefaultFalse } },
1856  { 38, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
1857  { 39, { &kDefaultTalkVolumeTalk } },
1858  { 40, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
1859  { 41, { } },
1860  { 42, { } },
1861  { 43, { } },
1862  { 44, { } },
1864  { 46, { &kDefaultInt0, &kDefaultFloat0_0 } },
1865  { 47, { } },
1867  { 49, { &kDefaultObjectSelf } },
1868  { 50, { &kDefaultObjectSelf } },
1869  { 51, { } },
1870  { 52, { } },
1871  { 53, { } },
1872  { 54, { } },
1873  { 55, { } },
1874  { 56, { } },
1875  { 57, { } },
1876  { 58, { } },
1877  { 59, { } },
1878  { 60, { } },
1879  { 61, { } },
1880  { 62, { } },
1881  { 63, { } },
1882  { 64, { } },
1883  { 65, { } },
1884  { 66, { } },
1885  { 67, { } },
1886  { 68, { } },
1887  { 69, { } },
1888  { 70, { } },
1889  { 71, { } },
1890  { 72, { } },
1891  { 73, { } },
1892  { 74, { } },
1893  { 75, { } },
1894  { 76, { } },
1895  { 77, { } },
1896  { 78, { } },
1897  { 79, { &kDefaultInt0, &kDefaultStringEmpty } },
1898  { 80, { &kDefaultObjectSelf } },
1899  { 81, { &kDefaultIntMinus1 } },
1900  { 82, { } },
1901  { 83, { &kDefaultInt0, &kDefaultFloat0_0 } },
1902  { 84, { &kDefaultObjectSelf, &kDefaultInt0, &kDefaultFalse } },
1903  { 85, { } },
1904  { 86, { } },
1905  { 87, { } },
1906  { 88, { } },
1907  { 89, { } },
1908  { 90, { } },
1909  { 91, { } },
1910  { 92, { } },
1911  { 93, { &kDefaultObjectInvalid } },
1912  { 94, { &kDefaultObjectInvalid } },
1913  { 95, { &kDefaultInt1 } },
1914  { 96, { &kDefaultInt1 } },
1915  { 97, { &kDefaultInt1 } },
1916  { 98, { &kDefaultInt1 } },
1917  { 99, { &kDefaultInt1 } },
1918  { 100, { &kDefaultInt1 } },
1919  { 101, { &kDefaultInt1 } },
1920  { 102, { &kDefaultInt1 } },
1921  { 103, { &kDefaultInt1 } },
1922  { 104, { } },
1923  { 105, { &kDefaultObjectSelf } },
1924  { 106, { } },
1925  { 107, { } },
1926  { 108, { &kDefaultFloatMinus1_0, &kDefaultFloat0_0, &kDefaultObjectInvalid, &kDefaultStringEmpty } },
1927  { 109, { } },
1928  { 110, { } },
1929  { 111, { &kDefaultIntMinus1 } },
1930  { 112, { } },
1931  { 113, { } },
1932  { 114, { } },
1933  { 115, { &kDefaultObjectSelf } },
1934  { 116, { &kDefaultObjectSelf } },
1935  { 117, { &kDefaultStringEmpty, &kDefaultObjectSelf, &kDefaultObjectInvalid } },
1936  { 118, { &kDefaultObjectSelf } },
1937  { 119, { &kDefaultObjectSelf } },
1938  { 120, { &kDefaultObjectSelf } },
1939  { 121, { } },
1940  { 122, { } },
1941  { 123, { } },
1942  { 124, { } },
1943  { 125, { &kDefaultTrue } },
1944  { 126, { &kDefaultObjectSelf } },
1945  { 127, { &kDefaultTrue, &kDefaultObjectSelf } },
1948  { 130, { &kDefaultObjectSelf } },
1949  { 131, { } },
1950  { 132, { } },
1951  { 133, { &kDefaultFalse, &kDefaultTrue } },
1952  { 134, { &kDefaultObjectInvalid } },
1953  { 135, { } },
1954  { 136, { } },
1955  { 137, { } },
1956  { 138, { &kDefaultObjectSelf } },
1957  { 139, { } },
1958  { 140, { } },
1959  { 141, { } },
1961  { 143, { } },
1962  { 144, { } },
1963  { 145, { } },
1964  { 146, { &kDefaultObjectSelf } },
1965  { 147, { &kDefaultObjectSelf } },
1966  { 148, { } },
1967  { 149, { } },
1968  { 150, { } },
1969  { 151, { } },
1970  { 152, { } },
1971  { 153, { } },
1972  { 154, { } },
1973  { 155, { &kDefaultObjectSelf } },
1974  { 156, { } },
1975  { 157, { } },
1976  { 158, { } },
1977  { 159, { } },
1978  { 160, { } },
1979  { 161, { } },
1980  { 162, { &kDefaultObjectSelf } },
1981  { 163, { &kDefaultObjectSelf } },
1982  { 164, { } },
1983  { 165, { } },
1984  { 166, { } },
1985  { 167, { &kDefaultFloat0_0, &kDefaultInt0 } },
1986  { 168, { } },
1987  { 169, { &kDefaultObjectSelf } },
1988  { 170, { } },
1990  { 172, { &kDefaultObjectSelf } },
1991  { 173, { } },
1992  { 174, { } },
1993  { 175, { } },
1994  { 176, { &kDefaultInt0 } },
1995  { 177, { } },
1996  { 178, { } },
1997  { 179, { } },
1998  { 180, { &kDefaultFalse } },
1999  { 181, { &kDefaultObjectSelf, &kDefaultTrue } },
2000  { 182, { &kDefaultObjectSelf, &kDefaultTrue } },
2001  { 183, { &kDefaultObjectSelf, &kDefaultTrue } },
2002  { 184, { &kDefaultObjectSelf, &kDefaultTrue } },
2003  { 185, { } },
2004  { 186, { } },
2005  { 187, { &kDefaultObjectSelf } },
2006  { 188, { &kDefaultObjectSelf } },
2007  { 189, { } },
2008  { 190, { } },
2009  { 191, { } },
2010  { 192, { &kDefaultObjectSelf, &kDefaultTrue } },
2011  { 193, { &kDefaultObjectSelf, &kDefaultTrue } },
2012  { 194, { } },
2013  { 195, { } },
2014  { 196, { &kDefaultTrue } },
2015  { 197, { } },
2016  { 198, { } },
2017  { 199, { } },
2018  { 200, { &kDefaultInt0 } },
2019  { 201, { } },
2020  { 202, { } },
2021  { 203, { &kDefaultStringEmpty } },
2023  { 205, { } },
2024  { 206, { } },
2025  { 207, { } },
2026  { 208, { } },
2027  { 209, { &kDefaultObjectSelf } },
2028  { 210, { } },
2029  { 211, { } },
2030  { 212, { &kDefaultObjectSelf } },
2031  { 213, { } },
2032  { 214, { } },
2033  { 215, { } },
2034  { 216, { &kDefaultFloat0_0 } },
2035  { 217, { } },
2036  { 218, { } },
2037  { 219, { } },
2039  { 221, { &kDefaultTalkVolumeTalk } },
2040  { 222, { } },
2041  { 223, { } },
2042  { 224, { } },
2043  { 225, { } },
2045  { 227, { &kDefaultObjectTypeAll, &kDefaultObjectSelf, &kDefaultInt1 } },
2046  { 228, { &kDefaultInt1 } },
2047  { 229, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultObjectTypeAll } },
2048  { 230, { } },
2049  { 231, { } },
2050  { 232, { } },
2051  { 233, { } },
2053  { 235, { &kDefaultObjectSelf } },
2054  { 236, { } },
2055  { 237, { } },
2056  { 238, { } },
2057  { 239, { &kDefaultGenderMale } },
2058  { 240, { &kDefaultTalkVolumeTalk } },
2059  { 241, { &kDefaultFloat0_0 } },
2060  { 242, { } },
2061  { 243, { &kDefaultFalse, &kDefaultStringEmpty } },
2062  { 244, { &kDefaultTrue } },
2063  { 245, { } },
2064  { 246, { } },
2065  { 247, { } },
2066  { 248, { } },
2067  { 249, { } },
2068  { 250, { } },
2069  { 251, { &kDefaultObjectSelf } },
2070  { 252, { } },
2071  { 253, { } },
2072  { 254, { } },
2073  { 255, { &kDefaultStringEmpty, &kDefaultObjectInvalid, &kDefaultObjectInvalid } },
2074  { 256, { } },
2075  { 257, { } },
2076  { 258, { } },
2077  { 259, { } },
2078  { 260, { } },
2079  { 261, { } },
2080  { 262, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2081  { 263, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2082  { 264, { &kDefaultObjectSelf } },
2083  { 265, { } },
2084  { 266, { } },
2085  { 267, { } },
2086  { 268, { } },
2087  { 269, { } },
2088  { 270, { } },
2089  { 271, { } },
2090  { 272, { } },
2091  { 273, { &kDefaultIntMinus1, &kDefaultObjectSelf } },
2092  { 274, { &kDefaultObjectSelf } },
2093  { 275, { } },
2094  { 276, { &kDefaultObjectSelf } },
2095  { 277, { &kDefaultObjectSelf } },
2096  { 278, { &kDefaultObjectSelf } },
2097  { 279, { &kDefaultObjectSelf } },
2098  { 280, { &kDefaultObjectSelf } },
2099  { 281, { &kDefaultObjectSelf } },
2100  { 282, { } },
2101  { 283, { } },
2102  { 284, { } },
2103  { 285, { &kDefaultObjectSelf } },
2104  { 286, { &kDefaultFloat1_0 } },
2105  { 287, { } },
2106  { 288, { } },
2107  { 289, { &kDefaultObjectSelf } },
2108  { 290, { &kDefaultObjectSelf } },
2109  { 291, { } },
2110  { 292, { } },
2111  { 293, { } },
2112  { 294, { } },
2113  { 295, { } },
2114  { 296, { &kDefaultObjectSelf } },
2115  { 297, { &kDefaultObjectSelf } },
2116  { 298, { } },
2117  { 299, { } },
2118  { 300, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
2119  { 301, { } },
2120  { 302, { } },
2121  { 303, { } },
2122  { 304, { &kDefaultObjectSelf } },
2123  { 305, { } },
2124  { 306, { &kDefaultObjectSelf } },
2125  { 307, { &kDefaultObjectSelf } },
2126  { 308, { &kDefaultObjectSelf } },
2127  { 309, { } },
2128  { 310, { } },
2129  { 311, { } },
2130  { 312, { } },
2131  { 313, { } },
2132  { 314, { } },
2133  { 315, { &kDefaultObjectSelf } },
2134  { 316, { &kDefaultObjectSelf } },
2135  { 317, { &kDefaultObjectSelf } },
2136  { 318, { } },
2137  { 319, { &kDefaultObjectSelf } },
2138  { 320, { &kDefaultObjectSelf } },
2139  { 321, { &kDefaultObjectSelf } },
2140  { 322, { } },
2141  { 323, { &kDefaultTrue, &kDefaultFalse } },
2142  { 324, { } },
2143  { 325, { } },
2144  { 326, { } },
2145  { 327, { &kDefaultObjectSelf } },
2146  { 328, { } },
2147  { 329, { } },
2148  { 330, { } },
2149  { 331, { &kDefaultObjectSelf } },
2150  { 332, { } },
2151  { 333, { } },
2152  { 334, { &kDefaultObjectSelf } },
2153  { 335, { &kDefaultObjectSelf } },
2154  { 336, { } },
2155  { 337, { } },
2156  { 338, { } },
2157  { 339, { &kDefaultObjectSelf } },
2158  { 340, { &kDefaultObjectSelf } },
2159  { 341, { &kDefaultObjectSelf } },
2160  { 342, { &kDefaultObjectSelf } },
2161  { 343, { &kDefaultObjectSelf } },
2162  { 344, { } },
2163  { 345, { } },
2164  { 346, { } },
2165  { 347, { } },
2166  { 348, { } },
2167  { 349, { } },
2168  { 350, { } },
2169  { 351, { } },
2170  { 352, { } },
2171  { 353, { } },
2172  { 354, { &kDefaultObjectSelf } },
2173  { 355, { &kDefaultObjectSelf } },
2174  { 356, { } },
2175  { 357, { } },
2176  { 358, { } },
2177  { 359, { } },
2178  { 360, { &kDefaultFalse, &kDefaultFloat40_0 } },
2179  { 361, { } },
2180  { 362, { } },
2181  { 363, { } },
2182  { 364, { &kDefaultObjectSelf } },
2183  { 365, { &kDefaultObjectSelf } },
2184  { 366, { &kDefaultObjectSelf } },
2185  { 367, { } },
2186  { 368, { } },
2187  { 369, { } },
2188  { 370, { } },
2189  { 371, { } },
2190  { 372, { } },
2191  { 373, { } },
2192  { 374, { } },
2193  { 375, { } },
2194  { 376, { } },
2195  { 377, { &kDefaultObjectSelf } },
2196  { 378, { &kDefaultIntMinus1 } },
2197  { 379, { } },
2198  { 380, { &kDefaultTrue } },
2199  { 381, { &kDefaultTrue } },
2200  { 382, { &kDefaultFalse, &kDefaultFloat30_0 } },
2202  { 384, { } },
2203  { 385, { &kDefaultInt1 } },
2204  { 386, { } },
2205  { 387, { } },
2206  { 388, { } },
2207  { 389, { &kDefaultObjectSelf } },
2208  { 390, { &kDefaultObjectSelf } },
2209  { 391, { } },
2210  { 392, { &kDefaultObjectSelf } },
2211  { 393, { &kDefaultTrue } },
2212  { 394, { &kDefaultTrue } },
2213  { 395, { } },
2214  { 396, { } },
2215  { 397, { } },
2216  { 398, { } },
2217  { 399, { &kDefaultObjectInvalid, &kDefaultFalse } },
2218  { 400, { &kDefaultObjectInvalid } },
2219  { 401, { &kDefaultObjectSelf } },
2220  { 402, { } },
2221  { 403, { } },
2222  { 404, { } },
2223  { 405, { } },
2224  { 406, { } },
2225  { 407, { } },
2226  { 408, { } },
2227  { 409, { &kDefaultObjectSelf } },
2228  { 410, { } },
2229  { 411, { } },
2230  { 412, { } },
2231  { 413, { } },
2232  { 414, { } },
2233  { 415, { } },
2234  { 416, { } },
2235  { 417, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
2236  { 418, { &kDefaultObjectSelf } },
2237  { 419, { } },
2238  { 420, { } },
2239  { 421, { &kDefaultObjectSelf } },
2240  { 422, { &kDefaultObjectInvalid, &kDefaultFalse } },
2241  { 423, { } },
2242  { 424, { &kDefaultObjectInvalid } },
2243  { 425, { } },
2244  { 426, { } },
2245  { 427, { } },
2246  { 428, { } },
2247  { 429, { } },
2248  { 430, { } },
2249  { 431, { } },
2250  { 432, { } },
2251  { 433, { } },
2252  { 434, { } },
2253  { 435, { } },
2254  { 436, { } },
2255  { 437, { } },
2256  { 438, { } },
2257  { 439, { } },
2258  { 440, { } },
2259  { 441, { } },
2260  { 442, { } },
2261  { 443, { } },
2262  { 444, { &kDefaultFalse } },
2263  { 445, { } },
2264  { 446, { &kDefaultInt1, &kDefaultObjectSelf } },
2265  { 447, { } },
2266  { 448, { } },
2267  { 449, { } },
2268  { 450, { } },
2269  { 451, { } },
2270  { 452, { } },
2271  { 453, { } },
2272  { 454, { } },
2273  { 455, { &kDefaultObjectSelf } },
2274  { 456, { } },
2275  { 457, { } },
2276  { 458, { &kDefaultStringEmpty, &kDefaultStringEmpty } },
2277  { 459, { } },
2278  { 460, { } },
2279  { 461, { } },
2280  { 462, { &kDefaultObjectSelf } },
2281  { 463, { } },
2282  { 464, { &kDefaultInt0, &kDefaultObjectSelf } },
2283  { 465, { } },
2284  { 466, { } },
2285  { 467, { } },
2286  { 468, { } },
2287  { 469, { } },
2288  { 470, { &kDefaultObjectSelf } },
2289  { 471, { &kDefaultFalse } },
2290  { 472, { } },
2291  { 473, { &kDefaultTrue } },
2293  { 475, { } },
2294  { 476, { } },
2295  { 477, { &kDefaultObjectSelf } },
2296  { 478, { &kDefaultObjectSelf } },
2297  { 479, { } },
2298  { 480, { } },
2299  { 481, { } },
2300  { 482, { } },
2301  { 483, { &kDefaultObjectSelf } },
2302  { 484, { &kDefaultObjectSelf } },
2303  { 485, { &kDefaultObjectSelf } },
2304  { 486, { &kDefaultObjectSelf } },
2305  { 487, { &kDefaultObjectSelf } },
2306  { 488, { &kDefaultObjectSelf, &kDefaultTrue } },
2307  { 489, { &kDefaultObjectSelf } },
2308  { 490, { &kDefaultObjectSelf } },
2309  { 491, { } },
2311  { 493, { &kDefaultObjectSelf } },
2312  { 494, { } },
2313  { 495, { } },
2314  { 496, { } },
2315  { 497, { } },
2316  { 498, { } },
2317  { 499, { } },
2318  { 500, { } },
2319  { 501, { &kDefaultProjectilePathTypeDefault } },
2320  { 502, { &kDefaultProjectilePathTypeDefault } },
2321  { 503, { &kDefaultObjectSelf } },
2322  { 504, { &kDefaultObjectSelf } },
2323  { 505, { &kDefaultObjectSelf } },
2324  { 506, { } },
2325  { 507, { } },
2326  { 508, { } },
2327  { 509, { } },
2328  { 510, { &kDefaultObjectSelf } },
2329  { 511, { } },
2330  { 512, { } },
2331  { 513, { } },
2332  { 514, { &kDefaultObjectSelf } },
2333  { 515, { } },
2334  { 516, { } },
2335  { 517, { } },
2336  { 518, { } },
2337  { 519, { } },
2338  { 520, { } },
2339  { 521, { } },
2340  { 522, { &kDefaultObjectSelf } },
2341  { 523, { &kDefaultObjectSelf } },
2342  { 524, { &kDefaultObjectSelf } },
2343  { 525, { &kDefaultTrue } },
2344  { 526, { &kDefaultTrue } },
2345  { 527, { } },
2346  { 528, { } },
2347  { 529, { } },
2348  { 530, { } },
2349  { 531, { } },
2350  { 532, { } },
2351  { 533, { } },
2352  { 534, { } },
2353  { 535, { } },
2354  { 536, { } },
2355  { 537, { } },
2356  { 538, { } },
2357  { 539, { } },
2358  { 540, { } },
2359  { 541, { } },
2360  { 542, { } },
2361  { 543, { &kDefaultObjectSelf } },
2362  { 544, { &kDefaultObjectSelf, &kDefaultTrue } },
2363  { 545, { &kDefaultObjectSelf } },
2364  { 546, { } },
2365  { 547, { } },
2366  { 548, { } },
2367  { 549, { } },
2368  { 550, { } },
2369  { 551, { } },
2370  { 552, { } },
2371  { 553, { } },
2373  { 555, { } },
2374  { 556, { &kDefaultObjectSelf } },
2375  { 557, { } },
2376  { 558, { } },
2377  { 559, { } },
2378  { 560, { } },
2379  { 561, { } },
2380  { 562, { } },
2381  { 563, { } },
2382  { 564, { } },
2383  { 565, { } },
2384  { 566, { } },
2385  { 567, { } },
2386  { 568, { } },
2387  { 569, { } },
2388  { 570, { } },
2389  { 571, { } },
2390  { 572, { &kDefaultObjectSelf } },
2391  { 573, { } },
2392  { 574, { &kDefaultInt0, &kDefaultIntMinus1, &kDefaultFalse } },
2393  { 575, { &kDefaultInt0, &kDefaultIntMinus1, &kDefaultFalse } },
2394  { 576, { } },
2395  { 577, { } },
2396  { 578, { } },
2397  { 579, { } },
2398  { 580, { } },
2399  { 581, { } },
2400  { 582, { } },
2401  { 583, { } },
2402  { 584, { &kDefaultObjectInvalid } },
2403  { 585, { } },
2404  { 586, { } },
2405  { 587, { &kDefaultObjectSelf } },
2406  { 588, { } },
2407  { 589, { &kDefaultObjectInvalid } },
2408  { 590, { &kDefaultObjectInvalid } },
2409  { 591, { &kDefaultObjectInvalid } },
2410  { 592, { &kDefaultObjectInvalid } },
2411  { 593, { &kDefaultObjectInvalid } },
2412  { 594, { } },
2413  { 595, { &kDefaultObjectInvalid } },
2414  { 596, { &kDefaultObjectInvalid } },
2415  { 597, { &kDefaultObjectInvalid } },
2416  { 598, { &kDefaultObjectInvalid } },
2417  { 599, { &kDefaultObjectInvalid } },
2418  { 600, { &kDefaultObjectInvalid, &kDefaultStringEmpty } },
2419  { 601, { &kDefaultObjectInvalid } },
2420  { 602, { &kDefaultObjectInvalid } },
2421  { 603, { &kDefaultObjectInvalid, &kDefaultObjectInvalid } },
2422  { 604, { } },
2423  { 605, { } },
2424  { 606, { } },
2425  { 607, { } },
2426  { 608, { } },
2427  { 609, { } },
2428  { 610, { } },
2429  { 611, { } },
2430  { 612, { } },
2431  { 613, { } },
2432  { 614, { } },
2433  { 615, { } },
2434  { 616, { } },
2435  { 617, { &kDefaultObjectSelf } },
2436  { 618, { } },
2437  { 619, { &kDefaultObjectSelf } },
2438  { 620, { &kDefaultObjectSelf } },
2439  { 621, { } },
2440  { 622, { &kDefaultFloat0_0, &kDefaultObjectSelf } },
2441  { 623, { &kDefaultObjectSelf } },
2442  { 624, { } },
2443  { 625, { &kDefaultObjectSelf } },
2444  { 626, { &kDefaultObjectSelf } },
2445  { 627, { &kDefaultObjectSelf } },
2446  { 628, { &kDefaultObjectSelf } },
2447  { 629, { &kDefaultObjectSelf } },
2448  { 630, { } },
2449  { 631, { &kDefaultInt0 } },
2450  { 632, { &kDefaultFalse } },
2451  { 633, { } },
2452  { 634, { } },
2453  { 635, { } },
2454  { 636, { } },
2455  { 637, { &kDefaultInt0 } },
2456  { 638, { } },
2457  { 639, { } },
2458  { 640, { } },
2459  { 641, { } },
2460  { 642, { } },
2461  { 643, { } },
2462  { 644, { } },
2463  { 645, { } },
2464  { 646, { } },
2465  { 647, { } },
2466  { 648, { } },
2467  { 649, { } },
2468  { 650, { } },
2469  { 651, { } },
2470  { 652, { } },
2471  { 653, { } },
2472  { 654, { } },
2473  { 655, { &kDefaultObjectSelf } },
2474  { 656, { &kDefaultTrue } },
2475  { 657, { } },
2476  { 658, { } },
2477  { 659, { } },
2478  { 660, { } },
2479  { 661, { } },
2480  { 662, { } },
2481  { 663, { &kDefaultVector0 } },
2482  { 664, { } },
2483  { 665, { } },
2484  { 666, { } },
2485  { 667, { } },
2486  { 668, { } },
2487  { 669, { } },
2488  { 670, { } },
2489  { 671, { } },
2490  { 672, { } },
2491  { 673, { } },
2492  { 674, { } },
2493  { 675, { } },
2494  { 676, { } },
2495  { 677, { } },
2496  { 678, { } },
2497  { 679, { } },
2498  { 680, { } },
2499  { 681, { } },
2500  { 682, { } },
2501  { 683, { } },
2502  { 684, { } },
2503  { 685, { } },
2504  { 686, { } },
2505  { 687, { } },
2506  { 688, { } },
2507  { 689, { } },
2508  { 690, { } },
2509  { 691, { &kDefaultTalkVolumeTalk } },
2510  { 692, { &kDefaultTrue, &kDefaultFalse } },
2511  { 693, { } },
2512  { 694, { } },
2513  { 695, { &kDefaultFadeSpeedMedium } },
2514  { 696, { &kDefaultFadeSpeedMedium } },
2515  { 697, { } },
2516  { 698, { } },
2517  { 699, { } },
2518  { 700, { } },
2519  { 701, { &kDefaultIntMinus1 } },
2520  { 702, { } },
2521  { 703, { } },
2522  { 704, { &kDefaultFalse } },
2523  { 705, { } },
2524  { 706, { } },
2525  { 707, { } },
2526  { 708, { &kDefaultObjectSelf } },
2527  { 709, { } },
2528  { 710, { } },
2529  { 711, { &kDefaultObjectSelf } },
2530  { 712, { &kDefaultObjectSelf } },
2531  { 713, { } },
2532  { 714, { } },
2533  { 715, { } },
2534  { 716, { } },
2535  { 717, { } },
2536  { 718, { } },
2537  { 719, { } },
2538  { 720, { &kDefaultTrue } },
2539  { 721, { } },
2540  { 722, { } },
2541  { 723, { } },
2542  { 724, { } },
2543  { 725, { } },
2544  { 726, { &kDefaultIntMinus1 } },
2545  { 727, { } },
2546  { 728, { } },
2547  { 729, { } },
2548  { 730, { } },
2549  { 731, { } },
2550  { 732, { } },
2551  { 733, { } },
2552  { 734, { } },
2553  { 735, { } },
2554  { 736, { } },
2555  { 737, { } },
2556  { 738, { } },
2557  { 739, { } },
2558  { 740, { } },
2559  { 741, { } },
2560  { 742, { } },
2561  { 743, { } },
2562  { 744, { } },
2563  { 745, { } },
2564  { 746, { &kDefaultTrue } },
2565  { 747, { } },
2566  { 748, { &kDefaultObjectSelf, &kDefaultFalse } },
2567  { 749, { } },
2568  { 750, { } },
2569  { 751, { } },
2570  { 752, { } },
2571  { 753, { } },
2572  { 754, { &kDefaultObjectSelf } },
2573  { 755, { } },
2574  { 756, { } },
2575  { 757, { } },
2576  { 758, { &kDefaultInt1 } },
2577  { 759, { } },
2578  { 760, { } },
2579  { 761, { } },
2580  { 762, { } },
2581  { 763, { } },
2582  { 764, { &kDefaultFalse } },
2583  { 765, { } },
2584  { 766, { } },
2585  { 767, { } },
2586  { 768, { } },
2587  { 769, { } },
2588  { 770, { &kDefaultFalse } },
2589  { 771, { } },
2590  { 772, { } },
2591  { 773, { &kDefaultObjectInvalid, &kDefaultInt0 } },
2592  { 774, { } },
2593  { 775, { } },
2594  { 776, { &kDefaultFalse, &kDefaultObjectInvalid } },
2595  { 777, { &kDefaultFalse, &kDefaultFalse, &kDefaultObjectInvalid } },
2596  { 778, { } },
2597  { 779, { } },
2598  { 780, { } },
2599  { 781, { } },
2600  { 782, { } },
2601  { 783, { } },
2602  { 784, { } },
2603  { 785, { } },
2604  { 786, { } },
2606  { 788, { } },
2607  { 789, { } },
2608  { 790, { } },
2609  { 791, { } },
2610  { 792, { } },
2611  { 793, { &kDefaultStringEmpty } },
2612  { 794, { } },
2613  { 795, { &kDefaultInt0, &kDefaultStringEmpty, &kDefaultStringEmpty, &kDefaultStringEmpty, &kDefaultObjectSelf, &kDefaultInt0 } },
2614  { 796, { &kDefaultInt0 } },
2615  { 797, { } },
2616  { 798, { } },
2617  { 799, { &kDefaultStringEmpty, &kDefaultStringEmpty } },
2618  { 800, { } },
2619  { 801, { } },
2620  { 802, { } },
2621  { 803, { } },
2622  { 804, { } },
2623  { 805, { &kDefaultObjectSelf, &kDefaultInt0 } },
2624  { 806, { } },
2625  { 807, { } },
2626  { 808, { } },
2627  { 809, { } },
2628  { 810, { } },
2629  { 811, { } },
2630  { 812, { } },
2631  { 813, { } },
2632  { 814, { } },
2633  { 815, { } },
2634  { 816, { } },
2635  { 817, { &kDefaultFalse } },
2636  { 818, { &kDefaultFalse } },
2637  { 819, { } },
2638  { 820, { } },
2639  { 821, { } },
2640  { 822, { } },
2641  { 823, { } },
2642  { 824, { } },
2643  { 825, { } },
2644  { 826, { } },
2645  { 827, { } },
2646  { 828, { } },
2647  { 829, { } },
2648  { 830, { } },
2649  { 831, { } },
2650  { 832, { } },
2651  { 833, { } },
2652  { 834, { } },
2653  { 835, { } },
2654  { 836, { } },
2655  { 837, { } },
2656  { 838, { } },
2657  { 839, { } },
2658  { 840, { } },
2659  { 841, { } },
2660  { 842, { } },
2661  { 843, { } },
2662  { 844, { } },
2663  { 845, { } },
2664  { 846, { &kDefaultTrue } },
2665  { 847, { &kDefaultFalse } }
2666 };
2667 
2668 } // End of namespace Witcher
2669 
2670 } // End of namespace Engines
2671 
2672 #endif // ENGINES_WITCHER_NWSCRIPT_FUNCTION_TABLES_H
void musicBackgroundGetNightTrack(Aurora::NWScript::FunctionContext &ctx)
void setLocalFloat(Aurora::NWScript::FunctionContext &ctx)
void getClickingObject(Aurora::NWScript::FunctionContext &ctx)
void getNearestCreature(Aurora::NWScript::FunctionContext &ctx)
void asin(Aurora::NWScript::FunctionContext &ctx)
void writeTimestampedLogEntry(Aurora::NWScript::FunctionContext &ctx)
void delayCommand(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultTalkVolumeTalk((int32) 0)
void playSound(Aurora::NWScript::FunctionContext &ctx)
void getLocation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultTrue((int32) 1)
void intToFloat(Aurora::NWScript::FunctionContext &ctx)
void actionCloseDoor(Aurora::NWScript::FunctionContext &ctx)
void intToString(Aurora::NWScript::FunctionContext &ctx)
void vectorMagnitude(Aurora::NWScript::FunctionContext &ctx)
void getLastUsedBy(Aurora::NWScript::FunctionContext &ctx)
void speakStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
A class holding an UTF-8 string.
Definition: ustring.h:48
Fake value to describe the calling object in a script.
Definition: types.h:54
void cos(Aurora::NWScript::FunctionContext &ctx)
void actionOpenDoor(Aurora::NWScript::FunctionContext &ctx)
void getStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
void d6(Aurora::NWScript::FunctionContext &ctx)
void getStringLength(Aurora::NWScript::FunctionContext &ctx)
void stringToFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultIntMinus1((int32) - 1)
void getEnteringObject(Aurora::NWScript::FunctionContext &ctx)
void printVector(Aurora::NWScript::FunctionContext &ctx)
void getArea(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeCreature((int32) 1)
void getLastClosedBy(Aurora::NWScript::FunctionContext &ctx)
void d100(Aurora::NWScript::FunctionContext &ctx)
void sqrt(Aurora::NWScript::FunctionContext &ctx)
void getLocalFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f)
static const Aurora::NWScript::Variable kDefaultFloat0_0(0.0f)
static const Aurora::NWScript::Variable kDefaultFloatMinus1_0(- 1.0f)
void getNearestObjectByTag(Aurora::NWScript::FunctionContext &ctx)
void findSubString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultProjectilePathTypeDefault((int32) 0)
void getWaypointByTag(Aurora::NWScript::FunctionContext &ctx)
Basic The Witcher type definitions.
void actionSpeakString(Aurora::NWScript::FunctionContext &ctx)
void getLocalObject(Aurora::NWScript::FunctionContext &ctx)
void stringToInt(Aurora::NWScript::FunctionContext &ctx)
void setLocalString(Aurora::NWScript::FunctionContext &ctx)
void random(Aurora::NWScript::FunctionContext &ctx)
void assignCommand(Aurora::NWScript::FunctionContext &ctx)
void printInteger(Aurora::NWScript::FunctionContext &ctx)
void getStringUpperCase(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeAll((int32) 32767)
static const Aurora::NWScript::Variable kDefaultCameraTransitionTypeSnap((int32) 0)
void getPositionFromLocation(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 log(Aurora::NWScript::FunctionContext &ctx)
void atan(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectSelf & kDefaultValueObjectSelf
void printFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat1_0(1.0f)
void jumpToObject(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundPlay(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeNight(Aurora::NWScript::FunctionContext &ctx)
void actionMoveToObject(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundGetDayTrack(Aurora::NWScript::FunctionContext &ctx)
void d12(Aurora::NWScript::FunctionContext &ctx)
void d8(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat40_0(40.0f)
void getModule(Aurora::NWScript::FunctionContext &ctx)
An object in a The Witcher area.
static const Aurora::NWScript::Variable kDefaultGenderMale((int32) 0)
void actionMoveToLocation(Aurora::NWScript::FunctionContext &ctx)
void getIsOpen(Aurora::NWScript::FunctionContext &ctx)
void sendMessageToPC(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 getLocalString(Aurora::NWScript::FunctionContext &ctx)
void insertString(Aurora::NWScript::FunctionContext &ctx)
void floatToInt(Aurora::NWScript::FunctionContext &ctx)
void getStringLowerCase(Aurora::NWScript::FunctionContext &ctx)
void acos(Aurora::NWScript::FunctionContext &ctx)
void runClientLua(Aurora::NWScript::FunctionContext &ctx)
Definition: functions.cpp:103
static const Aurora::NWScript::Variable kDefaultFloat30_0(30.0f)
static const Aurora::NWScript::Variable kDefaultInt1((int32) 1)
void d4(Aurora::NWScript::FunctionContext &ctx)
void getTag(Aurora::NWScript::FunctionContext &ctx)
void executeScript(Aurora::NWScript::FunctionContext &ctx)
void d2(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt0((int32) 0)
void setLocalInt(Aurora::NWScript::FunctionContext &ctx)
void setLocked(Aurora::NWScript::FunctionContext &ctx)
void getLocalInt(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultPersistentZoneActive((int32) 0)
void d3(Aurora::NWScript::FunctionContext &ctx)
void getNearestObject(Aurora::NWScript::FunctionContext &ctx)
void startNewModule(Aurora::NWScript::FunctionContext &ctx)
void getStringRight(Aurora::NWScript::FunctionContext &ctx)
"effect", "event", "location", "talent"...
Definition: types.h:43
void printString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt18((int32) 18)
static const FunctionPointer kFunctionPointers[]
The table defining the name and function pointer of each engine function.
Definition: functions.h:70
void playSoundByStrRef(Aurora::NWScript::FunctionContext &ctx)
void getName(Aurora::NWScript::FunctionContext &ctx)
void sin(Aurora::NWScript::FunctionContext &ctx)
void speakOneLinerConversation(Aurora::NWScript::FunctionContext &ctx)
void location(Aurora::NWScript::FunctionContext &ctx)
void tan(Aurora::NWScript::FunctionContext &ctx)
void actionDoCommand(Aurora::NWScript::FunctionContext &ctx)
void actionJumpToLocation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFalse((int32) 0)
void get2DAString(Aurora::NWScript::FunctionContext &ctx)
void abs(Aurora::NWScript::FunctionContext &ctx)
void getIsObjectValid(Aurora::NWScript::FunctionContext &ctx)
void getDistanceToObject(Aurora::NWScript::FunctionContext &ctx)
void getExitingObject(Aurora::NWScript::FunctionContext &ctx)
Any other type.
Definition: types.h:48
void floatToString(Aurora::NWScript::FunctionContext &ctx)
void getNextPC(Aurora::NWScript::FunctionContext &ctx)
void getObjectType(Aurora::NWScript::FunctionContext &ctx)
void jumpToLocation(Aurora::NWScript::FunctionContext &ctx)
void getSubString(Aurora::NWScript::FunctionContext &ctx)
void vectorNormalize(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeDay(Aurora::NWScript::FunctionContext &ctx)
void pow(Aurora::NWScript::FunctionContext &ctx)
void getLastOpenedBy(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat0_5(0.5f)
void getLocked(Aurora::NWScript::FunctionContext &ctx)
void speakString(Aurora::NWScript::FunctionContext &ctx)
void getPosition(Aurora::NWScript::FunctionContext &ctx)
void setLocalObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt9((int32) 9)
void printObject(Aurora::NWScript::FunctionContext &ctx)
void d10(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFadeSpeedMedium(2.0f)
void getIsPC(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStringEmpty(Common::UString(""))
void d20(Aurora::NWScript::FunctionContext &ctx)
void getObjectByTag(Aurora::NWScript::FunctionContext &ctx)
void vector(Aurora::NWScript::FunctionContext &ctx)
void actionJumpToObject(Aurora::NWScript::FunctionContext &ctx)
void objectToString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectInvalid & kDefaultValueObjectInvalid
void getStringLeft(Aurora::NWScript::FunctionContext &ctx)
void intToHexString(Aurora::NWScript::FunctionContext &ctx)
void fabs(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundStop(Aurora::NWScript::FunctionContext &ctx)
void getFirstPC(Aurora::NWScript::FunctionContext &ctx)
int32_t int32
Definition: types.h:203