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_NWN_SCRIPT_FUNCTION_TABLES_H
51 #define ENGINES_NWN_SCRIPT_FUNCTION_TABLES_H
52 
53 #include "src/engines/nwn/types.h"
54 #include "src/engines/nwn/object.h"
55 
56 namespace Engines {
57 
58 namespace NWN {
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 
75 static NWN::Object kDefaultValueObjectSelf (kObjectTypeSelf);
76 
83 
85 static const Aurora::NWScript::Variable kDefaultFloat0_0 ( 0.0f);
86 static const Aurora::NWScript::Variable kDefaultFloat1_0 ( 1.0f);
87 static const Aurora::NWScript::Variable kDefaultFloat2_0 ( 2.0f);
88 static const Aurora::NWScript::Variable kDefaultFloat30_0 ( 30.0f);
89 static const Aurora::NWScript::Variable kDefaultFloat40_0 ( 40.0f);
90 static const Aurora::NWScript::Variable kDefaultFloat180_0 ( 180.0f);
91 
92 static const Aurora::NWScript::Variable kDefaultVector0 (0.0f, 0.0f, 0.0f);
93 
95 
96 static const Aurora::NWScript::Variable kDefaultObjectInvalid(&kDefaultValueObjectInvalid);
97 static const Aurora::NWScript::Variable kDefaultObjectSelf (&kDefaultValueObjectSelf);
98 
99 // TODO: Add the relevant enums to types.h, and use these values.
100 
130 
132 
133 
136  { 0, "Random" , &Functions::random },
137  { 1, "PrintString" , &Functions::printString },
138  { 2, "PrintFloat" , &Functions::printFloat },
139  { 3, "FloatToString" , &Functions::floatToString },
140  { 4, "PrintInteger" , &Functions::printInteger },
141  { 5, "PrintObject" , &Functions::printObject },
142  { 6, "AssignCommand" , &Functions::assignCommand },
143  { 7, "DelayCommand" , &Functions::delayCommand },
144  { 8, "ExecuteScript" , &Functions::executeScript },
145  { 9, "ClearAllActions" , 0 },
146  { 10, "SetFacing" , 0 },
147  { 11, "SetCalendar" , 0 },
148  { 12, "SetTime" , 0 },
149  { 13, "GetCalendarYear" , 0 },
150  { 14, "GetCalendarMonth" , 0 },
151  { 15, "GetCalendarDay" , 0 },
152  { 16, "GetTimeHour" , 0 },
153  { 17, "GetTimeMinute" , 0 },
154  { 18, "GetTimeSecond" , 0 },
155  { 19, "GetTimeMillisecond" , 0 },
156  { 20, "ActionRandomWalk" , 0 },
157  { 21, "ActionMoveToLocation" , &Functions::actionMoveToLocation },
158  { 22, "ActionMoveToObject" , &Functions::actionMoveToObject },
159  { 23, "ActionMoveAwayFromObject" , 0 },
160  { 24, "GetArea" , &Functions::getArea },
161  { 25, "GetEnteringObject" , &Functions::getEnteringObject },
162  { 26, "GetExitingObject" , &Functions::getExitingObject },
163  { 27, "GetPosition" , &Functions::getPosition },
164  { 28, "GetFacing" , 0 },
165  { 29, "GetItemPossessor" , 0 },
166  { 30, "GetItemPossessedBy" , 0 },
167  { 31, "CreateItemOnObject" , 0 },
168  { 32, "ActionEquipItem" , 0 },
169  { 33, "ActionUnequipItem" , 0 },
170  { 34, "ActionPickUpItem" , 0 },
171  { 35, "ActionPutDownItem" , 0 },
172  { 36, "GetLastAttacker" , 0 },
173  { 37, "ActionAttack" , 0 },
174  { 38, "GetNearestCreature" , &Functions::getNearestCreature },
175  { 39, "ActionSpeakString" , &Functions::actionSpeakString },
176  { 40, "ActionPlayAnimation" , &Functions::actionPlayAnimation },
177  { 41, "GetDistanceToObject" , &Functions::getDistanceToObject },
178  { 42, "GetIsObjectValid" , &Functions::getIsObjectValid },
179  { 43, "ActionOpenDoor" , &Functions::actionOpenDoor },
180  { 44, "ActionCloseDoor" , &Functions::actionCloseDoor },
181  { 45, "SetCameraFacing" , 0 },
182  { 46, "PlaySound" , &Functions::playSound },
183  { 47, "GetSpellTargetObject" , 0 },
184  { 48, "ActionCastSpellAtObject" , 0 },
185  { 49, "GetCurrentHitPoints" , 0 },
186  { 50, "GetMaxHitPoints" , 0 },
187  { 51, "GetLocalInt" , &Functions::getLocalInt },
188  { 52, "GetLocalFloat" , &Functions::getLocalFloat },
189  { 53, "GetLocalString" , &Functions::getLocalString },
190  { 54, "GetLocalObject" , &Functions::getLocalObject },
191  { 55, "SetLocalInt" , &Functions::setLocalInt },
192  { 56, "SetLocalFloat" , &Functions::setLocalFloat },
193  { 57, "SetLocalString" , &Functions::setLocalString },
194  { 58, "SetLocalObject" , &Functions::setLocalObject },
195  { 59, "GetStringLength" , &Functions::getStringLength },
196  { 60, "GetStringUpperCase" , &Functions::getStringUpperCase },
197  { 61, "GetStringLowerCase" , &Functions::getStringLowerCase },
198  { 62, "GetStringRight" , &Functions::getStringRight },
199  { 63, "GetStringLeft" , &Functions::getStringLeft },
200  { 64, "InsertString" , &Functions::insertString },
201  { 65, "GetSubString" , &Functions::getSubString },
202  { 66, "FindSubString" , &Functions::findSubString },
203  { 67, "fabs" , &Functions::fabs },
204  { 68, "cos" , &Functions::cos },
205  { 69, "sin" , &Functions::sin },
206  { 70, "tan" , &Functions::tan },
207  { 71, "acos" , &Functions::acos },
208  { 72, "asin" , &Functions::asin },
209  { 73, "atan" , &Functions::atan },
210  { 74, "log" , &Functions::log },
211  { 75, "pow" , &Functions::pow },
212  { 76, "sqrt" , &Functions::sqrt },
213  { 77, "abs" , &Functions::abs },
214  { 78, "EffectHeal" , 0 },
215  { 79, "EffectDamage" , 0 },
216  { 80, "EffectAbilityIncrease" , 0 },
217  { 81, "EffectDamageResistance" , 0 },
218  { 82, "EffectResurrection" , 0 },
219  { 83, "EffectSummonCreature" , 0 },
220  { 84, "GetCasterLevel" , 0 },
221  { 85, "GetFirstEffect" , 0 },
222  { 86, "GetNextEffect" , 0 },
223  { 87, "RemoveEffect" , 0 },
224  { 88, "GetIsEffectValid" , 0 },
225  { 89, "GetEffectDurationType" , 0 },
226  { 90, "GetEffectSubType" , 0 },
227  { 91, "GetEffectCreator" , 0 },
228  { 92, "IntToString" , &Functions::intToString },
229  { 93, "GetFirstObjectInArea" , 0 },
230  { 94, "GetNextObjectInArea" , 0 },
231  { 95, "d2" , &Functions::d2 },
232  { 96, "d3" , &Functions::d3 },
233  { 97, "d4" , &Functions::d4 },
234  { 98, "d6" , &Functions::d6 },
235  { 99, "d8" , &Functions::d8 },
236  { 100, "d10" , &Functions::d10 },
237  { 101, "d12" , &Functions::d12 },
238  { 102, "d20" , &Functions::d20 },
239  { 103, "d100" , &Functions::d100 },
240  { 104, "VectorMagnitude" , &Functions::vectorMagnitude },
241  { 105, "GetMetaMagicFeat" , 0 },
242  { 106, "GetObjectType" , &Functions::getObjectType },
243  { 107, "GetRacialType" , &Functions::getRacialType },
244  { 108, "FortitudeSave" , 0 },
245  { 109, "ReflexSave" , 0 },
246  { 110, "WillSave" , 0 },
247  { 111, "GetSpellSaveDC" , 0 },
248  { 112, "MagicalEffect" , 0 },
249  { 113, "SupernaturalEffect" , 0 },
250  { 114, "ExtraordinaryEffect" , 0 },
251  { 115, "EffectACIncrease" , 0 },
252  { 116, "GetAC" , 0 },
253  { 117, "EffectSavingThrowIncrease" , 0 },
254  { 118, "EffectAttackIncrease" , 0 },
255  { 119, "EffectDamageReduction" , 0 },
256  { 120, "EffectDamageIncrease" , 0 },
257  { 121, "RoundsToSeconds" , 0 },
258  { 122, "HoursToSeconds" , 0 },
259  { 123, "TurnsToSeconds" , 0 },
260  { 124, "GetLawChaosValue" , &Functions::getLawChaosValue },
261  { 125, "GetGoodEvilValue" , &Functions::getGoodEvilValue },
262  { 126, "GetAlignmentLawChaos" , &Functions::getAlignmentLawChaos },
263  { 127, "GetAlignmentGoodEvil" , &Functions::getAlignmentGoodEvil },
264  { 128, "GetFirstObjectInShape" , 0 },
265  { 129, "GetNextObjectInShape" , 0 },
266  { 130, "EffectEntangle" , 0 },
267  { 131, "SignalEvent" , 0 },
268  { 132, "EventUserDefined" , 0 },
269  { 133, "EffectDeath" , 0 },
270  { 134, "EffectKnockdown" , 0 },
271  { 135, "ActionGiveItem" , 0 },
272  { 136, "ActionTakeItem" , 0 },
273  { 137, "VectorNormalize" , &Functions::vectorNormalize },
274  { 138, "EffectCurse" , 0 },
275  { 139, "GetAbilityScore" , &Functions::getAbilityScore },
276  { 140, "GetIsDead" , &Functions::getIsDead },
277  { 141, "PrintVector" , &Functions::printVector },
278  { 142, "Vector" , &Functions::vector },
279  { 143, "SetFacingPoint" , 0 },
280  { 144, "AngleToVector" , 0 },
281  { 145, "VectorToAngle" , 0 },
282  { 146, "TouchAttackMelee" , 0 },
283  { 147, "TouchAttackRanged" , 0 },
284  { 148, "EffectParalyze" , 0 },
285  { 149, "EffectSpellImmunity" , 0 },
286  { 150, "EffectDeaf" , 0 },
287  { 151, "GetDistanceBetween" , 0 },
288  { 152, "SetLocalLocation" , 0 },
289  { 153, "GetLocalLocation" , 0 },
290  { 154, "EffectSleep" , 0 },
291  { 155, "GetItemInSlot" , 0 },
292  { 156, "EffectCharmed" , 0 },
293  { 157, "EffectConfused" , 0 },
294  { 158, "EffectFrightened" , 0 },
295  { 159, "EffectDominated" , 0 },
296  { 160, "EffectDazed" , 0 },
297  { 161, "EffectStunned" , 0 },
298  { 162, "SetCommandable" , &Functions::setCommandable },
299  { 163, "GetCommandable" , &Functions::getCommandable },
300  { 164, "EffectRegenerate" , 0 },
301  { 165, "EffectMovementSpeedIncrease" , 0 },
302  { 166, "GetHitDice" , &Functions::getHitDice },
303  { 167, "ActionForceFollowObject" , 0 },
304  { 168, "GetTag" , &Functions::getTag },
305  { 169, "ResistSpell" , 0 },
306  { 170, "GetEffectType" , 0 },
307  { 171, "EffectAreaOfEffect" , 0 },
308  { 172, "GetFactionEqual" , 0 },
309  { 173, "ChangeFaction" , 0 },
310  { 174, "GetIsListening" , 0 },
311  { 175, "SetListening" , 0 },
312  { 176, "SetListenPattern" , 0 },
313  { 177, "TestStringAgainstPattern" , 0 },
314  { 178, "GetMatchedSubstring" , 0 },
315  { 179, "GetMatchedSubstringsCount" , 0 },
316  { 180, "EffectVisualEffect" , 0 },
317  { 181, "GetFactionWeakestMember" , 0 },
318  { 182, "GetFactionStrongestMember" , 0 },
319  { 183, "GetFactionMostDamagedMember" , 0 },
320  { 184, "GetFactionLeastDamagedMember" , 0 },
321  { 185, "GetFactionGold" , 0 },
322  { 186, "GetFactionAverageReputation" , 0 },
323  { 187, "GetFactionAverageGoodEvilAlignment" , 0 },
324  { 188, "GetFactionAverageLawChaosAlignment" , 0 },
325  { 189, "GetFactionAverageLevel" , 0 },
326  { 190, "GetFactionAverageXP" , 0 },
327  { 191, "GetFactionMostFrequentClass" , 0 },
328  { 192, "GetFactionWorstAC" , 0 },
329  { 193, "GetFactionBestAC" , 0 },
330  { 194, "ActionSit" , 0 },
331  { 195, "GetListenPatternNumber" , &Functions::getListenPatternNumber },
332  { 196, "ActionJumpToObject" , &Functions::actionJumpToObject },
333  { 197, "GetWaypointByTag" , &Functions::getWaypointByTag },
334  { 198, "GetTransitionTarget" , 0 },
335  { 199, "EffectLinkEffects" , 0 },
336  { 200, "GetObjectByTag" , &Functions::getObjectByTag },
337  { 201, "AdjustAlignment" , 0 },
338  { 202, "ActionWait" , 0 },
339  { 203, "SetAreaTransitionBMP" , 0 },
340  { 204, "ActionStartConversation" , &Functions::actionStartConversation },
341  { 205, "ActionPauseConversation" , 0 },
342  { 206, "ActionResumeConversation" , 0 },
343  { 207, "EffectBeam" , 0 },
344  { 208, "GetReputation" , 0 },
345  { 209, "AdjustReputation" , 0 },
346  { 210, "GetSittingCreature" , 0 },
347  { 211, "GetGoingToBeAttackedBy" , 0 },
348  { 212, "EffectSpellResistanceIncrease" , 0 },
349  { 213, "GetLocation" , &Functions::getLocation },
350  { 214, "ActionJumpToLocation" , &Functions::actionJumpToLocation },
351  { 215, "Location" , &Functions::location },
352  { 216, "ApplyEffectAtLocation" , 0 },
353  { 217, "GetIsPC" , &Functions::getIsPC },
354  { 218, "FeetToMeters" , 0 },
355  { 219, "YardsToMeters" , 0 },
356  { 220, "ApplyEffectToObject" , 0 },
357  { 221, "SpeakString" , &Functions::speakString },
358  { 222, "GetSpellTargetLocation" , 0 },
359  { 223, "GetPositionFromLocation" , &Functions::getPositionFromLocation },
360  { 224, "GetAreaFromLocation" , 0 },
361  { 225, "GetFacingFromLocation" , 0 },
362  { 226, "GetNearestCreatureToLocation" , 0 },
363  { 227, "GetNearestObject" , &Functions::getNearestObject },
364  { 228, "GetNearestObjectToLocation" , 0 },
365  { 229, "GetNearestObjectByTag" , &Functions::getNearestObjectByTag },
366  { 230, "IntToFloat" , &Functions::intToFloat },
367  { 231, "FloatToInt" , &Functions::floatToInt },
368  { 232, "StringToInt" , &Functions::stringToInt },
369  { 233, "StringToFloat" , &Functions::stringToFloat },
370  { 234, "ActionCastSpellAtLocation" , 0 },
371  { 235, "GetIsEnemy" , 0 },
372  { 236, "GetIsFriend" , 0 },
373  { 237, "GetIsNeutral" , 0 },
374  { 238, "GetPCSpeaker" , &Functions::getPCSpeaker },
375  { 239, "GetStringByStrRef" , &Functions::getStringByStrRef },
376  { 240, "ActionSpeakStringByStrRef" , 0 },
377  { 241, "DestroyObject" , 0 },
378  { 242, "GetModule" , &Functions::getModule },
379  { 243, "CreateObject" , 0 },
380  { 244, "EventSpellCastAt" , 0 },
381  { 245, "GetLastSpellCaster" , 0 },
382  { 246, "GetLastSpell" , 0 },
383  { 247, "GetUserDefinedEventNumber" , 0 },
384  { 248, "GetSpellId" , 0 },
385  { 249, "RandomName" , 0 },
386  { 250, "EffectPoison" , 0 },
387  { 251, "EffectDisease" , 0 },
388  { 252, "EffectSilence" , 0 },
389  { 253, "GetName" , &Functions::getName },
390  { 254, "GetLastSpeaker" , &Functions::getLastSpeaker },
391  { 255, "BeginConversation" , &Functions::beginConversation },
392  { 256, "GetLastPerceived" , 0 },
393  { 257, "GetLastPerceptionHeard" , 0 },
394  { 258, "GetLastPerceptionInaudible" , 0 },
395  { 259, "GetLastPerceptionSeen" , 0 },
396  { 260, "GetLastClosedBy" , &Functions::getLastClosedBy },
397  { 261, "GetLastPerceptionVanished" , 0 },
398  { 262, "GetFirstInPersistentObject" , 0 },
399  { 263, "GetNextInPersistentObject" , 0 },
400  { 264, "GetAreaOfEffectCreator" , 0 },
401  { 265, "DeleteLocalInt" , 0 },
402  { 266, "DeleteLocalFloat" , 0 },
403  { 267, "DeleteLocalString" , 0 },
404  { 268, "DeleteLocalObject" , 0 },
405  { 269, "DeleteLocalLocation" , 0 },
406  { 270, "EffectHaste" , 0 },
407  { 271, "EffectSlow" , 0 },
408  { 272, "ObjectToString" , &Functions::objectToString },
409  { 273, "EffectImmunity" , 0 },
410  { 274, "GetIsImmune" , 0 },
411  { 275, "EffectDamageImmunityIncrease" , 0 },
412  { 276, "GetEncounterActive" , 0 },
413  { 277, "SetEncounterActive" , 0 },
414  { 278, "GetEncounterSpawnsMax" , 0 },
415  { 279, "SetEncounterSpawnsMax" , 0 },
416  { 280, "GetEncounterSpawnsCurrent" , 0 },
417  { 281, "SetEncounterSpawnsCurrent" , 0 },
418  { 282, "GetModuleItemAcquired" , 0 },
419  { 283, "GetModuleItemAcquiredFrom" , 0 },
420  { 284, "SetCustomToken" , &Functions::setCustomToken },
421  { 285, "GetHasFeat" , 0 },
422  { 286, "GetHasSkill" , 0 },
423  { 287, "ActionUseFeat" , 0 },
424  { 288, "ActionUseSkill" , 0 },
425  { 289, "GetObjectSeen" , 0 },
426  { 290, "GetObjectHeard" , 0 },
427  { 291, "GetLastPlayerDied" , 0 },
428  { 292, "GetModuleItemLost" , 0 },
429  { 293, "GetModuleItemLostBy" , 0 },
430  { 294, "ActionDoCommand" , &Functions::actionDoCommand },
431  { 295, "EventConversation" , 0 },
432  { 296, "SetEncounterDifficulty" , 0 },
433  { 297, "GetEncounterDifficulty" , 0 },
434  { 298, "GetDistanceBetweenLocations" , 0 },
435  { 299, "GetReflexAdjustedDamage" , 0 },
436  { 300, "PlayAnimation" , &Functions::playAnimation },
437  { 301, "TalentSpell" , 0 },
438  { 302, "TalentFeat" , 0 },
439  { 303, "TalentSkill" , 0 },
440  { 304, "GetHasSpellEffect" , 0 },
441  { 305, "GetEffectSpellId" , 0 },
442  { 306, "GetCreatureHasTalent" , 0 },
443  { 307, "GetCreatureTalentRandom" , 0 },
444  { 308, "GetCreatureTalentBest" , 0 },
445  { 309, "ActionUseTalentOnObject" , 0 },
446  { 310, "ActionUseTalentAtLocation" , 0 },
447  { 311, "GetGoldPieceValue" , 0 },
448  { 312, "GetIsPlayableRacialType" , 0 },
449  { 313, "JumpToLocation" , &Functions::jumpToLocation },
450  { 314, "EffectTemporaryHitpoints" , 0 },
451  { 315, "GetSkillRank" , &Functions::getSkillRank },
452  { 316, "GetAttackTarget" , 0 },
453  { 317, "GetLastAttackType" , 0 },
454  { 318, "GetLastAttackMode" , 0 },
455  { 319, "GetMaster" , &Functions::getMaster },
456  { 320, "GetIsInCombat" , 0 },
457  { 321, "GetLastAssociateCommand" , 0 },
458  { 322, "GiveGoldToCreature" , 0 },
459  { 323, "SetIsDestroyable" , 0 },
460  { 324, "SetLocked" , &Functions::setLocked },
461  { 325, "GetLocked" , &Functions::getLocked },
462  { 326, "GetClickingObject" , &Functions::getClickingObject },
463  { 327, "SetAssociateListenPatterns" , 0 },
464  { 328, "GetLastWeaponUsed" , 0 },
465  { 329, "ActionInteractObject" , 0 },
466  { 330, "GetLastUsedBy" , &Functions::getLastUsedBy },
467  { 331, "GetAbilityModifier" , 0 },
468  { 332, "GetIdentified" , 0 },
469  { 333, "SetIdentified" , 0 },
470  { 334, "SummonAnimalCompanion" , 0 },
471  { 335, "SummonFamiliar" , 0 },
472  { 336, "GetBlockingDoor" , 0 },
473  { 337, "GetIsDoorActionPossible" , 0 },
474  { 338, "DoDoorAction" , 0 },
475  { 339, "GetFirstItemInInventory" , 0 },
476  { 340, "GetNextItemInInventory" , 0 },
477  { 341, "GetClassByPosition" , &Functions::getClassByPosition },
478  { 342, "GetLevelByPosition" , &Functions::getLevelByPosition },
479  { 343, "GetLevelByClass" , &Functions::getLevelByClass },
480  { 344, "GetDamageDealtByType" , 0 },
481  { 345, "GetTotalDamageDealt" , 0 },
482  { 346, "GetLastDamager" , 0 },
483  { 347, "GetLastDisarmed" , 0 },
484  { 348, "GetLastDisturbed" , 0 },
485  { 349, "GetLastLocked" , 0 },
486  { 350, "GetLastUnlocked" , 0 },
487  { 351, "EffectSkillIncrease" , 0 },
488  { 352, "GetInventoryDisturbType" , 0 },
489  { 353, "GetInventoryDisturbItem" , 0 },
490  { 354, "GetHenchman" , &Functions::getHenchman },
491  { 355, "VersusAlignmentEffect" , 0 },
492  { 356, "VersusRacialTypeEffect" , 0 },
493  { 357, "VersusTrapEffect" , 0 },
494  { 358, "GetGender" , &Functions::getGender },
495  { 359, "GetIsTalentValid" , 0 },
496  { 360, "ActionMoveAwayFromLocation" , 0 },
497  { 361, "GetAttemptedAttackTarget" , 0 },
498  { 362, "GetTypeFromTalent" , 0 },
499  { 363, "GetIdFromTalent" , 0 },
500  { 364, "GetAssociate" , &Functions::getAssociate },
501  { 365, "AddHenchman" , &Functions::addHenchman },
502  { 366, "RemoveHenchman" , &Functions::removeHenchman },
503  { 367, "AddJournalQuestEntry" , 0 },
504  { 368, "RemoveJournalQuestEntry" , 0 },
505  { 369, "GetPCPublicCDKey" , 0 },
506  { 370, "GetPCIPAddress" , 0 },
507  { 371, "GetPCPlayerName" , 0 },
508  { 372, "SetPCLike" , 0 },
509  { 373, "SetPCDislike" , 0 },
510  { 374, "SendMessageToPC" , &Functions::sendMessageToPC },
511  { 375, "GetAttemptedSpellTarget" , 0 },
512  { 376, "GetLastOpenedBy" , &Functions::getLastOpenedBy },
513  { 377, "GetHasSpell" , 0 },
514  { 378, "OpenStore" , 0 },
515  { 379, "EffectTurned" , 0 },
516  { 380, "GetFirstFactionMember" , 0 },
517  { 381, "GetNextFactionMember" , 0 },
518  { 382, "ActionForceMoveToLocation" , 0 },
519  { 383, "ActionForceMoveToObject" , 0 },
520  { 384, "GetJournalQuestExperience" , 0 },
521  { 385, "JumpToObject" , &Functions::jumpToObject },
522  { 386, "SetMapPinEnabled" , 0 },
523  { 387, "EffectHitPointChangeWhenDying" , 0 },
524  { 388, "PopUpGUIPanel" , 0 },
525  { 389, "ClearPersonalReputation" , 0 },
526  { 390, "SetIsTemporaryFriend" , 0 },
527  { 391, "SetIsTemporaryEnemy" , 0 },
528  { 392, "SetIsTemporaryNeutral" , 0 },
529  { 393, "GiveXPToCreature" , 0 },
530  { 394, "SetXP" , 0 },
531  { 395, "GetXP" , &Functions::getXP },
532  { 396, "IntToHexString" , &Functions::intToHexString },
533  { 397, "GetBaseItemType" , 0 },
534  { 398, "GetItemHasItemProperty" , 0 },
535  { 399, "ActionEquipMostDamagingMelee" , 0 },
536  { 400, "ActionEquipMostDamagingRanged" , 0 },
537  { 401, "GetItemACValue" , 0 },
538  { 402, "ActionRest" , 0 },
539  { 403, "ExploreAreaForPlayer" , 0 },
540  { 404, "ActionEquipMostEffectiveArmor" , 0 },
541  { 405, "GetIsDay" , 0 },
542  { 406, "GetIsNight" , 0 },
543  { 407, "GetIsDawn" , 0 },
544  { 408, "GetIsDusk" , 0 },
545  { 409, "GetIsEncounterCreature" , 0 },
546  { 410, "GetLastPlayerDying" , 0 },
547  { 411, "GetStartingLocation" , 0 },
548  { 412, "ChangeToStandardFaction" , 0 },
549  { 413, "SoundObjectPlay" , 0 },
550  { 414, "SoundObjectStop" , 0 },
551  { 415, "SoundObjectSetVolume" , 0 },
552  { 416, "SoundObjectSetPosition" , 0 },
553  { 417, "SpeakOneLinerConversation" , &Functions::speakOneLinerConversation },
554  { 418, "GetGold" , 0 },
555  { 419, "GetLastRespawnButtonPresser" , 0 },
556  { 420, "GetIsDM" , &Functions::getIsDM },
557  { 421, "PlayVoiceChat" , &Functions::playVoiceChat },
558  { 422, "GetIsWeaponEffective" , 0 },
559  { 423, "GetLastSpellHarmful" , 0 },
560  { 424, "EventActivateItem" , 0 },
561  { 425, "MusicBackgroundPlay" , &Functions::musicBackgroundPlay },
562  { 426, "MusicBackgroundStop" , &Functions::musicBackgroundStop },
563  { 427, "MusicBackgroundSetDelay" , 0 },
564  { 428, "MusicBackgroundChangeDay" , &Functions::musicBackgroundChangeDay },
565  { 429, "MusicBackgroundChangeNight" , &Functions::musicBackgroundChangeNight },
566  { 430, "MusicBattlePlay" , 0 },
567  { 431, "MusicBattleStop" , 0 },
568  { 432, "MusicBattleChange" , 0 },
569  { 433, "AmbientSoundPlay" , 0 },
570  { 434, "AmbientSoundStop" , 0 },
571  { 435, "AmbientSoundChangeDay" , 0 },
572  { 436, "AmbientSoundChangeNight" , 0 },
573  { 437, "GetLastKiller" , 0 },
574  { 438, "GetSpellCastItem" , 0 },
575  { 439, "GetItemActivated" , 0 },
576  { 440, "GetItemActivator" , 0 },
577  { 441, "GetItemActivatedTargetLocation" , 0 },
578  { 442, "GetItemActivatedTarget" , 0 },
579  { 443, "GetIsOpen" , &Functions::getIsOpen },
580  { 444, "TakeGoldFromCreature" , 0 },
581  { 445, "IsInConversation" , &Functions::isInConversation },
582  { 446, "EffectAbilityDecrease" , 0 },
583  { 447, "EffectAttackDecrease" , 0 },
584  { 448, "EffectDamageDecrease" , 0 },
585  { 449, "EffectDamageImmunityDecrease" , 0 },
586  { 450, "EffectACDecrease" , 0 },
587  { 451, "EffectMovementSpeedDecrease" , 0 },
588  { 452, "EffectSavingThrowDecrease" , 0 },
589  { 453, "EffectSkillDecrease" , 0 },
590  { 454, "EffectSpellResistanceDecrease" , 0 },
591  { 455, "GetPlotFlag" , 0 },
592  { 456, "SetPlotFlag" , 0 },
593  { 457, "EffectInvisibility" , 0 },
594  { 458, "EffectConcealment" , 0 },
595  { 459, "EffectDarkness" , 0 },
596  { 460, "EffectDispelMagicAll" , 0 },
597  { 461, "EffectUltravision" , 0 },
598  { 462, "EffectNegativeLevel" , 0 },
599  { 463, "EffectPolymorph" , 0 },
600  { 464, "EffectSanctuary" , 0 },
601  { 465, "EffectTrueSeeing" , 0 },
602  { 466, "EffectSeeInvisible" , 0 },
603  { 467, "EffectTimeStop" , 0 },
604  { 468, "EffectBlindness" , 0 },
605  { 469, "GetIsReactionTypeFriendly" , 0 },
606  { 470, "GetIsReactionTypeNeutral" , 0 },
607  { 471, "GetIsReactionTypeHostile" , 0 },
608  { 472, "EffectSpellLevelAbsorption" , 0 },
609  { 473, "EffectDispelMagicBest" , 0 },
610  { 474, "ActivatePortal" , 0 },
611  { 475, "GetNumStackedItems" , 0 },
612  { 476, "SurrenderToEnemies" , 0 },
613  { 477, "EffectMissChance" , 0 },
614  { 478, "GetTurnResistanceHD" , 0 },
615  { 479, "GetCreatureSize" , 0 },
616  { 480, "EffectDisappearAppear" , 0 },
617  { 481, "EffectDisappear" , 0 },
618  { 482, "EffectAppear" , 0 },
619  { 483, "ActionUnlockObject" , 0 },
620  { 484, "ActionLockObject" , 0 },
621  { 485, "EffectModifyAttacks" , 0 },
622  { 486, "GetLastTrapDetected" , 0 },
623  { 487, "EffectDamageShield" , 0 },
624  { 488, "GetNearestTrapToObject" , 0 },
625  { 489, "GetDeity" , 0 },
626  { 490, "GetSubRace" , 0 },
627  { 491, "GetFortitudeSavingThrow" , 0 },
628  { 492, "GetWillSavingThrow" , 0 },
629  { 493, "GetReflexSavingThrow" , 0 },
630  { 494, "GetChallengeRating" , 0 },
631  { 495, "GetAge" , 0 },
632  { 496, "GetMovementRate" , 0 },
633  { 497, "GetFamiliarCreatureType" , 0 },
634  { 498, "GetAnimalCompanionCreatureType" , 0 },
635  { 499, "GetFamiliarName" , 0 },
636  { 500, "GetAnimalCompanionName" , 0 },
637  { 501, "ActionCastFakeSpellAtObject" , 0 },
638  { 502, "ActionCastFakeSpellAtLocation" , 0 },
639  { 503, "RemoveSummonedAssociate" , 0 },
640  { 504, "SetCameraMode" , 0 },
641  { 505, "GetIsResting" , 0 },
642  { 506, "GetLastPCRested" , 0 },
643  { 507, "SetWeather" , 0 },
644  { 508, "GetLastRestEventType" , 0 },
645  { 509, "StartNewModule" , &Functions::startNewModule },
646  { 510, "EffectSwarm" , 0 },
647  { 511, "GetWeaponRanged" , 0 },
648  { 512, "DoSinglePlayerAutoSave" , 0 },
649  { 513, "GetGameDifficulty" , 0 },
650  { 514, "SetTileMainLightColor" , 0 },
651  { 515, "SetTileSourceLightColor" , 0 },
652  { 516, "RecomputeStaticLighting" , 0 },
653  { 517, "GetTileMainLight1Color" , 0 },
654  { 518, "GetTileMainLight2Color" , 0 },
655  { 519, "GetTileSourceLight1Color" , 0 },
656  { 520, "GetTileSourceLight2Color" , 0 },
657  { 521, "SetPanelButtonFlash" , 0 },
658  { 522, "GetCurrentAction" , 0 },
659  { 523, "SetStandardFactionReputation" , 0 },
660  { 524, "GetStandardFactionReputation" , 0 },
661  { 525, "FloatingTextStrRefOnCreature" , 0 },
662  { 526, "FloatingTextStringOnCreature" , 0 },
663  { 527, "GetTrapDisarmable" , 0 },
664  { 528, "GetTrapDetectable" , 0 },
665  { 529, "GetTrapDetectedBy" , 0 },
666  { 530, "GetTrapFlagged" , 0 },
667  { 531, "GetTrapBaseType" , 0 },
668  { 532, "GetTrapOneShot" , 0 },
669  { 533, "GetTrapCreator" , 0 },
670  { 534, "GetTrapKeyTag" , 0 },
671  { 535, "GetTrapDisarmDC" , 0 },
672  { 536, "GetTrapDetectDC" , 0 },
673  { 537, "GetLockKeyRequired" , 0 },
674  { 538, "GetLockKeyTag" , 0 },
675  { 539, "GetLockLockable" , 0 },
676  { 540, "GetLockUnlockDC" , 0 },
677  { 541, "GetLockLockDC" , 0 },
678  { 542, "GetPCLevellingUp" , 0 },
679  { 543, "GetHasFeatEffect" , 0 },
680  { 544, "SetPlaceableIllumination" , 0 },
681  { 545, "GetPlaceableIllumination" , 0 },
682  { 546, "GetIsPlaceableObjectActionPossible" , 0 },
683  { 547, "DoPlaceableObjectAction" , 0 },
684  { 548, "GetFirstPC" , &Functions::getFirstPC },
685  { 549, "GetNextPC" , &Functions::getNextPC },
686  { 550, "SetTrapDetectedBy" , 0 },
687  { 551, "GetIsTrapped" , 0 },
688  { 552, "EffectTurnResistanceDecrease" , 0 },
689  { 553, "EffectTurnResistanceIncrease" , 0 },
690  { 554, "PopUpDeathGUIPanel" , 0 },
691  { 555, "SetTrapDisabled" , 0 },
692  { 556, "GetLastHostileActor" , 0 },
693  { 557, "ExportAllCharacters" , 0 },
694  { 558, "MusicBackgroundGetDayTrack" , &Functions::musicBackgroundGetDayTrack },
695  { 559, "MusicBackgroundGetNightTrack" , &Functions::musicBackgroundGetNightTrack },
696  { 560, "WriteTimestampedLogEntry" , &Functions::writeTimestampedLogEntry },
697  { 561, "GetModuleName" , 0 },
698  { 562, "GetFactionLeader" , 0 },
699  { 563, "SendMessageToAllDMs" , 0 },
700  { 564, "EndGame" , &Functions::endGame },
701  { 565, "BootPC" , 0 },
702  { 566, "ActionCounterSpell" , 0 },
703  { 567, "AmbientSoundSetDayVolume" , 0 },
704  { 568, "AmbientSoundSetNightVolume" , 0 },
705  { 569, "MusicBackgroundGetBattleTrack" , 0 },
706  { 570, "GetHasInventory" , 0 },
707  { 571, "GetStrRefSoundDuration" , 0 },
708  { 572, "AddToParty" , 0 },
709  { 573, "RemoveFromParty" , 0 },
710  { 574, "GetStealthMode" , 0 },
711  { 575, "GetDetectMode" , 0 },
712  { 576, "GetDefensiveCastingMode" , 0 },
713  { 577, "GetAppearanceType" , 0 },
714  { 578, "SpawnScriptDebugger" , 0 },
715  { 579, "GetModuleItemAcquiredStackSize" , 0 },
716  { 580, "DecrementRemainingFeatUses" , 0 },
717  { 581, "DecrementRemainingSpellUses" , 0 },
718  { 582, "GetResRef" , 0 },
719  { 583, "EffectPetrify" , 0 },
720  { 584, "CopyItem" , 0 },
721  { 585, "EffectCutsceneParalyze" , 0 },
722  { 586, "GetDroppableFlag" , 0 },
723  { 587, "GetUseableFlag" , 0 },
724  { 588, "GetStolenFlag" , 0 },
725  { 589, "SetCampaignFloat" , 0 },
726  { 590, "SetCampaignInt" , 0 },
727  { 591, "SetCampaignVector" , 0 },
728  { 592, "SetCampaignLocation" , 0 },
729  { 593, "SetCampaignString" , 0 },
730  { 594, "DestroyCampaignDatabase" , 0 },
731  { 595, "GetCampaignFloat" , 0 },
732  { 596, "GetCampaignInt" , 0 },
733  { 597, "GetCampaignVector" , 0 },
734  { 598, "GetCampaignLocation" , 0 },
735  { 599, "GetCampaignString" , 0 },
736  { 600, "CopyObject" , 0 },
737  { 601, "DeleteCampaignVariable" , 0 },
738  { 602, "StoreCampaignObject" , 0 },
739  { 603, "RetrieveCampaignObject" , 0 },
740  { 604, "EffectCutsceneDominated" , 0 },
741  { 605, "GetItemStackSize" , 0 },
742  { 606, "SetItemStackSize" , 0 },
743  { 607, "GetItemCharges" , 0 },
744  { 608, "SetItemCharges" , 0 },
745  { 609, "AddItemProperty" , 0 },
746  { 610, "RemoveItemProperty" , 0 },
747  { 611, "GetIsItemPropertyValid" , 0 },
748  { 612, "GetFirstItemProperty" , 0 },
749  { 613, "GetNextItemProperty" , 0 },
750  { 614, "GetItemPropertyType" , 0 },
751  { 615, "GetItemPropertyDurationType" , 0 },
752  { 616, "ItemPropertyAbilityBonus" , 0 },
753  { 617, "ItemPropertyACBonus" , 0 },
754  { 618, "ItemPropertyACBonusVsAlign" , 0 },
755  { 619, "ItemPropertyACBonusVsDmgType" , 0 },
756  { 620, "ItemPropertyACBonusVsRace" , 0 },
757  { 621, "ItemPropertyACBonusVsSAlign" , 0 },
758  { 622, "ItemPropertyEnhancementBonus" , 0 },
759  { 623, "ItemPropertyEnhancementBonusVsAlign" , 0 },
760  { 624, "ItemPropertyEnhancementBonusVsRace" , 0 },
761  { 625, "ItemPropertyEnhancementBonusVsSAlign", 0 },
762  { 626, "ItemPropertyEnhancementPenalty" , 0 },
763  { 627, "ItemPropertyWeightReduction" , 0 },
764  { 628, "ItemPropertyBonusFeat" , 0 },
765  { 629, "ItemPropertyBonusLevelSpell" , 0 },
766  { 630, "ItemPropertyCastSpell" , 0 },
767  { 631, "ItemPropertyDamageBonus" , 0 },
768  { 632, "ItemPropertyDamageBonusVsAlign" , 0 },
769  { 633, "ItemPropertyDamageBonusVsRace" , 0 },
770  { 634, "ItemPropertyDamageBonusVsSAlign" , 0 },
771  { 635, "ItemPropertyDamageImmunity" , 0 },
772  { 636, "ItemPropertyDamagePenalty" , 0 },
773  { 637, "ItemPropertyDamageReduction" , 0 },
774  { 638, "ItemPropertyDamageResistance" , 0 },
775  { 639, "ItemPropertyDamageVulnerability" , 0 },
776  { 640, "ItemPropertyDarkvision" , 0 },
777  { 641, "ItemPropertyDecreaseAbility" , 0 },
778  { 642, "ItemPropertyDecreaseAC" , 0 },
779  { 643, "ItemPropertyDecreaseSkill" , 0 },
780  { 644, "ItemPropertyContainerReducedWeight" , 0 },
781  { 645, "ItemPropertyExtraMeleeDamageType" , 0 },
782  { 646, "ItemPropertyExtraRangeDamageType" , 0 },
783  { 647, "ItemPropertyHaste" , 0 },
784  { 648, "ItemPropertyHolyAvenger" , 0 },
785  { 649, "ItemPropertyImmunityMisc" , 0 },
786  { 650, "ItemPropertyImprovedEvasion" , 0 },
787  { 651, "ItemPropertyBonusSpellResistance" , 0 },
788  { 652, "ItemPropertyBonusSavingThrowVsX" , 0 },
789  { 653, "ItemPropertyBonusSavingThrow" , 0 },
790  { 654, "ItemPropertyKeen" , 0 },
791  { 655, "ItemPropertyLight" , 0 },
792  { 656, "ItemPropertyMaxRangeStrengthMod" , 0 },
793  { 657, "ItemPropertyNoDamage" , 0 },
794  { 658, "ItemPropertyOnHitProps" , 0 },
795  { 659, "ItemPropertyReducedSavingThrowVsX" , 0 },
796  { 660, "ItemPropertyReducedSavingThrow" , 0 },
797  { 661, "ItemPropertyRegeneration" , 0 },
798  { 662, "ItemPropertySkillBonus" , 0 },
799  { 663, "ItemPropertySpellImmunitySpecific" , 0 },
800  { 664, "ItemPropertySpellImmunitySchool" , 0 },
801  { 665, "ItemPropertyThievesTools" , 0 },
802  { 666, "ItemPropertyAttackBonus" , 0 },
803  { 667, "ItemPropertyAttackBonusVsAlign" , 0 },
804  { 668, "ItemPropertyAttackBonusVsRace" , 0 },
805  { 669, "ItemPropertyAttackBonusVsSAlign" , 0 },
806  { 670, "ItemPropertyAttackPenalty" , 0 },
807  { 671, "ItemPropertyUnlimitedAmmo" , 0 },
808  { 672, "ItemPropertyLimitUseByAlign" , 0 },
809  { 673, "ItemPropertyLimitUseByClass" , 0 },
810  { 674, "ItemPropertyLimitUseByRace" , 0 },
811  { 675, "ItemPropertyLimitUseBySAlign" , 0 },
812  { 676, "BadBadReplaceMeThisDoesNothing" , 0 },
813  { 677, "ItemPropertyVampiricRegeneration" , 0 },
814  { 678, "ItemPropertyTrap" , 0 },
815  { 679, "ItemPropertyTrueSeeing" , 0 },
816  { 680, "ItemPropertyOnMonsterHitProperties" , 0 },
817  { 681, "ItemPropertyTurnResistance" , 0 },
818  { 682, "ItemPropertyMassiveCritical" , 0 },
819  { 683, "ItemPropertyFreeAction" , 0 },
820  { 684, "ItemPropertyMonsterDamage" , 0 },
821  { 685, "ItemPropertyImmunityToSpellLevel" , 0 },
822  { 686, "ItemPropertySpecialWalk" , 0 },
823  { 687, "ItemPropertyHealersKit" , 0 },
824  { 688, "ItemPropertyWeightIncrease" , 0 },
825  { 689, "GetIsSkillSuccessful" , 0 },
826  { 690, "EffectSpellFailure" , 0 },
827  { 691, "SpeakStringByStrRef" , &Functions::speakStringByStrRef },
828  { 692, "SetCutsceneMode" , 0 },
829  { 693, "GetLastPCToCancelCutscene" , 0 },
830  { 694, "GetDialogSoundLength" , 0 },
831  { 695, "FadeFromBlack" , 0 },
832  { 696, "FadeToBlack" , 0 },
833  { 697, "StopFade" , 0 },
834  { 698, "BlackScreen" , 0 },
835  { 699, "GetBaseAttackBonus" , 0 },
836  { 700, "SetImmortal" , 0 },
837  { 701, "OpenInventory" , 0 },
838  { 702, "StoreCameraFacing" , 0 },
839  { 703, "RestoreCameraFacing" , 0 },
840  { 704, "LevelUpHenchman" , 0 },
841  { 705, "SetDroppableFlag" , 0 },
842  { 706, "GetWeight" , 0 },
843  { 707, "GetModuleItemAcquiredBy" , 0 },
844  { 708, "GetImmortal" , 0 },
845  { 709, "DoWhirlwindAttack" , 0 },
846  { 710, "Get2DAString" , &Functions::get2DAString },
847  { 711, "EffectEthereal" , 0 },
848  { 712, "GetAILevel" , 0 },
849  { 713, "SetAILevel" , 0 },
850  { 714, "GetIsPossessedFamiliar" , 0 },
851  { 715, "UnpossessFamiliar" , 0 },
852  { 716, "GetIsAreaInterior" , 0 },
853  { 717, "SendMessageToPCByStrRef" , 0 },
854  { 718, "IncrementRemainingFeatUses" , 0 },
855  { 719, "ExportSingleCharacter" , 0 },
856  { 720, "PlaySoundByStrRef" , &Functions::playSoundByStrRef },
857  { 721, "SetSubRace" , 0 },
858  { 722, "SetDeity" , 0 },
859  { 723, "GetIsDMPossessed" , 0 },
860  { 724, "GetWeather" , 0 },
861  { 725, "GetIsAreaNatural" , 0 },
862  { 726, "GetIsAreaAboveGround" , 0 },
863  { 727, "GetPCItemLastEquipped" , 0 },
864  { 728, "GetPCItemLastEquippedBy" , 0 },
865  { 729, "GetPCItemLastUnequipped" , 0 },
866  { 730, "GetPCItemLastUnequippedBy" , 0 },
867  { 731, "CopyItemAndModify" , 0 },
868  { 732, "GetItemAppearance" , 0 },
869  { 733, "ItemPropertyOnHitCastSpell" , 0 },
870  { 734, "GetItemPropertySubType" , 0 },
871  { 735, "GetActionMode" , 0 },
872  { 736, "SetActionMode" , 0 },
873  { 737, "GetArcaneSpellFailure" , 0 },
874  { 738, "ActionExamine" , 0 },
875  { 739, "ItemPropertyVisualEffect" , 0 },
876  { 740, "SetLootable" , 0 },
877  { 741, "GetLootable" , 0 },
878  { 742, "GetCutsceneCameraMoveRate" , 0 },
879  { 743, "SetCutsceneCameraMoveRate" , 0 },
880  { 744, "GetItemCursedFlag" , 0 },
881  { 745, "SetItemCursedFlag" , 0 },
882  { 746, "SetMaxHenchmen" , 0 },
883  { 747, "GetMaxHenchmen" , 0 },
884  { 748, "GetAssociateType" , 0 },
885  { 749, "GetSpellResistance" , 0 },
886  { 750, "DayToNight" , 0 },
887  { 751, "NightToDay" , 0 },
888  { 752, "LineOfSightObject" , 0 },
889  { 753, "LineOfSightVector" , 0 },
890  { 754, "GetLastSpellCastClass" , 0 },
891  { 755, "SetBaseAttackBonus" , 0 },
892  { 756, "RestoreBaseAttackBonus" , 0 },
893  { 757, "EffectCutsceneGhost" , 0 },
894  { 758, "ItemPropertyArcaneSpellFailure" , 0 },
895  { 759, "GetStoreGold" , 0 },
896  { 760, "SetStoreGold" , 0 },
897  { 761, "GetStoreMaxBuyPrice" , 0 },
898  { 762, "SetStoreMaxBuyPrice" , 0 },
899  { 763, "GetStoreIdentifyCost" , 0 },
900  { 764, "SetStoreIdentifyCost" , 0 },
901  { 765, "SetCreatureAppearanceType" , 0 },
902  { 766, "GetCreatureStartingPackage" , 0 },
903  { 767, "EffectCutsceneImmobilize" , 0 },
904  { 768, "GetIsInSubArea" , 0 },
905  { 769, "GetItemPropertyCostTable" , 0 },
906  { 770, "GetItemPropertyCostTableValue" , 0 },
907  { 771, "GetItemPropertyParam1" , 0 },
908  { 772, "GetItemPropertyParam1Value" , 0 },
909  { 773, "GetIsCreatureDisarmable" , 0 },
910  { 774, "SetStolenFlag" , 0 },
911  { 775, "ForceRest" , 0 },
912  { 776, "SetCameraHeight" , 0 },
913  { 777, "SetSkyBox" , 0 },
914  { 778, "GetPhenoType" , 0 },
915  { 779, "SetPhenoType" , 0 },
916  { 780, "SetFogColor" , 0 },
917  { 781, "GetCutsceneMode" , 0 },
918  { 782, "GetSkyBox" , 0 },
919  { 783, "GetFogColor" , 0 },
920  { 784, "SetFogAmount" , 0 },
921  { 785, "GetFogAmount" , 0 },
922  { 786, "GetPickpocketableFlag" , 0 },
923  { 787, "SetPickpocketableFlag" , 0 },
924  { 788, "GetFootstepType" , 0 },
925  { 789, "SetFootstepType" , 0 },
926  { 790, "GetCreatureWingType" , 0 },
927  { 791, "SetCreatureWingType" , 0 },
928  { 792, "GetCreatureBodyPart" , 0 },
929  { 793, "SetCreatureBodyPart" , 0 },
930  { 794, "GetCreatureTailType" , 0 },
931  { 795, "SetCreatureTailType" , 0 },
932  { 796, "GetHardness" , 0 },
933  { 797, "SetHardness" , 0 },
934  { 798, "SetLockKeyRequired" , 0 },
935  { 799, "SetLockKeyTag" , 0 },
936  { 800, "SetLockLockable" , 0 },
937  { 801, "SetLockUnlockDC" , 0 },
938  { 802, "SetLockLockDC" , 0 },
939  { 803, "SetTrapDisarmable" , 0 },
940  { 804, "SetTrapDetectable" , 0 },
941  { 805, "SetTrapOneShot" , 0 },
942  { 806, "SetTrapKeyTag" , 0 },
943  { 807, "SetTrapDisarmDC" , 0 },
944  { 808, "SetTrapDetectDC" , 0 },
945  { 809, "CreateTrapAtLocation" , 0 },
946  { 810, "CreateTrapOnObject" , 0 },
947  { 811, "SetWillSavingThrow" , 0 },
948  { 812, "SetReflexSavingThrow" , 0 },
949  { 813, "SetFortitudeSavingThrow" , 0 },
950  { 814, "GetTilesetResRef" , 0 },
951  { 815, "GetTrapRecoverable" , 0 },
952  { 816, "SetTrapRecoverable" , 0 },
953  { 817, "GetModuleXPScale" , 0 },
954  { 818, "SetModuleXPScale" , 0 },
955  { 819, "GetKeyRequiredFeedback" , 0 },
956  { 820, "SetKeyRequiredFeedback" , 0 },
957  { 821, "GetTrapActive" , 0 },
958  { 822, "SetTrapActive" , 0 },
959  { 823, "LockCameraPitch" , 0 },
960  { 824, "LockCameraDistance" , 0 },
961  { 825, "LockCameraDirection" , 0 },
962  { 826, "GetPlaceableLastClickedBy" , 0 },
963  { 827, "GetInfiniteFlag" , 0 },
964  { 828, "SetInfiniteFlag" , 0 },
965  { 829, "GetAreaSize" , 0 },
966  { 830, "SetName" , 0 },
967  { 831, "GetPortraitId" , 0 },
968  { 832, "SetPortraitId" , 0 },
969  { 833, "GetPortraitResRef" , 0 },
970  { 834, "SetPortraitResRef" , 0 },
971  { 835, "SetUseableFlag" , 0 },
972  { 836, "GetDescription" , 0 },
973  { 837, "SetDescription" , 0 },
974  { 838, "GetPCChatSpeaker" , 0 },
975  { 839, "GetPCChatMessage" , 0 },
976  { 840, "GetPCChatVolume" , 0 },
977  { 841, "SetPCChatMessage" , 0 },
978  { 842, "SetPCChatVolume" , 0 },
979  { 843, "GetColor" , 0 },
980  { 844, "SetColor" , 0 },
981  { 845, "ItemPropertyMaterial" , 0 },
982  { 846, "ItemPropertyQuality" , 0 },
983  { 847, "ItemPropertyAdditional" , 0 }
984 };
985 
987 const Functions::FunctionSignature Functions::kFunctionSignatures[] = {
988  { 0, kTypeInt , { kTypeInt } },
989  { 1, kTypeVoid , { kTypeString } },
990  { 2, kTypeVoid , { kTypeFloat, kTypeInt, kTypeInt } },
991  { 3, kTypeString , { kTypeFloat, kTypeInt, kTypeInt } },
992  { 4, kTypeVoid , { kTypeInt } },
993  { 5, kTypeVoid , { kTypeObject } },
994  { 6, kTypeVoid , { kTypeObject, kTypeScriptState } },
995  { 7, kTypeVoid , { kTypeFloat, kTypeScriptState } },
996  { 8, kTypeVoid , { kTypeString, kTypeObject } },
997  { 9, kTypeVoid , { kTypeInt } },
998  { 10, kTypeVoid , { kTypeFloat } },
999  { 11, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1000  { 12, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeInt } },
1001  { 13, kTypeInt , { } },
1002  { 14, kTypeInt , { } },
1003  { 15, kTypeInt , { } },
1004  { 16, kTypeInt , { } },
1005  { 17, kTypeInt , { } },
1006  { 18, kTypeInt , { } },
1007  { 19, kTypeInt , { } },
1008  { 20, kTypeVoid , { } },
1009  { 21, kTypeVoid , { kTypeEngineType, kTypeInt } },
1010  { 22, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1011  { 23, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1012  { 24, kTypeObject , { kTypeObject } },
1013  { 25, kTypeObject , { } },
1014  { 26, kTypeObject , { } },
1015  { 27, kTypeVector , { kTypeObject } },
1016  { 28, kTypeFloat , { kTypeObject } },
1017  { 29, kTypeObject , { kTypeObject } },
1018  { 30, kTypeObject , { kTypeObject, kTypeString } },
1020  { 32, kTypeVoid , { kTypeObject, kTypeInt } },
1021  { 33, kTypeVoid , { kTypeObject } },
1022  { 34, kTypeVoid , { kTypeObject } },
1023  { 35, kTypeVoid , { kTypeObject } },
1024  { 36, kTypeObject , { kTypeObject } },
1025  { 37, kTypeVoid , { kTypeObject, kTypeInt } },
1027  { 39, kTypeVoid , { kTypeString, kTypeInt } },
1028  { 40, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1029  { 41, kTypeFloat , { kTypeObject } },
1030  { 42, kTypeInt , { kTypeObject } },
1031  { 43, kTypeVoid , { kTypeObject } },
1032  { 44, kTypeVoid , { kTypeObject } },
1034  { 46, kTypeVoid , { kTypeString } },
1035  { 47, kTypeObject , { } },
1037  { 49, kTypeInt , { kTypeObject } },
1038  { 50, kTypeInt , { kTypeObject } },
1039  { 51, kTypeInt , { kTypeObject, kTypeString } },
1040  { 52, kTypeFloat , { kTypeObject, kTypeString } },
1041  { 53, kTypeString , { kTypeObject, kTypeString } },
1042  { 54, kTypeObject , { kTypeObject, kTypeString } },
1043  { 55, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1044  { 56, kTypeVoid , { kTypeObject, kTypeString, kTypeFloat } },
1045  { 57, kTypeVoid , { kTypeObject, kTypeString, kTypeString } },
1046  { 58, kTypeVoid , { kTypeObject, kTypeString, kTypeObject } },
1047  { 59, kTypeInt , { kTypeString } },
1048  { 60, kTypeString , { kTypeString } },
1049  { 61, kTypeString , { kTypeString } },
1050  { 62, kTypeString , { kTypeString, kTypeInt } },
1051  { 63, kTypeString , { kTypeString, kTypeInt } },
1052  { 64, kTypeString , { kTypeString, kTypeString, kTypeInt } },
1053  { 65, kTypeString , { kTypeString, kTypeInt, kTypeInt } },
1054  { 66, kTypeInt , { kTypeString, kTypeString, kTypeInt } },
1055  { 67, kTypeFloat , { kTypeFloat } },
1056  { 68, kTypeFloat , { kTypeFloat } },
1057  { 69, kTypeFloat , { kTypeFloat } },
1058  { 70, kTypeFloat , { kTypeFloat } },
1059  { 71, kTypeFloat , { kTypeFloat } },
1060  { 72, kTypeFloat , { kTypeFloat } },
1061  { 73, kTypeFloat , { kTypeFloat } },
1062  { 74, kTypeFloat , { kTypeFloat } },
1063  { 75, kTypeFloat , { kTypeFloat, kTypeFloat } },
1064  { 76, kTypeFloat , { kTypeFloat } },
1065  { 77, kTypeInt , { kTypeInt } },
1066  { 78, kTypeEngineType, { kTypeInt } },
1067  { 79, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1068  { 80, kTypeEngineType, { kTypeInt, kTypeInt } },
1069  { 81, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1070  { 82, kTypeEngineType, { } },
1072  { 84, kTypeInt , { kTypeObject } },
1073  { 85, kTypeEngineType, { kTypeObject } },
1074  { 86, kTypeEngineType, { kTypeObject } },
1075  { 87, kTypeVoid , { kTypeObject, kTypeEngineType } },
1076  { 88, kTypeInt , { kTypeEngineType } },
1077  { 89, kTypeInt , { kTypeEngineType } },
1078  { 90, kTypeInt , { kTypeEngineType } },
1079  { 91, kTypeObject , { kTypeEngineType } },
1080  { 92, kTypeString , { kTypeInt } },
1081  { 93, kTypeObject , { kTypeObject } },
1082  { 94, kTypeObject , { kTypeObject } },
1083  { 95, kTypeInt , { kTypeInt } },
1084  { 96, kTypeInt , { kTypeInt } },
1085  { 97, kTypeInt , { kTypeInt } },
1086  { 98, kTypeInt , { kTypeInt } },
1087  { 99, kTypeInt , { kTypeInt } },
1088  { 100, kTypeInt , { kTypeInt } },
1089  { 101, kTypeInt , { kTypeInt } },
1090  { 102, kTypeInt , { kTypeInt } },
1091  { 103, kTypeInt , { kTypeInt } },
1092  { 104, kTypeFloat , { kTypeVector } },
1093  { 105, kTypeInt , { } },
1094  { 106, kTypeInt , { kTypeObject } },
1095  { 107, kTypeInt , { kTypeObject } },
1096  { 108, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1097  { 109, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1098  { 110, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1099  { 111, kTypeInt , { } },
1100  { 112, kTypeEngineType, { kTypeEngineType } },
1101  { 113, kTypeEngineType, { kTypeEngineType } },
1102  { 114, kTypeEngineType, { kTypeEngineType } },
1103  { 115, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1104  { 116, kTypeInt , { kTypeObject, kTypeInt } },
1105  { 117, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1106  { 118, kTypeEngineType, { kTypeInt, kTypeInt } },
1107  { 119, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1108  { 120, kTypeEngineType, { kTypeInt, kTypeInt } },
1109  { 121, kTypeFloat , { kTypeInt } },
1110  { 122, kTypeFloat , { kTypeInt } },
1111  { 123, kTypeFloat , { kTypeInt } },
1112  { 124, kTypeInt , { kTypeObject } },
1113  { 125, kTypeInt , { kTypeObject } },
1114  { 126, kTypeInt , { kTypeObject } },
1115  { 127, kTypeInt , { kTypeObject } },
1118  { 130, kTypeEngineType, { } },
1119  { 131, kTypeVoid , { kTypeObject, kTypeEngineType } },
1120  { 132, kTypeEngineType, { kTypeInt } },
1121  { 133, kTypeEngineType, { kTypeInt, kTypeInt } },
1122  { 134, kTypeEngineType, { } },
1123  { 135, kTypeVoid , { kTypeObject, kTypeObject } },
1124  { 136, kTypeVoid , { kTypeObject, kTypeObject } },
1125  { 137, kTypeVector , { kTypeVector } },
1127  { 139, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1128  { 140, kTypeInt , { kTypeObject } },
1129  { 141, kTypeVoid , { kTypeVector, kTypeInt } },
1130  { 142, kTypeVector , { kTypeFloat, kTypeFloat, kTypeFloat } },
1131  { 143, kTypeVoid , { kTypeVector } },
1132  { 144, kTypeVector , { kTypeFloat } },
1133  { 145, kTypeFloat , { kTypeVector } },
1134  { 146, kTypeInt , { kTypeObject, kTypeInt } },
1135  { 147, kTypeInt , { kTypeObject, kTypeInt } },
1136  { 148, kTypeEngineType, { } },
1137  { 149, kTypeEngineType, { kTypeInt } },
1138  { 150, kTypeEngineType, { } },
1139  { 151, kTypeFloat , { kTypeObject, kTypeObject } },
1141  { 153, kTypeEngineType, { kTypeObject, kTypeString } },
1142  { 154, kTypeEngineType, { } },
1143  { 155, kTypeObject , { kTypeInt, kTypeObject } },
1144  { 156, kTypeEngineType, { } },
1145  { 157, kTypeEngineType, { } },
1146  { 158, kTypeEngineType, { } },
1147  { 159, kTypeEngineType, { } },
1148  { 160, kTypeEngineType, { } },
1149  { 161, kTypeEngineType, { } },
1150  { 162, kTypeVoid , { kTypeInt, kTypeObject } },
1151  { 163, kTypeInt , { kTypeObject } },
1152  { 164, kTypeEngineType, { kTypeInt, kTypeFloat } },
1153  { 165, kTypeEngineType, { kTypeInt } },
1154  { 166, kTypeInt , { kTypeObject } },
1155  { 167, kTypeVoid , { kTypeObject, kTypeFloat } },
1156  { 168, kTypeString , { kTypeObject } },
1157  { 169, kTypeInt , { kTypeObject, kTypeObject } },
1158  { 170, kTypeInt , { kTypeEngineType } },
1160  { 172, kTypeInt , { kTypeObject, kTypeObject } },
1161  { 173, kTypeVoid , { kTypeObject, kTypeObject } },
1162  { 174, kTypeInt , { kTypeObject } },
1163  { 175, kTypeVoid , { kTypeObject, kTypeInt } },
1164  { 176, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1165  { 177, kTypeInt , { kTypeString, kTypeString } },
1166  { 178, kTypeString , { kTypeInt } },
1167  { 179, kTypeInt , { } },
1168  { 180, kTypeEngineType, { kTypeInt, kTypeInt } },
1169  { 181, kTypeObject , { kTypeObject, kTypeInt } },
1170  { 182, kTypeObject , { kTypeObject, kTypeInt } },
1171  { 183, kTypeObject , { kTypeObject, kTypeInt } },
1172  { 184, kTypeObject , { kTypeObject, kTypeInt } },
1173  { 185, kTypeInt , { kTypeObject } },
1174  { 186, kTypeInt , { kTypeObject, kTypeObject } },
1175  { 187, kTypeInt , { kTypeObject } },
1176  { 188, kTypeInt , { kTypeObject } },
1177  { 189, kTypeInt , { kTypeObject } },
1178  { 190, kTypeInt , { kTypeObject } },
1179  { 191, kTypeInt , { kTypeObject } },
1180  { 192, kTypeObject , { kTypeObject, kTypeInt } },
1181  { 193, kTypeObject , { kTypeObject, kTypeInt } },
1182  { 194, kTypeVoid , { kTypeObject } },
1183  { 195, kTypeInt , { } },
1184  { 196, kTypeVoid , { kTypeObject, kTypeInt } },
1185  { 197, kTypeObject , { kTypeString } },
1186  { 198, kTypeObject , { kTypeObject } },
1188  { 200, kTypeObject , { kTypeString, kTypeInt } },
1189  { 201, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1190  { 202, kTypeVoid , { kTypeFloat } },
1191  { 203, kTypeVoid , { kTypeInt, kTypeString } },
1193  { 205, kTypeVoid , { } },
1194  { 206, kTypeVoid , { } },
1196  { 208, kTypeInt , { kTypeObject, kTypeObject } },
1197  { 209, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1198  { 210, kTypeObject , { kTypeObject } },
1199  { 211, kTypeObject , { kTypeObject } },
1200  { 212, kTypeEngineType, { kTypeInt } },
1201  { 213, kTypeEngineType, { kTypeObject } },
1202  { 214, kTypeVoid , { kTypeEngineType } },
1205  { 217, kTypeInt , { kTypeObject } },
1206  { 218, kTypeFloat , { kTypeFloat } },
1207  { 219, kTypeFloat , { kTypeFloat } },
1209  { 221, kTypeVoid , { kTypeString, kTypeInt } },
1210  { 222, kTypeEngineType, { } },
1211  { 223, kTypeVector , { kTypeEngineType } },
1212  { 224, kTypeObject , { kTypeEngineType } },
1213  { 225, kTypeFloat , { kTypeEngineType } },
1215  { 227, kTypeObject , { kTypeInt, kTypeObject, kTypeInt } },
1216  { 228, kTypeObject , { kTypeInt, kTypeEngineType, kTypeInt } },
1217  { 229, kTypeObject , { kTypeString, kTypeObject, kTypeInt } },
1218  { 230, kTypeFloat , { kTypeInt } },
1219  { 231, kTypeInt , { kTypeFloat } },
1220  { 232, kTypeInt , { kTypeString } },
1221  { 233, kTypeFloat , { kTypeString } },
1223  { 235, kTypeInt , { kTypeObject, kTypeObject } },
1224  { 236, kTypeInt , { kTypeObject, kTypeObject } },
1225  { 237, kTypeInt , { kTypeObject, kTypeObject } },
1226  { 238, kTypeObject , { } },
1227  { 239, kTypeString , { kTypeInt, kTypeInt } },
1228  { 240, kTypeVoid , { kTypeInt, kTypeInt } },
1229  { 241, kTypeVoid , { kTypeObject, kTypeFloat } },
1230  { 242, kTypeObject , { } },
1232  { 244, kTypeEngineType, { kTypeObject, kTypeInt, kTypeInt } },
1233  { 245, kTypeObject , { } },
1234  { 246, kTypeInt , { } },
1235  { 247, kTypeInt , { } },
1236  { 248, kTypeInt , { } },
1237  { 249, kTypeString , { kTypeInt } },
1238  { 250, kTypeEngineType, { kTypeInt } },
1239  { 251, kTypeEngineType, { kTypeInt } },
1240  { 252, kTypeEngineType, { } },
1241  { 253, kTypeString , { kTypeObject, kTypeInt } },
1242  { 254, kTypeObject , { } },
1243  { 255, kTypeInt , { kTypeString, kTypeObject } },
1244  { 256, kTypeObject , { } },
1245  { 257, kTypeInt , { } },
1246  { 258, kTypeInt , { } },
1247  { 259, kTypeInt , { } },
1248  { 260, kTypeObject , { } },
1249  { 261, kTypeInt , { } },
1250  { 262, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1251  { 263, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1252  { 264, kTypeObject , { kTypeObject } },
1253  { 265, kTypeVoid , { kTypeObject, kTypeString } },
1254  { 266, kTypeVoid , { kTypeObject, kTypeString } },
1255  { 267, kTypeVoid , { kTypeObject, kTypeString } },
1256  { 268, kTypeVoid , { kTypeObject, kTypeString } },
1257  { 269, kTypeVoid , { kTypeObject, kTypeString } },
1258  { 270, kTypeEngineType, { } },
1259  { 271, kTypeEngineType, { } },
1260  { 272, kTypeString , { kTypeObject } },
1261  { 273, kTypeEngineType, { kTypeInt } },
1262  { 274, kTypeInt , { kTypeObject, kTypeInt, kTypeObject } },
1263  { 275, kTypeEngineType, { kTypeInt, kTypeInt } },
1264  { 276, kTypeInt , { kTypeObject } },
1265  { 277, kTypeVoid , { kTypeInt, kTypeObject } },
1266  { 278, kTypeInt , { kTypeObject } },
1267  { 279, kTypeVoid , { kTypeInt, kTypeObject } },
1268  { 280, kTypeInt , { kTypeObject } },
1269  { 281, kTypeVoid , { kTypeInt, kTypeObject } },
1270  { 282, kTypeObject , { } },
1271  { 283, kTypeObject , { } },
1272  { 284, kTypeVoid , { kTypeInt, kTypeString } },
1273  { 285, kTypeInt , { kTypeInt, kTypeObject } },
1274  { 286, kTypeInt , { kTypeInt, kTypeObject } },
1275  { 287, kTypeVoid , { kTypeInt, kTypeObject } },
1277  { 289, kTypeInt , { kTypeObject, kTypeObject } },
1278  { 290, kTypeInt , { kTypeObject, kTypeObject } },
1279  { 291, kTypeObject , { } },
1280  { 292, kTypeObject , { } },
1281  { 293, kTypeObject , { } },
1282  { 294, kTypeVoid , { kTypeScriptState } },
1283  { 295, kTypeEngineType, { } },
1284  { 296, kTypeVoid , { kTypeInt, kTypeObject } },
1285  { 297, kTypeInt , { kTypeObject } },
1286  { 298, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1288  { 300, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1289  { 301, kTypeEngineType, { kTypeInt } },
1290  { 302, kTypeEngineType, { kTypeInt } },
1291  { 303, kTypeEngineType, { kTypeInt } },
1292  { 304, kTypeInt , { kTypeInt, kTypeObject } },
1293  { 305, kTypeInt , { kTypeEngineType } },
1294  { 306, kTypeInt , { kTypeEngineType, kTypeObject } },
1295  { 307, kTypeEngineType, { kTypeInt, kTypeObject } },
1296  { 308, kTypeEngineType, { kTypeInt, kTypeInt, kTypeObject } },
1297  { 309, kTypeVoid , { kTypeEngineType, kTypeObject } },
1298  { 310, kTypeVoid , { kTypeEngineType, kTypeEngineType } },
1299  { 311, kTypeInt , { kTypeObject } },
1300  { 312, kTypeInt , { kTypeObject } },
1301  { 313, kTypeVoid , { kTypeEngineType } },
1302  { 314, kTypeEngineType, { kTypeInt } },
1303  { 315, kTypeInt , { kTypeInt, kTypeObject, kTypeInt } },
1304  { 316, kTypeObject , { kTypeObject } },
1305  { 317, kTypeInt , { kTypeObject } },
1306  { 318, kTypeInt , { kTypeObject } },
1307  { 319, kTypeObject , { kTypeObject } },
1308  { 320, kTypeInt , { kTypeObject } },
1309  { 321, kTypeInt , { kTypeObject } },
1310  { 322, kTypeVoid , { kTypeObject, kTypeInt } },
1311  { 323, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1312  { 324, kTypeVoid , { kTypeObject, kTypeInt } },
1313  { 325, kTypeInt , { kTypeObject } },
1314  { 326, kTypeObject , { } },
1315  { 327, kTypeVoid , { kTypeObject } },
1316  { 328, kTypeObject , { kTypeObject } },
1317  { 329, kTypeVoid , { kTypeObject } },
1318  { 330, kTypeObject , { } },
1319  { 331, kTypeInt , { kTypeInt, kTypeObject } },
1320  { 332, kTypeInt , { kTypeObject } },
1321  { 333, kTypeVoid , { kTypeObject, kTypeInt } },
1322  { 334, kTypeVoid , { kTypeObject } },
1323  { 335, kTypeVoid , { kTypeObject } },
1324  { 336, kTypeObject , { } },
1325  { 337, kTypeInt , { kTypeObject, kTypeInt } },
1326  { 338, kTypeVoid , { kTypeObject, kTypeInt } },
1327  { 339, kTypeObject , { kTypeObject } },
1328  { 340, kTypeObject , { kTypeObject } },
1329  { 341, kTypeInt , { kTypeInt, kTypeObject } },
1330  { 342, kTypeInt , { kTypeInt, kTypeObject } },
1331  { 343, kTypeInt , { kTypeInt, kTypeObject } },
1332  { 344, kTypeInt , { kTypeInt } },
1333  { 345, kTypeInt , { } },
1334  { 346, kTypeObject , { kTypeObject } },
1335  { 347, kTypeObject , { } },
1336  { 348, kTypeObject , { } },
1337  { 349, kTypeObject , { } },
1338  { 350, kTypeObject , { } },
1339  { 351, kTypeEngineType, { kTypeInt, kTypeInt } },
1340  { 352, kTypeInt , { } },
1341  { 353, kTypeObject , { } },
1342  { 354, kTypeObject , { kTypeObject, kTypeInt } },
1344  { 356, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1345  { 357, kTypeEngineType, { kTypeEngineType } },
1346  { 358, kTypeInt , { kTypeObject } },
1347  { 359, kTypeInt , { kTypeEngineType } },
1348  { 360, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1349  { 361, kTypeObject , { } },
1350  { 362, kTypeInt , { kTypeEngineType } },
1351  { 363, kTypeInt , { kTypeEngineType } },
1352  { 364, kTypeObject , { kTypeInt, kTypeObject, kTypeInt } },
1353  { 365, kTypeVoid , { kTypeObject, kTypeObject } },
1354  { 366, kTypeVoid , { kTypeObject, kTypeObject } },
1357  { 369, kTypeString , { kTypeObject, kTypeInt } },
1358  { 370, kTypeString , { kTypeObject } },
1359  { 371, kTypeString , { kTypeObject } },
1360  { 372, kTypeVoid , { kTypeObject, kTypeObject } },
1361  { 373, kTypeVoid , { kTypeObject, kTypeObject } },
1362  { 374, kTypeVoid , { kTypeObject, kTypeString } },
1363  { 375, kTypeObject , { } },
1364  { 376, kTypeObject , { } },
1365  { 377, kTypeInt , { kTypeInt, kTypeObject } },
1367  { 379, kTypeEngineType, { } },
1368  { 380, kTypeObject , { kTypeObject, kTypeInt } },
1369  { 381, kTypeObject , { kTypeObject, kTypeInt } },
1370  { 382, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1372  { 384, kTypeInt , { kTypeString } },
1373  { 385, kTypeVoid , { kTypeObject, kTypeInt } },
1374  { 386, kTypeVoid , { kTypeObject, kTypeInt } },
1375  { 387, kTypeEngineType, { kTypeFloat } },
1376  { 388, kTypeVoid , { kTypeObject, kTypeInt } },
1377  { 389, kTypeVoid , { kTypeObject, kTypeObject } },
1381  { 393, kTypeVoid , { kTypeObject, kTypeInt } },
1382  { 394, kTypeVoid , { kTypeObject, kTypeInt } },
1383  { 395, kTypeInt , { kTypeObject } },
1384  { 396, kTypeString , { kTypeInt } },
1385  { 397, kTypeInt , { kTypeObject } },
1386  { 398, kTypeInt , { kTypeObject, kTypeInt } },
1387  { 399, kTypeVoid , { kTypeObject, kTypeInt } },
1388  { 400, kTypeVoid , { kTypeObject } },
1389  { 401, kTypeInt , { kTypeObject } },
1390  { 402, kTypeVoid , { kTypeInt } },
1391  { 403, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1392  { 404, kTypeVoid , { } },
1393  { 405, kTypeInt , { } },
1394  { 406, kTypeInt , { } },
1395  { 407, kTypeInt , { } },
1396  { 408, kTypeInt , { } },
1397  { 409, kTypeInt , { kTypeObject } },
1398  { 410, kTypeObject , { } },
1399  { 411, kTypeEngineType, { } },
1400  { 412, kTypeVoid , { kTypeObject, kTypeInt } },
1401  { 413, kTypeVoid , { kTypeObject } },
1402  { 414, kTypeVoid , { kTypeObject } },
1403  { 415, kTypeVoid , { kTypeObject, kTypeInt } },
1404  { 416, kTypeVoid , { kTypeObject, kTypeVector } },
1405  { 417, kTypeVoid , { kTypeString, kTypeObject } },
1406  { 418, kTypeInt , { kTypeObject } },
1407  { 419, kTypeObject , { } },
1408  { 420, kTypeInt , { kTypeObject } },
1409  { 421, kTypeVoid , { kTypeInt, kTypeObject } },
1410  { 422, kTypeInt , { kTypeObject, kTypeInt } },
1411  { 423, kTypeInt , { } },
1413  { 425, kTypeVoid , { kTypeObject } },
1414  { 426, kTypeVoid , { kTypeObject } },
1415  { 427, kTypeVoid , { kTypeObject, kTypeInt } },
1416  { 428, kTypeVoid , { kTypeObject, kTypeInt } },
1417  { 429, kTypeVoid , { kTypeObject, kTypeInt } },
1418  { 430, kTypeVoid , { kTypeObject } },
1419  { 431, kTypeVoid , { kTypeObject } },
1420  { 432, kTypeVoid , { kTypeObject, kTypeInt } },
1421  { 433, kTypeVoid , { kTypeObject } },
1422  { 434, kTypeVoid , { kTypeObject } },
1423  { 435, kTypeVoid , { kTypeObject, kTypeInt } },
1424  { 436, kTypeVoid , { kTypeObject, kTypeInt } },
1425  { 437, kTypeObject , { } },
1426  { 438, kTypeObject , { } },
1427  { 439, kTypeObject , { } },
1428  { 440, kTypeObject , { } },
1429  { 441, kTypeEngineType, { } },
1430  { 442, kTypeObject , { } },
1431  { 443, kTypeInt , { kTypeObject } },
1432  { 444, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1433  { 445, kTypeInt , { kTypeObject } },
1434  { 446, kTypeEngineType, { kTypeInt, kTypeInt } },
1435  { 447, kTypeEngineType, { kTypeInt, kTypeInt } },
1436  { 448, kTypeEngineType, { kTypeInt, kTypeInt } },
1437  { 449, kTypeEngineType, { kTypeInt, kTypeInt } },
1438  { 450, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1439  { 451, kTypeEngineType, { kTypeInt } },
1440  { 452, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1441  { 453, kTypeEngineType, { kTypeInt, kTypeInt } },
1442  { 454, kTypeEngineType, { kTypeInt } },
1443  { 455, kTypeInt , { kTypeObject } },
1444  { 456, kTypeVoid , { kTypeObject, kTypeInt } },
1445  { 457, kTypeEngineType, { kTypeInt } },
1446  { 458, kTypeEngineType, { kTypeInt, kTypeInt } },
1447  { 459, kTypeEngineType, { } },
1448  { 460, kTypeEngineType, { kTypeInt } },
1449  { 461, kTypeEngineType, { } },
1450  { 462, kTypeEngineType, { kTypeInt, kTypeInt } },
1451  { 463, kTypeEngineType, { kTypeInt, kTypeInt } },
1452  { 464, kTypeEngineType, { kTypeInt } },
1453  { 465, kTypeEngineType, { } },
1454  { 466, kTypeEngineType, { } },
1455  { 467, kTypeEngineType, { } },
1456  { 468, kTypeEngineType, { } },
1457  { 469, kTypeInt , { kTypeObject, kTypeObject } },
1458  { 470, kTypeInt , { kTypeObject, kTypeObject } },
1459  { 471, kTypeInt , { kTypeObject, kTypeObject } },
1460  { 472, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1461  { 473, kTypeEngineType, { kTypeInt } },
1463  { 475, kTypeInt , { kTypeObject } },
1464  { 476, kTypeVoid , { } },
1465  { 477, kTypeEngineType, { kTypeInt, kTypeInt } },
1466  { 478, kTypeInt , { kTypeObject } },
1467  { 479, kTypeInt , { kTypeObject } },
1468  { 480, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1469  { 481, kTypeEngineType, { kTypeInt } },
1470  { 482, kTypeEngineType, { kTypeInt } },
1471  { 483, kTypeVoid , { kTypeObject } },
1472  { 484, kTypeVoid , { kTypeObject } },
1473  { 485, kTypeEngineType, { kTypeInt } },
1474  { 486, kTypeObject , { kTypeObject } },
1475  { 487, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1476  { 488, kTypeObject , { kTypeObject, kTypeInt } },
1477  { 489, kTypeString , { kTypeObject } },
1478  { 490, kTypeString , { kTypeObject } },
1479  { 491, kTypeInt , { kTypeObject } },
1480  { 492, kTypeInt , { kTypeObject } },
1481  { 493, kTypeInt , { kTypeObject } },
1482  { 494, kTypeFloat , { kTypeObject } },
1483  { 495, kTypeInt , { kTypeObject } },
1484  { 496, kTypeInt , { kTypeObject } },
1485  { 497, kTypeInt , { kTypeObject } },
1486  { 498, kTypeInt , { kTypeObject } },
1487  { 499, kTypeString , { kTypeObject } },
1488  { 500, kTypeString , { kTypeObject } },
1489  { 501, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1490  { 502, kTypeVoid , { kTypeInt, kTypeEngineType, kTypeInt } },
1491  { 503, kTypeVoid , { kTypeObject, kTypeObject } },
1492  { 504, kTypeVoid , { kTypeObject, kTypeInt } },
1493  { 505, kTypeInt , { kTypeObject } },
1494  { 506, kTypeObject , { } },
1495  { 507, kTypeVoid , { kTypeObject, kTypeInt } },
1496  { 508, kTypeInt , { } },
1497  { 509, kTypeVoid , { kTypeString } },
1499  { 511, kTypeInt , { kTypeObject } },
1500  { 512, kTypeVoid , { } },
1501  { 513, kTypeInt , { } },
1502  { 514, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeInt } },
1503  { 515, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeInt } },
1504  { 516, kTypeVoid , { kTypeObject } },
1505  { 517, kTypeInt , { kTypeEngineType } },
1506  { 518, kTypeInt , { kTypeEngineType } },
1507  { 519, kTypeInt , { kTypeEngineType } },
1508  { 520, kTypeInt , { kTypeEngineType } },
1509  { 521, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1510  { 522, kTypeInt , { kTypeObject } },
1511  { 523, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1512  { 524, kTypeInt , { kTypeInt, kTypeObject } },
1513  { 525, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1514  { 526, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1515  { 527, kTypeInt , { kTypeObject } },
1516  { 528, kTypeInt , { kTypeObject } },
1517  { 529, kTypeInt , { kTypeObject, kTypeObject } },
1518  { 530, kTypeInt , { kTypeObject } },
1519  { 531, kTypeInt , { kTypeObject } },
1520  { 532, kTypeInt , { kTypeObject } },
1521  { 533, kTypeObject , { kTypeObject } },
1522  { 534, kTypeString , { kTypeObject } },
1523  { 535, kTypeInt , { kTypeObject } },
1524  { 536, kTypeInt , { kTypeObject } },
1525  { 537, kTypeInt , { kTypeObject } },
1526  { 538, kTypeString , { kTypeObject } },
1527  { 539, kTypeInt , { kTypeObject } },
1528  { 540, kTypeInt , { kTypeObject } },
1529  { 541, kTypeInt , { kTypeObject } },
1530  { 542, kTypeObject , { } },
1531  { 543, kTypeInt , { kTypeInt, kTypeObject } },
1532  { 544, kTypeVoid , { kTypeObject, kTypeInt } },
1533  { 545, kTypeInt , { kTypeObject } },
1534  { 546, kTypeInt , { kTypeObject, kTypeInt } },
1535  { 547, kTypeVoid , { kTypeObject, kTypeInt } },
1536  { 548, kTypeObject , { } },
1537  { 549, kTypeObject , { } },
1538  { 550, kTypeInt , { kTypeObject, kTypeObject, kTypeInt } },
1539  { 551, kTypeInt , { kTypeObject } },
1540  { 552, kTypeEngineType, { kTypeInt } },
1541  { 553, kTypeEngineType, { kTypeInt } },
1543  { 555, kTypeVoid , { kTypeObject } },
1544  { 556, kTypeObject , { kTypeObject } },
1545  { 557, kTypeVoid , { } },
1546  { 558, kTypeInt , { kTypeObject } },
1547  { 559, kTypeInt , { kTypeObject } },
1548  { 560, kTypeVoid , { kTypeString } },
1549  { 561, kTypeString , { } },
1550  { 562, kTypeObject , { kTypeObject } },
1551  { 563, kTypeVoid , { kTypeString } },
1552  { 564, kTypeVoid , { kTypeString } },
1553  { 565, kTypeVoid , { kTypeObject } },
1554  { 566, kTypeVoid , { kTypeObject } },
1555  { 567, kTypeVoid , { kTypeObject, kTypeInt } },
1556  { 568, kTypeVoid , { kTypeObject, kTypeInt } },
1557  { 569, kTypeInt , { kTypeObject } },
1558  { 570, kTypeInt , { kTypeObject } },
1559  { 571, kTypeFloat , { kTypeInt } },
1560  { 572, kTypeVoid , { kTypeObject, kTypeObject } },
1561  { 573, kTypeVoid , { kTypeObject } },
1562  { 574, kTypeInt , { kTypeObject } },
1563  { 575, kTypeInt , { kTypeObject } },
1564  { 576, kTypeInt , { kTypeObject } },
1565  { 577, kTypeInt , { kTypeObject } },
1566  { 578, kTypeVoid , { } },
1567  { 579, kTypeInt , { } },
1568  { 580, kTypeVoid , { kTypeObject, kTypeInt } },
1569  { 581, kTypeVoid , { kTypeObject, kTypeInt } },
1570  { 582, kTypeString , { kTypeObject } },
1571  { 583, kTypeEngineType, { } },
1572  { 584, kTypeObject , { kTypeObject, kTypeObject, kTypeInt } },
1573  { 585, kTypeEngineType, { } },
1574  { 586, kTypeInt , { kTypeObject } },
1575  { 587, kTypeInt , { kTypeObject } },
1576  { 588, kTypeInt , { kTypeObject } },
1582  { 594, kTypeVoid , { kTypeString } },
1583  { 595, kTypeFloat , { kTypeString, kTypeString, kTypeObject } },
1584  { 596, kTypeInt , { kTypeString, kTypeString, kTypeObject } },
1589  { 601, kTypeVoid , { kTypeString, kTypeString, kTypeObject } },
1592  { 604, kTypeEngineType, { } },
1593  { 605, kTypeInt , { kTypeObject } },
1594  { 606, kTypeVoid , { kTypeObject, kTypeInt } },
1595  { 607, kTypeInt , { kTypeObject } },
1596  { 608, kTypeVoid , { kTypeObject, kTypeInt } },
1598  { 610, kTypeVoid , { kTypeObject, kTypeEngineType } },
1599  { 611, kTypeInt , { kTypeEngineType } },
1600  { 612, kTypeEngineType, { kTypeObject } },
1601  { 613, kTypeEngineType, { kTypeObject } },
1602  { 614, kTypeInt , { kTypeEngineType } },
1603  { 615, kTypeInt , { kTypeEngineType } },
1604  { 616, kTypeEngineType, { kTypeInt, kTypeInt } },
1605  { 617, kTypeEngineType, { kTypeInt } },
1606  { 618, kTypeEngineType, { kTypeInt, kTypeInt } },
1607  { 619, kTypeEngineType, { kTypeInt, kTypeInt } },
1608  { 620, kTypeEngineType, { kTypeInt, kTypeInt } },
1609  { 621, kTypeEngineType, { kTypeInt, kTypeInt } },
1610  { 622, kTypeEngineType, { kTypeInt } },
1611  { 623, kTypeEngineType, { kTypeInt, kTypeInt } },
1612  { 624, kTypeEngineType, { kTypeInt, kTypeInt } },
1613  { 625, kTypeEngineType, { kTypeInt, kTypeInt } },
1614  { 626, kTypeEngineType, { kTypeInt } },
1615  { 627, kTypeEngineType, { kTypeInt } },
1616  { 628, kTypeEngineType, { kTypeInt } },
1617  { 629, kTypeEngineType, { kTypeInt, kTypeInt } },
1618  { 630, kTypeEngineType, { kTypeInt, kTypeInt } },
1619  { 631, kTypeEngineType, { kTypeInt, kTypeInt } },
1620  { 632, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1621  { 633, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1622  { 634, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1623  { 635, kTypeEngineType, { kTypeInt, kTypeInt } },
1624  { 636, kTypeEngineType, { kTypeInt } },
1625  { 637, kTypeEngineType, { kTypeInt, kTypeInt } },
1626  { 638, kTypeEngineType, { kTypeInt, kTypeInt } },
1627  { 639, kTypeEngineType, { kTypeInt, kTypeInt } },
1628  { 640, kTypeEngineType, { } },
1629  { 641, kTypeEngineType, { kTypeInt, kTypeInt } },
1630  { 642, kTypeEngineType, { kTypeInt, kTypeInt } },
1631  { 643, kTypeEngineType, { kTypeInt, kTypeInt } },
1632  { 644, kTypeEngineType, { kTypeInt } },
1633  { 645, kTypeEngineType, { kTypeInt } },
1634  { 646, kTypeEngineType, { kTypeInt } },
1635  { 647, kTypeEngineType, { } },
1636  { 648, kTypeEngineType, { } },
1637  { 649, kTypeEngineType, { kTypeInt } },
1638  { 650, kTypeEngineType, { } },
1639  { 651, kTypeEngineType, { kTypeInt } },
1640  { 652, kTypeEngineType, { kTypeInt, kTypeInt } },
1641  { 653, kTypeEngineType, { kTypeInt, kTypeInt } },
1642  { 654, kTypeEngineType, { } },
1643  { 655, kTypeEngineType, { kTypeInt, kTypeInt } },
1644  { 656, kTypeEngineType, { kTypeInt } },
1645  { 657, kTypeEngineType, { } },
1646  { 658, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1647  { 659, kTypeEngineType, { kTypeInt, kTypeInt } },
1648  { 660, kTypeEngineType, { kTypeInt, kTypeInt } },
1649  { 661, kTypeEngineType, { kTypeInt } },
1650  { 662, kTypeEngineType, { kTypeInt, kTypeInt } },
1651  { 663, kTypeEngineType, { kTypeInt } },
1652  { 664, kTypeEngineType, { kTypeInt } },
1653  { 665, kTypeEngineType, { kTypeInt } },
1654  { 666, kTypeEngineType, { kTypeInt } },
1655  { 667, kTypeEngineType, { kTypeInt, kTypeInt } },
1656  { 668, kTypeEngineType, { kTypeInt, kTypeInt } },
1657  { 669, kTypeEngineType, { kTypeInt, kTypeInt } },
1658  { 670, kTypeEngineType, { kTypeInt } },
1659  { 671, kTypeEngineType, { kTypeInt } },
1660  { 672, kTypeEngineType, { kTypeInt } },
1661  { 673, kTypeEngineType, { kTypeInt } },
1662  { 674, kTypeEngineType, { kTypeInt } },
1663  { 675, kTypeEngineType, { kTypeInt } },
1664  { 676, kTypeEngineType, { } },
1665  { 677, kTypeEngineType, { kTypeInt } },
1666  { 678, kTypeEngineType, { kTypeInt, kTypeInt } },
1667  { 679, kTypeEngineType, { } },
1668  { 680, kTypeEngineType, { kTypeInt, kTypeInt } },
1669  { 681, kTypeEngineType, { kTypeInt } },
1670  { 682, kTypeEngineType, { kTypeInt } },
1671  { 683, kTypeEngineType, { } },
1672  { 684, kTypeEngineType, { kTypeInt } },
1673  { 685, kTypeEngineType, { kTypeInt } },
1674  { 686, kTypeEngineType, { kTypeInt } },
1675  { 687, kTypeEngineType, { kTypeInt } },
1676  { 688, kTypeEngineType, { kTypeInt } },
1677  { 689, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1678  { 690, kTypeEngineType, { kTypeInt, kTypeInt } },
1679  { 691, kTypeVoid , { kTypeInt, kTypeInt } },
1680  { 692, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1681  { 693, kTypeObject , { } },
1682  { 694, kTypeFloat , { kTypeInt } },
1683  { 695, kTypeVoid , { kTypeObject, kTypeFloat } },
1684  { 696, kTypeVoid , { kTypeObject, kTypeFloat } },
1685  { 697, kTypeVoid , { kTypeObject } },
1686  { 698, kTypeVoid , { kTypeObject } },
1687  { 699, kTypeInt , { kTypeObject } },
1688  { 700, kTypeVoid , { kTypeObject, kTypeInt } },
1689  { 701, kTypeVoid , { kTypeObject, kTypeObject } },
1690  { 702, kTypeVoid , { } },
1691  { 703, kTypeVoid , { } },
1692  { 704, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1693  { 705, kTypeVoid , { kTypeObject, kTypeInt } },
1694  { 706, kTypeInt , { kTypeObject } },
1695  { 707, kTypeObject , { } },
1696  { 708, kTypeInt , { kTypeObject } },
1697  { 709, kTypeVoid , { kTypeInt, kTypeInt } },
1698  { 710, kTypeString , { kTypeString, kTypeString, kTypeInt } },
1699  { 711, kTypeEngineType, { } },
1700  { 712, kTypeInt , { kTypeObject } },
1701  { 713, kTypeVoid , { kTypeObject, kTypeInt } },
1702  { 714, kTypeInt , { kTypeObject } },
1703  { 715, kTypeVoid , { kTypeObject } },
1704  { 716, kTypeInt , { kTypeObject } },
1705  { 717, kTypeVoid , { kTypeObject, kTypeInt } },
1706  { 718, kTypeVoid , { kTypeObject, kTypeInt } },
1707  { 719, kTypeVoid , { kTypeObject } },
1708  { 720, kTypeVoid , { kTypeInt, kTypeInt } },
1709  { 721, kTypeVoid , { kTypeObject, kTypeString } },
1710  { 722, kTypeVoid , { kTypeObject, kTypeString } },
1711  { 723, kTypeInt , { kTypeObject } },
1712  { 724, kTypeInt , { kTypeObject } },
1713  { 725, kTypeInt , { kTypeObject } },
1714  { 726, kTypeInt , { kTypeObject } },
1715  { 727, kTypeObject , { } },
1716  { 728, kTypeObject , { } },
1717  { 729, kTypeObject , { } },
1718  { 730, kTypeObject , { } },
1720  { 732, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1721  { 733, kTypeEngineType, { kTypeInt, kTypeInt } },
1722  { 734, kTypeInt , { kTypeEngineType } },
1723  { 735, kTypeInt , { kTypeObject, kTypeInt } },
1724  { 736, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1725  { 737, kTypeInt , { kTypeObject } },
1726  { 738, kTypeVoid , { kTypeObject } },
1727  { 739, kTypeEngineType, { kTypeInt } },
1728  { 740, kTypeVoid , { kTypeObject, kTypeInt } },
1729  { 741, kTypeInt , { kTypeObject } },
1730  { 742, kTypeFloat , { kTypeObject } },
1731  { 743, kTypeVoid , { kTypeObject, kTypeFloat } },
1732  { 744, kTypeInt , { kTypeObject } },
1733  { 745, kTypeVoid , { kTypeObject, kTypeInt } },
1734  { 746, kTypeVoid , { kTypeInt } },
1735  { 747, kTypeInt , { } },
1736  { 748, kTypeInt , { kTypeObject } },
1737  { 749, kTypeInt , { kTypeObject } },
1738  { 750, kTypeVoid , { kTypeObject, kTypeFloat } },
1739  { 751, kTypeVoid , { kTypeObject, kTypeFloat } },
1740  { 752, kTypeInt , { kTypeObject, kTypeObject } },
1741  { 753, kTypeInt , { kTypeVector, kTypeVector } },
1742  { 754, kTypeInt , { } },
1743  { 755, kTypeVoid , { kTypeInt, kTypeObject } },
1744  { 756, kTypeVoid , { kTypeObject } },
1745  { 757, kTypeEngineType, { } },
1746  { 758, kTypeEngineType, { kTypeInt } },
1747  { 759, kTypeInt , { kTypeObject } },
1748  { 760, kTypeVoid , { kTypeObject, kTypeInt } },
1749  { 761, kTypeInt , { kTypeObject } },
1750  { 762, kTypeVoid , { kTypeObject, kTypeInt } },
1751  { 763, kTypeInt , { kTypeObject } },
1752  { 764, kTypeVoid , { kTypeObject, kTypeInt } },
1753  { 765, kTypeVoid , { kTypeObject, kTypeInt } },
1754  { 766, kTypeInt , { kTypeObject } },
1755  { 767, kTypeEngineType, { } },
1756  { 768, kTypeInt , { kTypeObject, kTypeObject } },
1757  { 769, kTypeInt , { kTypeEngineType } },
1758  { 770, kTypeInt , { kTypeEngineType } },
1759  { 771, kTypeInt , { kTypeEngineType } },
1760  { 772, kTypeInt , { kTypeEngineType } },
1761  { 773, kTypeInt , { kTypeObject } },
1762  { 774, kTypeVoid , { kTypeObject, kTypeInt } },
1763  { 775, kTypeVoid , { kTypeObject } },
1764  { 776, kTypeVoid , { kTypeObject, kTypeFloat } },
1765  { 777, kTypeVoid , { kTypeInt, kTypeObject } },
1766  { 778, kTypeInt , { kTypeObject } },
1767  { 779, kTypeVoid , { kTypeInt, kTypeObject } },
1768  { 780, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1769  { 781, kTypeInt , { kTypeObject } },
1770  { 782, kTypeInt , { kTypeObject } },
1771  { 783, kTypeInt , { kTypeInt, kTypeObject } },
1772  { 784, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1773  { 785, kTypeInt , { kTypeInt, kTypeObject } },
1774  { 786, kTypeInt , { kTypeObject } },
1775  { 787, kTypeVoid , { kTypeObject, kTypeInt } },
1776  { 788, kTypeInt , { kTypeObject } },
1777  { 789, kTypeVoid , { kTypeInt, kTypeObject } },
1778  { 790, kTypeInt , { kTypeObject } },
1779  { 791, kTypeVoid , { kTypeInt, kTypeObject } },
1780  { 792, kTypeInt , { kTypeInt, kTypeObject } },
1781  { 793, kTypeVoid , { kTypeInt, kTypeInt, kTypeObject } },
1782  { 794, kTypeInt , { kTypeObject } },
1783  { 795, kTypeVoid , { kTypeInt, kTypeObject } },
1784  { 796, kTypeInt , { kTypeObject } },
1785  { 797, kTypeVoid , { kTypeInt, kTypeObject } },
1786  { 798, kTypeVoid , { kTypeObject, kTypeInt } },
1787  { 799, kTypeVoid , { kTypeObject, kTypeString } },
1788  { 800, kTypeVoid , { kTypeObject, kTypeInt } },
1789  { 801, kTypeVoid , { kTypeObject, kTypeInt } },
1790  { 802, kTypeVoid , { kTypeObject, kTypeInt } },
1791  { 803, kTypeVoid , { kTypeObject, kTypeInt } },
1792  { 804, kTypeVoid , { kTypeObject, kTypeInt } },
1793  { 805, kTypeVoid , { kTypeObject, kTypeInt } },
1794  { 806, kTypeVoid , { kTypeObject, kTypeString } },
1795  { 807, kTypeVoid , { kTypeObject, kTypeInt } },
1796  { 808, kTypeVoid , { kTypeObject, kTypeInt } },
1799  { 811, kTypeVoid , { kTypeObject, kTypeInt } },
1800  { 812, kTypeVoid , { kTypeObject, kTypeInt } },
1801  { 813, kTypeVoid , { kTypeObject, kTypeInt } },
1802  { 814, kTypeString , { kTypeObject } },
1803  { 815, kTypeInt , { kTypeObject } },
1804  { 816, kTypeVoid , { kTypeObject, kTypeInt } },
1805  { 817, kTypeInt , { } },
1806  { 818, kTypeVoid , { kTypeInt } },
1807  { 819, kTypeString , { kTypeObject } },
1808  { 820, kTypeVoid , { kTypeObject, kTypeString } },
1809  { 821, kTypeInt , { kTypeObject } },
1810  { 822, kTypeVoid , { kTypeObject, kTypeInt } },
1811  { 823, kTypeVoid , { kTypeObject, kTypeInt } },
1812  { 824, kTypeVoid , { kTypeObject, kTypeInt } },
1813  { 825, kTypeVoid , { kTypeObject, kTypeInt } },
1814  { 826, kTypeObject , { } },
1815  { 827, kTypeInt , { kTypeObject } },
1816  { 828, kTypeVoid , { kTypeObject, kTypeInt } },
1817  { 829, kTypeInt , { kTypeInt, kTypeObject } },
1818  { 830, kTypeVoid , { kTypeObject, kTypeString } },
1819  { 831, kTypeInt , { kTypeObject } },
1820  { 832, kTypeVoid , { kTypeObject, kTypeInt } },
1821  { 833, kTypeString , { kTypeObject } },
1822  { 834, kTypeVoid , { kTypeObject, kTypeString } },
1823  { 835, kTypeVoid , { kTypeObject, kTypeInt } },
1824  { 836, kTypeString , { kTypeObject, kTypeInt, kTypeInt } },
1825  { 837, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1826  { 838, kTypeObject , { } },
1827  { 839, kTypeString , { } },
1828  { 840, kTypeInt , { } },
1829  { 841, kTypeVoid , { kTypeString } },
1830  { 842, kTypeVoid , { kTypeInt } },
1831  { 843, kTypeInt , { kTypeObject, kTypeInt } },
1832  { 844, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1833  { 845, kTypeEngineType, { kTypeInt } },
1834  { 846, kTypeEngineType, { kTypeInt } },
1835  { 847, kTypeEngineType, { kTypeInt } }
1836 };
1837 
1839 const Functions::FunctionDefaults Functions::kFunctionDefaults[] = {
1840  { 0, { } },
1841  { 1, { } },
1842  { 2, { &kDefaultInt18, &kDefaultInt9 } },
1843  { 3, { &kDefaultInt18, &kDefaultInt9 } },
1844  { 4, { } },
1845  { 5, { } },
1846  { 6, { } },
1847  { 7, { } },
1848  { 8, { } },
1849  { 9, { &kDefaultFalse } },
1850  { 10, { } },
1851  { 11, { } },
1852  { 12, { } },
1853  { 13, { } },
1854  { 14, { } },
1855  { 15, { } },
1856  { 16, { } },
1857  { 17, { } },
1858  { 18, { } },
1859  { 19, { } },
1860  { 20, { } },
1861  { 21, { &kDefaultFalse } },
1862  { 22, { &kDefaultFalse, &kDefaultFloat1_0 } },
1863  { 23, { &kDefaultFalse, &kDefaultFloat40_0 } },
1864  { 24, { } },
1865  { 25, { } },
1866  { 26, { } },
1867  { 27, { } },
1868  { 28, { } },
1869  { 29, { } },
1870  { 30, { } },
1871  { 31, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultStringEmpty } },
1872  { 32, { } },
1873  { 33, { } },
1874  { 34, { } },
1875  { 35, { } },
1876  { 36, { &kDefaultObjectSelf } },
1877  { 37, { &kDefaultFalse } },
1878  { 38, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
1879  { 39, { &kDefaultTalkVolumeTalk } },
1880  { 40, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
1881  { 41, { } },
1882  { 42, { } },
1883  { 43, { } },
1884  { 44, { } },
1886  { 46, { } },
1887  { 47, { } },
1889  { 49, { &kDefaultObjectSelf } },
1890  { 50, { &kDefaultObjectSelf } },
1891  { 51, { } },
1892  { 52, { } },
1893  { 53, { } },
1894  { 54, { } },
1895  { 55, { } },
1896  { 56, { } },
1897  { 57, { } },
1898  { 58, { } },
1899  { 59, { } },
1900  { 60, { } },
1901  { 61, { } },
1902  { 62, { } },
1903  { 63, { } },
1904  { 64, { } },
1905  { 65, { } },
1906  { 66, { &kDefaultInt0 } },
1907  { 67, { } },
1908  { 68, { } },
1909  { 69, { } },
1910  { 70, { } },
1911  { 71, { } },
1912  { 72, { } },
1913  { 73, { } },
1914  { 74, { } },
1915  { 75, { } },
1916  { 76, { } },
1917  { 77, { } },
1918  { 78, { } },
1920  { 80, { } },
1921  { 81, { &kDefaultInt0 } },
1922  { 82, { } },
1924  { 84, { } },
1925  { 85, { } },
1926  { 86, { } },
1927  { 87, { } },
1928  { 88, { } },
1929  { 89, { } },
1930  { 90, { } },
1931  { 91, { } },
1932  { 92, { } },
1933  { 93, { &kDefaultObjectInvalid } },
1934  { 94, { &kDefaultObjectInvalid } },
1935  { 95, { &kDefaultInt1 } },
1936  { 96, { &kDefaultInt1 } },
1937  { 97, { &kDefaultInt1 } },
1938  { 98, { &kDefaultInt1 } },
1939  { 99, { &kDefaultInt1 } },
1940  { 100, { &kDefaultInt1 } },
1941  { 101, { &kDefaultInt1 } },
1942  { 102, { &kDefaultInt1 } },
1943  { 103, { &kDefaultInt1 } },
1944  { 104, { } },
1945  { 105, { } },
1946  { 106, { } },
1947  { 107, { } },
1948  { 108, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1949  { 109, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1950  { 110, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1951  { 111, { } },
1952  { 112, { } },
1953  { 113, { } },
1954  { 114, { } },
1956  { 116, { &kDefaultInt0 } },
1957  { 117, { &kDefaultSavingThrowTypeAll } },
1958  { 118, { &kDefaultAttackBonusMisc } },
1959  { 119, { &kDefaultInt0 } },
1960  { 120, { &kDefaultDamageTypeMagical } },
1961  { 121, { } },
1962  { 122, { } },
1963  { 123, { } },
1964  { 124, { } },
1965  { 125, { } },
1966  { 126, { } },
1967  { 127, { } },
1970  { 130, { } },
1971  { 131, { } },
1972  { 132, { } },
1973  { 133, { &kDefaultFalse, &kDefaultTrue } },
1974  { 134, { } },
1975  { 135, { } },
1976  { 136, { } },
1977  { 137, { } },
1979  { 139, { &kDefaultFalse } },
1980  { 140, { } },
1981  { 141, { } },
1983  { 143, { } },
1984  { 144, { } },
1985  { 145, { } },
1986  { 146, { &kDefaultTrue } },
1987  { 147, { &kDefaultTrue } },
1988  { 148, { } },
1989  { 149, { &kDefaultSpellAllSpells } },
1990  { 150, { } },
1991  { 151, { } },
1992  { 152, { } },
1993  { 153, { } },
1994  { 154, { } },
1995  { 155, { &kDefaultObjectSelf } },
1996  { 156, { } },
1997  { 157, { } },
1998  { 158, { } },
1999  { 159, { } },
2000  { 160, { } },
2001  { 161, { } },
2002  { 162, { &kDefaultObjectSelf } },
2003  { 163, { &kDefaultObjectSelf } },
2004  { 164, { } },
2005  { 165, { } },
2006  { 166, { } },
2007  { 167, { &kDefaultFloat0_0 } },
2008  { 168, { } },
2009  { 169, { } },
2010  { 170, { } },
2012  { 172, { &kDefaultObjectSelf } },
2013  { 173, { } },
2014  { 174, { } },
2015  { 175, { } },
2016  { 176, { &kDefaultInt0 } },
2017  { 177, { } },
2018  { 178, { } },
2019  { 179, { } },
2020  { 180, { &kDefaultFalse } },
2021  { 181, { &kDefaultObjectSelf, &kDefaultTrue } },
2022  { 182, { &kDefaultObjectSelf, &kDefaultTrue } },
2023  { 183, { &kDefaultObjectSelf, &kDefaultTrue } },
2024  { 184, { &kDefaultObjectSelf, &kDefaultTrue } },
2025  { 185, { } },
2026  { 186, { } },
2027  { 187, { } },
2028  { 188, { } },
2029  { 189, { } },
2030  { 190, { } },
2031  { 191, { } },
2032  { 192, { &kDefaultObjectSelf, &kDefaultTrue } },
2033  { 193, { &kDefaultObjectSelf, &kDefaultTrue } },
2034  { 194, { } },
2035  { 195, { } },
2036  { 196, { &kDefaultTrue } },
2037  { 197, { } },
2038  { 198, { } },
2039  { 199, { } },
2040  { 200, { &kDefaultInt0 } },
2041  { 201, { &kDefaultTrue } },
2042  { 202, { } },
2043  { 203, { &kDefaultStringEmpty } },
2045  { 205, { } },
2046  { 206, { } },
2047  { 207, { &kDefaultFalse } },
2048  { 208, { } },
2049  { 209, { } },
2050  { 210, { } },
2051  { 211, { } },
2052  { 212, { } },
2053  { 213, { } },
2054  { 214, { } },
2055  { 215, { } },
2056  { 216, { &kDefaultFloat0_0 } },
2057  { 217, { } },
2058  { 218, { } },
2059  { 219, { } },
2060  { 220, { &kDefaultFloat0_0 } },
2061  { 221, { &kDefaultTalkVolumeTalk } },
2062  { 222, { } },
2063  { 223, { } },
2064  { 224, { } },
2065  { 225, { } },
2067  { 227, { &kDefaultObjectTypeAll, &kDefaultObjectSelf, &kDefaultInt1 } },
2068  { 228, { &kDefaultInt1 } },
2069  { 229, { &kDefaultObjectSelf, &kDefaultInt1 } },
2070  { 230, { } },
2071  { 231, { } },
2072  { 232, { } },
2073  { 233, { } },
2075  { 235, { &kDefaultObjectSelf } },
2076  { 236, { &kDefaultObjectSelf } },
2077  { 237, { &kDefaultObjectSelf } },
2078  { 238, { } },
2079  { 239, { &kDefaultGenderMale } },
2080  { 240, { &kDefaultTalkVolumeTalk } },
2081  { 241, { &kDefaultFloat0_0 } },
2082  { 242, { } },
2083  { 243, { &kDefaultFalse, &kDefaultStringEmpty } },
2084  { 244, { &kDefaultTrue } },
2085  { 245, { } },
2086  { 246, { } },
2087  { 247, { } },
2088  { 248, { } },
2089  { 249, { &kDefaultNameFirstGenericMale } },
2090  { 250, { } },
2091  { 251, { } },
2092  { 252, { } },
2093  { 253, { &kDefaultFalse } },
2094  { 254, { } },
2095  { 255, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
2096  { 256, { } },
2097  { 257, { } },
2098  { 258, { } },
2099  { 259, { } },
2100  { 260, { } },
2101  { 261, { } },
2102  { 262, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2103  { 263, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
2104  { 264, { &kDefaultObjectSelf } },
2105  { 265, { } },
2106  { 266, { } },
2107  { 267, { } },
2108  { 268, { } },
2109  { 269, { } },
2110  { 270, { } },
2111  { 271, { } },
2112  { 272, { } },
2113  { 273, { } },
2114  { 274, { &kDefaultObjectInvalid } },
2115  { 275, { } },
2116  { 276, { &kDefaultObjectSelf } },
2117  { 277, { &kDefaultObjectSelf } },
2118  { 278, { &kDefaultObjectSelf } },
2119  { 279, { &kDefaultObjectSelf } },
2120  { 280, { &kDefaultObjectSelf } },
2121  { 281, { &kDefaultObjectSelf } },
2122  { 282, { } },
2123  { 283, { } },
2124  { 284, { } },
2125  { 285, { &kDefaultObjectSelf } },
2126  { 286, { &kDefaultObjectSelf } },
2127  { 287, { } },
2128  { 288, { &kDefaultInt0, &kDefaultObjectInvalid } },
2129  { 289, { &kDefaultObjectSelf } },
2130  { 290, { &kDefaultObjectSelf } },
2131  { 291, { } },
2132  { 292, { } },
2133  { 293, { } },
2134  { 294, { } },
2135  { 295, { } },
2136  { 296, { &kDefaultObjectSelf } },
2137  { 297, { &kDefaultObjectSelf } },
2138  { 298, { } },
2139  { 299, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
2140  { 300, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
2141  { 301, { } },
2142  { 302, { } },
2143  { 303, { } },
2144  { 304, { &kDefaultObjectSelf } },
2145  { 305, { } },
2146  { 306, { &kDefaultObjectSelf } },
2147  { 307, { &kDefaultObjectSelf } },
2148  { 308, { &kDefaultObjectSelf } },
2149  { 309, { } },
2150  { 310, { } },
2151  { 311, { } },
2152  { 312, { } },
2153  { 313, { } },
2154  { 314, { } },
2155  { 315, { &kDefaultObjectSelf, &kDefaultFalse } },
2156  { 316, { &kDefaultObjectSelf } },
2157  { 317, { &kDefaultObjectSelf } },
2158  { 318, { &kDefaultObjectSelf } },
2159  { 319, { &kDefaultObjectSelf } },
2160  { 320, { &kDefaultObjectSelf } },
2161  { 321, { &kDefaultObjectSelf } },
2162  { 322, { } },
2163  { 323, { &kDefaultTrue, &kDefaultFalse } },
2164  { 324, { } },
2165  { 325, { } },
2166  { 326, { } },
2167  { 327, { &kDefaultObjectSelf } },
2168  { 328, { } },
2169  { 329, { } },
2170  { 330, { } },
2171  { 331, { &kDefaultObjectSelf } },
2172  { 332, { } },
2173  { 333, { } },
2174  { 334, { &kDefaultObjectSelf } },
2175  { 335, { &kDefaultObjectSelf } },
2176  { 336, { } },
2177  { 337, { } },
2178  { 338, { } },
2179  { 339, { &kDefaultObjectSelf } },
2180  { 340, { &kDefaultObjectSelf } },
2181  { 341, { &kDefaultObjectSelf } },
2182  { 342, { &kDefaultObjectSelf } },
2183  { 343, { &kDefaultObjectSelf } },
2184  { 344, { } },
2185  { 345, { } },
2186  { 346, { &kDefaultObjectSelf } },
2187  { 347, { } },
2188  { 348, { } },
2189  { 349, { } },
2190  { 350, { } },
2191  { 351, { } },
2192  { 352, { } },
2193  { 353, { } },
2194  { 354, { &kDefaultObjectSelf, &kDefaultInt1 } },
2196  { 356, { } },
2197  { 357, { } },
2198  { 358, { } },
2199  { 359, { } },
2200  { 360, { &kDefaultFalse, &kDefaultFloat40_0 } },
2201  { 361, { } },
2202  { 362, { } },
2203  { 363, { } },
2204  { 364, { &kDefaultObjectSelf, &kDefaultInt1 } },
2205  { 365, { &kDefaultObjectSelf } },
2206  { 366, { &kDefaultObjectSelf } },
2207  { 367, { &kDefaultTrue, &kDefaultFalse, &kDefaultFalse } },
2208  { 368, { &kDefaultTrue, &kDefaultFalse } },
2209  { 369, { &kDefaultFalse } },
2210  { 370, { } },
2211  { 371, { } },
2212  { 372, { } },
2213  { 373, { } },
2214  { 374, { } },
2215  { 375, { } },
2216  { 376, { } },
2217  { 377, { &kDefaultObjectSelf } },
2218  { 378, { &kDefaultInt0, &kDefaultInt0 } },
2219  { 379, { } },
2220  { 380, { &kDefaultTrue } },
2221  { 381, { &kDefaultTrue } },
2222  { 382, { &kDefaultFalse, &kDefaultFloat30_0 } },
2224  { 384, { } },
2225  { 385, { &kDefaultInt1 } },
2226  { 386, { } },
2227  { 387, { } },
2228  { 388, { } },
2229  { 389, { &kDefaultObjectSelf } },
2230  { 390, { &kDefaultObjectSelf, &kDefaultFalse, &kDefaultFloat180_0 } },
2231  { 391, { &kDefaultObjectSelf, &kDefaultFalse, &kDefaultFloat180_0 } },
2232  { 392, { &kDefaultObjectSelf, &kDefaultFalse, &kDefaultFloat180_0 } },
2233  { 393, { } },
2234  { 394, { } },
2235  { 395, { } },
2236  { 396, { } },
2237  { 397, { } },
2238  { 398, { } },
2239  { 399, { &kDefaultObjectInvalid, &kDefaultFalse } },
2240  { 400, { &kDefaultObjectInvalid } },
2241  { 401, { } },
2242  { 402, { &kDefaultFalse } },
2243  { 403, { &kDefaultTrue } },
2244  { 404, { } },
2245  { 405, { } },
2246  { 406, { } },
2247  { 407, { } },
2248  { 408, { } },
2249  { 409, { &kDefaultObjectSelf } },
2250  { 410, { } },
2251  { 411, { } },
2252  { 412, { } },
2253  { 413, { } },
2254  { 414, { } },
2255  { 415, { } },
2256  { 416, { } },
2257  { 417, { &kDefaultStringEmpty, &kDefaultObjectSelf } },
2258  { 418, { &kDefaultObjectSelf } },
2259  { 419, { } },
2260  { 420, { } },
2261  { 421, { &kDefaultObjectSelf } },
2262  { 422, { &kDefaultObjectInvalid, &kDefaultFalse } },
2263  { 423, { } },
2264  { 424, { &kDefaultObjectInvalid } },
2265  { 425, { } },
2266  { 426, { } },
2267  { 427, { } },
2268  { 428, { } },
2269  { 429, { } },
2270  { 430, { } },
2271  { 431, { } },
2272  { 432, { } },
2273  { 433, { } },
2274  { 434, { } },
2275  { 435, { } },
2276  { 436, { } },
2277  { 437, { } },
2278  { 438, { } },
2279  { 439, { } },
2280  { 440, { } },
2281  { 441, { } },
2282  { 442, { } },
2283  { 443, { } },
2284  { 444, { &kDefaultFalse } },
2285  { 445, { } },
2286  { 446, { } },
2287  { 447, { &kDefaultAttackBonusMisc } },
2288  { 448, { &kDefaultDamageTypeMagical } },
2289  { 449, { } },
2291  { 451, { } },
2292  { 452, { &kDefaultSavingThrowTypeAll } },
2293  { 453, { } },
2294  { 454, { } },
2295  { 455, { &kDefaultObjectSelf } },
2296  { 456, { } },
2297  { 457, { } },
2298  { 458, { &kDefaultMissChanceTypeNormal } },
2299  { 459, { } },
2300  { 460, { &kDefaultUseCreatureLevel } },
2301  { 461, { } },
2302  { 462, { &kDefaultFalse } },
2303  { 463, { &kDefaultFalse } },
2304  { 464, { } },
2305  { 465, { } },
2306  { 466, { } },
2307  { 467, { } },
2308  { 468, { } },
2309  { 469, { &kDefaultObjectSelf } },
2310  { 470, { &kDefaultObjectSelf } },
2311  { 471, { &kDefaultObjectSelf } },
2312  { 472, { &kDefaultInt0, &kDefaultSpellSchoolGeneral } },
2313  { 473, { &kDefaultUseCreatureLevel } },
2315  { 475, { } },
2316  { 476, { } },
2317  { 477, { &kDefaultMissChanceTypeNormal } },
2318  { 478, { &kDefaultObjectSelf } },
2319  { 479, { } },
2320  { 480, { &kDefaultInt1 } },
2321  { 481, { &kDefaultInt1 } },
2322  { 482, { &kDefaultInt1 } },
2323  { 483, { } },
2324  { 484, { } },
2325  { 485, { } },
2326  { 486, { &kDefaultObjectSelf } },
2327  { 487, { } },
2328  { 488, { &kDefaultObjectSelf, &kDefaultTrue } },
2329  { 489, { } },
2330  { 490, { } },
2331  { 491, { } },
2332  { 492, { } },
2333  { 493, { } },
2334  { 494, { } },
2335  { 495, { } },
2336  { 496, { } },
2337  { 497, { } },
2338  { 498, { } },
2339  { 499, { } },
2340  { 500, { } },
2341  { 501, { &kDefaultProjectilePathTypeDefault } },
2342  { 502, { &kDefaultProjectilePathTypeDefault } },
2343  { 503, { &kDefaultObjectSelf } },
2344  { 504, { } },
2345  { 505, { &kDefaultObjectSelf } },
2346  { 506, { } },
2347  { 507, { } },
2348  { 508, { } },
2349  { 509, { } },
2351  { 511, { } },
2352  { 512, { } },
2353  { 513, { } },
2354  { 514, { } },
2355  { 515, { } },
2356  { 516, { } },
2357  { 517, { } },
2358  { 518, { } },
2359  { 519, { } },
2360  { 520, { } },
2361  { 521, { } },
2362  { 522, { &kDefaultObjectSelf } },
2363  { 523, { &kDefaultObjectSelf } },
2364  { 524, { &kDefaultObjectSelf } },
2365  { 525, { &kDefaultTrue } },
2366  { 526, { &kDefaultTrue } },
2367  { 527, { } },
2368  { 528, { } },
2369  { 529, { } },
2370  { 530, { } },
2371  { 531, { } },
2372  { 532, { } },
2373  { 533, { } },
2374  { 534, { } },
2375  { 535, { } },
2376  { 536, { } },
2377  { 537, { } },
2378  { 538, { } },
2379  { 539, { } },
2380  { 540, { } },
2381  { 541, { } },
2382  { 542, { } },
2383  { 543, { &kDefaultObjectSelf } },
2384  { 544, { &kDefaultObjectSelf, &kDefaultTrue } },
2385  { 545, { &kDefaultObjectSelf } },
2386  { 546, { } },
2387  { 547, { } },
2388  { 548, { } },
2389  { 549, { } },
2390  { 550, { &kDefaultTrue } },
2391  { 551, { } },
2392  { 552, { } },
2393  { 553, { } },
2395  { 555, { } },
2396  { 556, { &kDefaultObjectSelf } },
2397  { 557, { } },
2398  { 558, { } },
2399  { 559, { } },
2400  { 560, { } },
2401  { 561, { } },
2402  { 562, { } },
2403  { 563, { } },
2404  { 564, { } },
2405  { 565, { } },
2406  { 566, { } },
2407  { 567, { } },
2408  { 568, { } },
2409  { 569, { } },
2410  { 570, { } },
2411  { 571, { } },
2412  { 572, { } },
2413  { 573, { } },
2414  { 574, { } },
2415  { 575, { } },
2416  { 576, { } },
2417  { 577, { } },
2418  { 578, { } },
2419  { 579, { } },
2420  { 580, { } },
2421  { 581, { } },
2422  { 582, { } },
2423  { 583, { } },
2424  { 584, { &kDefaultObjectInvalid, &kDefaultFalse } },
2425  { 585, { } },
2426  { 586, { } },
2427  { 587, { &kDefaultObjectSelf } },
2428  { 588, { } },
2429  { 589, { &kDefaultObjectInvalid } },
2430  { 590, { &kDefaultObjectInvalid } },
2431  { 591, { &kDefaultObjectInvalid } },
2432  { 592, { &kDefaultObjectInvalid } },
2433  { 593, { &kDefaultObjectInvalid } },
2434  { 594, { } },
2435  { 595, { &kDefaultObjectInvalid } },
2436  { 596, { &kDefaultObjectInvalid } },
2437  { 597, { &kDefaultObjectInvalid } },
2438  { 598, { &kDefaultObjectInvalid } },
2439  { 599, { &kDefaultObjectInvalid } },
2440  { 600, { &kDefaultObjectInvalid, &kDefaultStringEmpty } },
2441  { 601, { &kDefaultObjectInvalid } },
2442  { 602, { &kDefaultObjectInvalid } },
2443  { 603, { &kDefaultObjectInvalid, &kDefaultObjectInvalid } },
2444  { 604, { } },
2445  { 605, { } },
2446  { 606, { } },
2447  { 607, { } },
2448  { 608, { } },
2449  { 609, { &kDefaultFloat0_0 } },
2450  { 610, { } },
2451  { 611, { } },
2452  { 612, { } },
2453  { 613, { } },
2454  { 614, { } },
2455  { 615, { } },
2456  { 616, { } },
2457  { 617, { } },
2458  { 618, { } },
2459  { 619, { } },
2460  { 620, { } },
2461  { 621, { } },
2462  { 622, { } },
2463  { 623, { } },
2464  { 624, { } },
2465  { 625, { } },
2466  { 626, { } },
2467  { 627, { } },
2468  { 628, { } },
2469  { 629, { } },
2470  { 630, { } },
2471  { 631, { } },
2472  { 632, { } },
2473  { 633, { } },
2474  { 634, { } },
2475  { 635, { } },
2476  { 636, { } },
2477  { 637, { } },
2478  { 638, { } },
2479  { 639, { } },
2480  { 640, { } },
2481  { 641, { } },
2482  { 642, { } },
2483  { 643, { } },
2484  { 644, { } },
2485  { 645, { } },
2486  { 646, { } },
2487  { 647, { } },
2488  { 648, { } },
2489  { 649, { } },
2490  { 650, { } },
2491  { 651, { } },
2492  { 652, { } },
2493  { 653, { } },
2494  { 654, { } },
2495  { 655, { } },
2496  { 656, { } },
2497  { 657, { } },
2498  { 658, { &kDefaultInt0 } },
2499  { 659, { } },
2500  { 660, { } },
2501  { 661, { } },
2502  { 662, { } },
2503  { 663, { } },
2504  { 664, { } },
2505  { 665, { } },
2506  { 666, { } },
2507  { 667, { } },
2508  { 668, { } },
2509  { 669, { } },
2510  { 670, { } },
2511  { 671, { &kDefaultIPConstUnlimitedAmmoBasic } },
2512  { 672, { } },
2513  { 673, { } },
2514  { 674, { } },
2515  { 675, { } },
2516  { 676, { } },
2517  { 677, { } },
2518  { 678, { } },
2519  { 679, { } },
2520  { 680, { &kDefaultInt0 } },
2521  { 681, { } },
2522  { 682, { } },
2523  { 683, { } },
2524  { 684, { } },
2525  { 685, { } },
2526  { 686, { &kDefaultInt0 } },
2527  { 687, { } },
2528  { 688, { } },
2529  { 689, { } },
2531  { 691, { &kDefaultTalkVolumeTalk } },
2532  { 692, { &kDefaultTrue, &kDefaultFalse } },
2533  { 693, { } },
2534  { 694, { } },
2535  { 695, { &kDefaultFadeSpeedMedium } },
2536  { 696, { &kDefaultFadeSpeedMedium } },
2537  { 697, { } },
2538  { 698, { } },
2539  { 699, { } },
2540  { 700, { } },
2541  { 701, { } },
2542  { 702, { } },
2543  { 703, { } },
2545  { 705, { } },
2546  { 706, { &kDefaultObjectSelf } },
2547  { 707, { } },
2548  { 708, { &kDefaultObjectSelf } },
2549  { 709, { &kDefaultTrue, &kDefaultFalse } },
2550  { 710, { } },
2551  { 711, { } },
2552  { 712, { &kDefaultObjectSelf } },
2553  { 713, { } },
2554  { 714, { } },
2555  { 715, { } },
2556  { 716, { &kDefaultObjectInvalid } },
2557  { 717, { } },
2558  { 718, { } },
2559  { 719, { } },
2560  { 720, { &kDefaultTrue } },
2561  { 721, { } },
2562  { 722, { } },
2563  { 723, { } },
2564  { 724, { } },
2565  { 725, { } },
2566  { 726, { } },
2567  { 727, { } },
2568  { 728, { } },
2569  { 729, { } },
2570  { 730, { } },
2571  { 731, { &kDefaultFalse } },
2572  { 732, { } },
2573  { 733, { } },
2574  { 734, { } },
2575  { 735, { } },
2576  { 736, { } },
2577  { 737, { } },
2578  { 738, { } },
2579  { 739, { } },
2580  { 740, { } },
2581  { 741, { } },
2582  { 742, { } },
2583  { 743, { } },
2584  { 744, { } },
2585  { 745, { } },
2586  { 746, { } },
2587  { 747, { } },
2588  { 748, { } },
2589  { 749, { } },
2590  { 750, { &kDefaultFloat0_0 } },
2591  { 751, { &kDefaultFloat0_0 } },
2592  { 752, { } },
2593  { 753, { } },
2594  { 754, { } },
2595  { 755, { &kDefaultObjectSelf } },
2596  { 756, { &kDefaultObjectSelf } },
2597  { 757, { } },
2598  { 758, { } },
2599  { 759, { } },
2600  { 760, { } },
2601  { 761, { } },
2602  { 762, { } },
2603  { 763, { } },
2604  { 764, { } },
2605  { 765, { } },
2606  { 766, { } },
2607  { 767, { } },
2608  { 768, { &kDefaultObjectSelf } },
2609  { 769, { } },
2610  { 770, { } },
2611  { 771, { } },
2612  { 772, { } },
2613  { 773, { } },
2614  { 774, { } },
2615  { 775, { } },
2616  { 776, { &kDefaultFloat0_0 } },
2617  { 777, { &kDefaultObjectInvalid } },
2618  { 778, { } },
2619  { 779, { &kDefaultObjectSelf } },
2620  { 780, { &kDefaultObjectInvalid } },
2621  { 781, { &kDefaultObjectSelf } },
2622  { 782, { &kDefaultObjectInvalid } },
2623  { 783, { &kDefaultObjectInvalid } },
2624  { 784, { &kDefaultObjectInvalid } },
2625  { 785, { &kDefaultObjectInvalid } },
2626  { 786, { } },
2627  { 787, { } },
2628  { 788, { &kDefaultObjectSelf } },
2629  { 789, { &kDefaultObjectSelf } },
2630  { 790, { &kDefaultObjectSelf } },
2631  { 791, { &kDefaultObjectSelf } },
2632  { 792, { &kDefaultObjectSelf } },
2633  { 793, { &kDefaultObjectSelf } },
2634  { 794, { &kDefaultObjectSelf } },
2635  { 795, { &kDefaultObjectSelf } },
2636  { 796, { &kDefaultObjectSelf } },
2637  { 797, { &kDefaultObjectSelf } },
2638  { 798, { &kDefaultTrue } },
2639  { 799, { } },
2640  { 800, { &kDefaultTrue } },
2641  { 801, { } },
2642  { 802, { } },
2643  { 803, { &kDefaultTrue } },
2644  { 804, { &kDefaultTrue } },
2645  { 805, { &kDefaultTrue } },
2646  { 806, { } },
2647  { 807, { } },
2648  { 808, { } },
2651  { 811, { } },
2652  { 812, { } },
2653  { 813, { } },
2654  { 814, { } },
2655  { 815, { } },
2656  { 816, { &kDefaultTrue } },
2657  { 817, { } },
2658  { 818, { } },
2659  { 819, { } },
2660  { 820, { } },
2661  { 821, { } },
2662  { 822, { &kDefaultTrue } },
2663  { 823, { &kDefaultTrue } },
2664  { 824, { &kDefaultTrue } },
2665  { 825, { &kDefaultTrue } },
2666  { 826, { } },
2667  { 827, { } },
2668  { 828, { &kDefaultTrue } },
2669  { 829, { &kDefaultObjectInvalid } },
2670  { 830, { &kDefaultStringEmpty } },
2671  { 831, { &kDefaultObjectSelf } },
2672  { 832, { } },
2673  { 833, { &kDefaultObjectSelf } },
2674  { 834, { } },
2675  { 835, { } },
2676  { 836, { &kDefaultFalse, &kDefaultTrue } },
2677  { 837, { &kDefaultStringEmpty, &kDefaultTrue } },
2678  { 838, { } },
2679  { 839, { } },
2680  { 840, { } },
2681  { 841, { &kDefaultStringEmpty } },
2682  { 842, { &kDefaultTalkVolumeTalk } },
2683  { 843, { } },
2684  { 844, { } },
2685  { 845, { } },
2686  { 846, { } },
2687  { 847, { } }
2688 };
2689 
2690 } // End of namespace NWN
2691 
2692 } // End of namespace Engines
2693 
2694 #endif // ENGINES_NWN_SCRIPT_TABLES_H
static const FunctionSignature kFunctionSignatures[]
The table defining the signature (return type and type of parameters) of each engine function...
Definition: functions.h:71
void getWaypointByTag(Aurora::NWScript::FunctionContext &ctx)
void getLocation(Aurora::NWScript::FunctionContext &ctx)
void printFloat(Aurora::NWScript::FunctionContext &ctx)
void actionMoveToObject(Aurora::NWScript::FunctionContext &ctx)
void getStringRight(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundStop(Aurora::NWScript::FunctionContext &ctx)
void getName(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat2_0(2.0f)
void d4(Aurora::NWScript::FunctionContext &ctx)
void d6(Aurora::NWScript::FunctionContext &ctx)
void printString(Aurora::NWScript::FunctionContext &ctx)
void getLocalInt(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt18((int32) 18)
static const Aurora::NWScript::Variable kDefaultNameFirstGenericMale((int32) - 1)
void floatToInt(Aurora::NWScript::FunctionContext &ctx)
A class holding an UTF-8 string.
Definition: ustring.h:48
static const Aurora::NWScript::Variable kDefaultObjectTypeInvalid((int32) 32767)
void setLocalObject(Aurora::NWScript::FunctionContext &ctx)
void removeHenchman(Aurora::NWScript::FunctionContext &ctx)
void d10(Aurora::NWScript::FunctionContext &ctx)
void jumpToLocation(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundGetNightTrack(Aurora::NWScript::FunctionContext &ctx)
void playVoiceChat(Aurora::NWScript::FunctionContext &ctx)
void actionJumpToObject(Aurora::NWScript::FunctionContext &ctx)
void actionOpenDoor(Aurora::NWScript::FunctionContext &ctx)
void getNearestObject(Aurora::NWScript::FunctionContext &ctx)
void pow(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat40_0(40.0f)
void musicBackgroundChangeNight(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultMetaMagicAny((int32) 255)
static const Aurora::NWScript::Variable kDefaultClassTypeInvalid((int32) 255)
void vectorMagnitude(Aurora::NWScript::FunctionContext &ctx)
void getLocalObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f)
void location(Aurora::NWScript::FunctionContext &ctx)
void getAssociate(Aurora::NWScript::FunctionContext &ctx)
void vector(Aurora::NWScript::FunctionContext &ctx)
void printInteger(Aurora::NWScript::FunctionContext &ctx)
void getLocalString(Aurora::NWScript::FunctionContext &ctx)
Basic Neverwinter Nights type definitions.
void setCommandable(Aurora::NWScript::FunctionContext &ctx)
void cos(Aurora::NWScript::FunctionContext &ctx)
void intToFloat(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 setLocalFloat(Aurora::NWScript::FunctionContext &ctx)
void getStringUpperCase(Aurora::NWScript::FunctionContext &ctx)
void getStringLeft(Aurora::NWScript::FunctionContext &ctx)
void getClickingObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat30_0(30.0f)
void getFirstPC(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultPackageInvalid((int32) 255)
Fake value to describe the calling object in a script.
Definition: types.h:54
void acos(Aurora::NWScript::FunctionContext &ctx)
void speakStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
void playAnimation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeAll((int32) 0)
void actionMoveToLocation(Aurora::NWScript::FunctionContext &ctx)
void getEnteringObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat180_0(180.0f)
static const Aurora::NWScript::Variable kDefaultTrue((int32) 1)
void actionJumpToLocation(Aurora::NWScript::FunctionContext &ctx)
void getCommandable(Aurora::NWScript::FunctionContext &ctx)
void playSound(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectInvalid & kDefaultValueObjectInvalid
void getXP(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloatMinus1_0(- 1.0f)
void getStringLength(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundPlay(Aurora::NWScript::FunctionContext &ctx)
void d8(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat0_0(0.0f)
void stringToInt(Aurora::NWScript::FunctionContext &ctx)
void getGender(Aurora::NWScript::FunctionContext &ctx)
void getIsObjectValid(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultProjectilePathTypeDefault((int32) 0)
static const Aurora::NWScript::Variable kDefaultTalkVolumeTalk((int32) 0)
void getAlignmentGoodEvil(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt0((int32) 0)
void getMaster(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeNone((int32) 0)
void actionPlayAnimation(Aurora::NWScript::FunctionContext &ctx)
void getStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
void delayCommand(Aurora::NWScript::FunctionContext &ctx)
void getNextPC(Aurora::NWScript::FunctionContext &ctx)
void assignCommand(Aurora::NWScript::FunctionContext &ctx)
void getExitingObject(Aurora::NWScript::FunctionContext &ctx)
void d3(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectSelf & kDefaultValueObjectSelf
void stringToFloat(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultAlignmentAll((int32) 0)
void printVector(Aurora::NWScript::FunctionContext &ctx)
void abs(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultDamagePowerNormal((int32) 0)
void d100(Aurora::NWScript::FunctionContext &ctx)
void asin(Aurora::NWScript::FunctionContext &ctx)
void isInConversation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSpellSchoolGeneral((int32) 0)
static const Aurora::NWScript::Variable kDefaultACDodgeBonus((int32) 0)
void getLastClosedBy(Aurora::NWScript::FunctionContext &ctx)
void getObjectType(Aurora::NWScript::FunctionContext &ctx)
void endGame(Aurora::NWScript::FunctionContext &ctx)
void getLastOpenedBy(Aurora::NWScript::FunctionContext &ctx)
static const FunctionPointer kFunctionPointers[]
The table defining the name and function pointer of each engine function.
Definition: functions.h:70
void intToHexString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt1((int32) 1)
static const Aurora::NWScript::Variable kDefaultIPConstUnlimitedAmmoBasic((int32) 1)
void writeTimestampedLogEntry(Aurora::NWScript::FunctionContext &ctx)
void getLocked(Aurora::NWScript::FunctionContext &ctx)
void actionStartConversation(Aurora::NWScript::FunctionContext &ctx)
void getArea(Aurora::NWScript::FunctionContext &ctx)
void getLevelByClass(Aurora::NWScript::FunctionContext &ctx)
void getPosition(Aurora::NWScript::FunctionContext &ctx)
void getHitDice(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeAll((int32) 32767)
void random(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultCameraTransitionTypeSnap((int32) 0)
void d2(Aurora::NWScript::FunctionContext &ctx)
void get2DAString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStandardFactionHostile((int32) 0)
An object in a Neverwinter Nights area.
void getLastUsedBy(Aurora::NWScript::FunctionContext &ctx)
void getAbilityScore(Aurora::NWScript::FunctionContext &ctx)
void getNearestCreature(Aurora::NWScript::FunctionContext &ctx)
void atan(Aurora::NWScript::FunctionContext &ctx)
"effect", "event", "location", "talent"...
Definition: types.h:43
static const Aurora::NWScript::Variable kDefaultStringEmpty(Common::UString(""))
void getGoodEvilValue(Aurora::NWScript::FunctionContext &ctx)
void log(Aurora::NWScript::FunctionContext &ctx)
void getDistanceToObject(Aurora::NWScript::FunctionContext &ctx)
void getAlignmentLawChaos(Aurora::NWScript::FunctionContext &ctx)
void vectorNormalize(Aurora::NWScript::FunctionContext &ctx)
void getLawChaosValue(Aurora::NWScript::FunctionContext &ctx)
void floatToString(Aurora::NWScript::FunctionContext &ctx)
void setLocalString(Aurora::NWScript::FunctionContext &ctx)
void getModule(Aurora::NWScript::FunctionContext &ctx)
void setLocked(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeDay(Aurora::NWScript::FunctionContext &ctx)
void getLastSpeaker(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultVFXNone((int32) - 1)
void d20(Aurora::NWScript::FunctionContext &ctx)
void getClassByPosition(Aurora::NWScript::FunctionContext &ctx)
void tan(Aurora::NWScript::FunctionContext &ctx)
void addHenchman(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeCreature((int32) 1)
static const Aurora::NWScript::Variable kDefaultInt9((int32) 9)
void getPCSpeaker(Aurora::NWScript::FunctionContext &ctx)
void playSoundByStrRef(Aurora::NWScript::FunctionContext &ctx)
void getRacialType(Aurora::NWScript::FunctionContext &ctx)
Any other type.
Definition: types.h:48
static const Aurora::NWScript::Variable kDefaultPersistentZoneActive((int32) 0)
static const Aurora::NWScript::Variable kDefaultUseCreatureLevel((int32) 0)
void setLocalInt(Aurora::NWScript::FunctionContext &ctx)
void setCustomToken(Aurora::NWScript::FunctionContext &ctx)
void intToString(Aurora::NWScript::FunctionContext &ctx)
void getIsOpen(Aurora::NWScript::FunctionContext &ctx)
void speakString(Aurora::NWScript::FunctionContext &ctx)
void getStringLowerCase(Aurora::NWScript::FunctionContext &ctx)
void getIsDead(Aurora::NWScript::FunctionContext &ctx)
void getIsPC(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultIntMinus1((int32) - 1)
void jumpToObject(Aurora::NWScript::FunctionContext &ctx)
void speakOneLinerConversation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSpellAllSpells((int32) - 1)
void beginConversation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultDamageTypeMagical((int32) 8)
void getIsDM(Aurora::NWScript::FunctionContext &ctx)
void insertString(Aurora::NWScript::FunctionContext &ctx)
void getLevelByPosition(Aurora::NWScript::FunctionContext &ctx)
void sendMessageToPC(Aurora::NWScript::FunctionContext &ctx)
void getPositionFromLocation(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultGenderMale((int32) 0)
void objectToString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultMissChanceTypeNormal((int32) 0)
void actionSpeakString(Aurora::NWScript::FunctionContext &ctx)
void findSubString(Aurora::NWScript::FunctionContext &ctx)
void getSubString(Aurora::NWScript::FunctionContext &ctx)
void sqrt(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFalse((int32) 0)
void getObjectByTag(Aurora::NWScript::FunctionContext &ctx)
void getListenPatternNumber(Aurora::NWScript::FunctionContext &ctx)
void getHenchman(Aurora::NWScript::FunctionContext &ctx)
void startNewModule(Aurora::NWScript::FunctionContext &ctx)
void getSkillRank(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundGetDayTrack(Aurora::NWScript::FunctionContext &ctx)
void d12(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFadeSpeedMedium(0.01f)
void actionDoCommand(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt100((int32) 100)
void actionCloseDoor(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultAttackBonusMisc((int32) 0)
void getTag(Aurora::NWScript::FunctionContext &ctx)
void executeScript(Aurora::NWScript::FunctionContext &ctx)
void printObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat1_0(1.0f)
void getLocalFloat(Aurora::NWScript::FunctionContext &ctx)
void sin(Aurora::NWScript::FunctionContext &ctx)
void getNearestObjectByTag(Aurora::NWScript::FunctionContext &ctx)
int32_t int32
Definition: types.h:203
static const Aurora::NWScript::Variable kDefaultACVsDamageTypeAll((int32) 4103)
void fabs(Aurora::NWScript::FunctionContext &ctx)