[dismiss]
This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.
Difference between revisions of "Calling commands from C++/ParamInfo"
Jump to navigation
Jump to search
Calling commands from C++/ParamInfo (edit)
Revision as of 15:08, 17 April 2009
, 15:08, 17 April 2009Fixed error
imported>Masterfreek64 |
imported>Masterfreek64 (Fixed error) |
||
Line 23: | Line 23: | ||
}; | }; | ||
static ParamInfo kParams_CmdShowQuestVars[1] = { | static ParamInfo kParams_CmdShowQuestVars[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdToggleAI[1] = { | static ParamInfo kParams_CmdToggleAI[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdPickRefByID[1] = { | static ParamInfo kParams_CmdPickRefByID[1] = { | ||
Line 88: | Line 88: | ||
}; | }; | ||
static ParamInfo kParams_CmdShowFullQuestLog[1] = { | static ParamInfo kParams_CmdShowFullQuestLog[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdDumpTexturePalette[1] = { | static ParamInfo kParams_CmdDumpTexturePalette[1] = { | ||
Line 94: | Line 94: | ||
}; | }; | ||
static ParamInfo kParams_CmdCenterOnWorld[3] = { | static ParamInfo kParams_CmdCenterOnWorld[3] = { | ||
{ "WorldSpace", | { "WorldSpace", kParamType_WorldSpace, 0 }, | ||
{ "Cell X", kParamType_Integer, 0 }, | { "Cell X", kParamType_Integer, 0 }, | ||
{ "Cell Y", kParamType_Integer, 0 } | { "Cell Y", kParamType_Integer, 0 } | ||
Line 139: | Line 139: | ||
}; | }; | ||
static ParamInfo kParams_CmdToggleDetectionStats[1] = { | static ParamInfo kParams_CmdToggleDetectionStats[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetTargetRefraction[1] = { | static ParamInfo kParams_CmdSetTargetRefraction[1] = { | ||
Line 216: | Line 216: | ||
{ "Float (Optional)", kParamType_Float, 1 } | { "Float (Optional)", kParamType_Float, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMessageBox[1] = { | static ParamInfo kParams_CmdMessageBox[1] = { | ||
{ "String", kParamType_String, 0 } | { "String", kParamType_String, 0 } | ||
Line 227: | Line 228: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEssential[2] = { | static ParamInfo kParams_CmdSetEssential[2] = { | ||
{ "Actor Base", | { "Actor Base", kParamType_ActorBase, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRotate[2] = { | static ParamInfo kParams_CmdRotate[2] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 }, | ||
{ "Speed", kParamType_Integer, 0 } | { "Speed", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPos[1] = { | static ParamInfo kParams_CmdGetPos[1] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPos[2] = { | static ParamInfo kParams_CmdSetPos[2] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 }, | ||
{ "Float", kParamType_Float, 0 } | { "Float", kParamType_Float, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetAngle[1] = { | static ParamInfo kParams_CmdGetAngle[1] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetAngle[2] = { | static ParamInfo kParams_CmdSetAngle[2] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 }, | ||
{ "Float", kParamType_Float, 0 } | { "Float", kParamType_Float, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetStartingPos[1] = { | static ParamInfo kParams_CmdGetStartingPos[1] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetStartingAngle[1] = { | static ParamInfo kParams_CmdGetStartingAngle[1] = { | ||
{ "Axis", | { "Axis", kParamType_Axis, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdActivate[2] = { | static ParamInfo kParams_CmdActivate[2] = { | ||
Line 270: | Line 271: | ||
}; | }; | ||
static ParamInfo kParams_CmdPlayGroup[2] = { | static ParamInfo kParams_CmdPlayGroup[2] = { | ||
{ "Animation Group", | { "Animation Group", kParamType_AnimationGroup, 0 }, | ||
{ "Flags", kParamType_Integer, 0 } | { "Flags", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdLoopGroup[3] = { | static ParamInfo kParams_CmdLoopGroup[3] = { | ||
{ "Animation Group", | { "Animation Group", kParamType_AnimationGroup, 0 }, | ||
{ "Integer", kParamType_Integer, 0 }, | { "Integer", kParamType_Integer, 0 }, | ||
{ "Flags", kParamType_Integer, 0 } | { "Flags", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStartCombat[1] = { | static ParamInfo kParams_CmdStartCombat[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetLineOfSight[1] = { | static ParamInfo kParams_CmdGetLineOfSight[1] = { | ||
Line 285: | Line 286: | ||
}; | }; | ||
static ParamInfo kParams_CmdAddSpell[1] = { | static ParamInfo kParams_CmdAddSpell[1] = { | ||
{ "Spell Item", | { "Spell Item", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveSpell[1] = { | static ParamInfo kParams_CmdRemoveSpell[1] = { | ||
{ "Spell Item", | { "Spell Item", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCast[2] = { | static ParamInfo kParams_CmdCast[2] = { | ||
{ "Magic Item", | { "Magic Item", kParamType_MagicItem, 0 }, | ||
{ "ObjectReferenceID", kParamType_ObjectRef, 0 } | { "ObjectReferenceID", kParamType_ObjectRef, 0 } | ||
}; | }; | ||
Line 301: | Line 302: | ||
}; | }; | ||
static ParamInfo kParams_CmdPlaceAtMe[4] = { | static ParamInfo kParams_CmdPlaceAtMe[4] = { | ||
{ "ObjectID", | { "ObjectID", kParamType_TESObject, 0 }, | ||
{ "Count", kParamType_Integer, 1 }, | { "Count", kParamType_Integer, 1 }, | ||
{ "Distance", kParamType_Integer, 1 }, | { "Distance", kParamType_Integer, 1 }, | ||
Line 307: | Line 308: | ||
}; | }; | ||
static ParamInfo kParams_CmdPlaySound[1] = { | static ParamInfo kParams_CmdPlaySound[1] = { | ||
{ "Sound", | { "Sound", kParamType_Sound, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSameFaction[1] = { | static ParamInfo kParams_CmdSameFaction[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSameRace[1] = { | static ParamInfo kParams_CmdSameRace[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSameSex[1] = { | static ParamInfo kParams_CmdSameSex[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetDetected[1] = { | static ParamInfo kParams_CmdGetDetected[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetItemCount[1] = { | static ParamInfo kParams_CmdGetItemCount[1] = { | ||
Line 325: | Line 326: | ||
}; | }; | ||
static ParamInfo kParams_CmdSay[5] = { | static ParamInfo kParams_CmdSay[5] = { | ||
{ "Topic", | { "Topic", kParamType_Topic, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 }, | { "Integer (Optional)", kParamType_Integer, 1 }, | ||
{ "NPC (Optional)", | { "NPC (Optional)", kParamType_NPC, 1 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 }, | { "Integer (Optional)", kParamType_Integer, 1 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSayTo[3] = { | static ParamInfo kParams_CmdSayTo[3] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 }, | ||
{ "Topic", | { "Topic", kParamType_Topic, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetScriptVariable[2] = { | static ParamInfo kParams_CmdGetScriptVariable[2] = { | ||
{ "ObjectReferenceID", kParamType_ObjectRef, 0 }, | { "ObjectReferenceID", kParamType_ObjectRef, 0 }, | ||
{ "Variable Name", | { "Variable Name", kParamType_VariableName, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStartQuest[1] = { | static ParamInfo kParams_CmdStartQuest[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStopQuest[1] = { | static ParamInfo kParams_CmdStopQuest[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetQuestRunning[1] = { | static ParamInfo kParams_CmdGetQuestRunning[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetStage[2] = { | static ParamInfo kParams_CmdSetStage[2] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 }, | ||
{ "Stage", | { "Stage", kParamType_QuestStage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetStage[1] = { | static ParamInfo kParams_CmdGetStage[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetStageDone[2] = { | static ParamInfo kParams_CmdGetStageDone[2] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 }, | ||
{ "Stage", | { "Stage", kParamType_QuestStage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFactionRankDifference[2] = { | static ParamInfo kParams_CmdGetFactionRankDifference[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetShouldAttack[1] = { | static ParamInfo kParams_CmdGetShouldAttack[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetInCell[1] = { | static ParamInfo kParams_CmdGetInCell[1] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsClass[1] = { | static ParamInfo kParams_CmdGetIsClass[1] = { | ||
{ "Class", | { "Class", kParamType_Class, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsRace[1] = { | static ParamInfo kParams_CmdGetIsRace[1] = { | ||
{ "Race", | { "Race", kParamType_Race, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsSex[1] = { | static ParamInfo kParams_CmdGetIsSex[1] = { | ||
{ "Sex", | { "Sex", kParamType_Sex, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetInFaction[1] = { | static ParamInfo kParams_CmdGetInFaction[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsID[1] = { | static ParamInfo kParams_CmdGetIsID[1] = { | ||
{ "ObjectID", | { "ObjectID", kParamType_TESObject, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFactionRank[1] = { | static ParamInfo kParams_CmdGetFactionRank[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetGlobalValue[1] = { | static ParamInfo kParams_CmdGetGlobalValue[1] = { | ||
{ "Global", | { "Global", kParamType_Global, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetDisposition[1] = { | static ParamInfo kParams_CmdGetDisposition[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStreamMusic[1] = { | static ParamInfo kParams_CmdStreamMusic[1] = { | ||
Line 398: | Line 399: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetQuestVariable[2] = { | static ParamInfo kParams_CmdGetQuestVariable[2] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 }, | ||
{ "Variable Name", | { "Variable Name", kParamType_VariableName, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveItem[2] = { | static ParamInfo kParams_CmdRemoveItem[2] = { | ||
Line 406: | Line 407: | ||
}; | }; | ||
static ParamInfo kParams_CmdModDisposition[2] = { | static ParamInfo kParams_CmdModDisposition[2] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetDeadCount[1] = { | static ParamInfo kParams_CmdGetDeadCount[1] = { | ||
{ "Actor Base", | { "Actor Base", kParamType_ActorBase, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdShowMap[2] = { | static ParamInfo kParams_CmdShowMap[2] = { | ||
{ "Map Marker", | { "Map Marker", kParamType_MapMarker, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStartConversation[2] = { | static ParamInfo kParams_CmdStartConversation[2] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 }, | ||
{ "Topic", | { "Topic", kParamType_Topic, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdDrop[2] = { | static ParamInfo kParams_CmdDrop[2] = { | ||
Line 425: | Line 426: | ||
}; | }; | ||
static ParamInfo kParams_CmdAddTopic[1] = { | static ParamInfo kParams_CmdAddTopic[1] = { | ||
{ "Topic", | { "Topic", kParamType_Topic, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMessage[1] = { | static ParamInfo kParams_CmdMessage[1] = { | ||
Line 443: | Line 444: | ||
}; | }; | ||
static ParamInfo kParams_CmdCompleteQuest[1] = { | static ParamInfo kParams_CmdCompleteQuest[1] = { | ||
{ "Quest", | { "Quest", kParamType_Quest, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdLock[2] = { | static ParamInfo kParams_CmdLock[2] = { | ||
Line 459: | Line 460: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCrimeKnown[3] = { | static ParamInfo kParams_CmdGetCrimeKnown[3] = { | ||
{ "Crime Type", | { "Crime Type", kParamType_CrimeType, 0 }, | ||
{ "Criminal", | { "Criminal", kParamType_Actor, 0 }, | ||
{ "Victim", | { "Victim", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdPositionWorld[5] = { | static ParamInfo kParams_CmdPositionWorld[5] = { | ||
Line 468: | Line 469: | ||
{ "Z", kParamType_Float, 0 }, | { "Z", kParamType_Float, 0 }, | ||
{ "Rotation", kParamType_Float, 0 }, | { "Rotation", kParamType_Float, 0 }, | ||
{ "Worldspace", | { "Worldspace", kParamType_WorldSpace, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdPositionCell[5] = { | static ParamInfo kParams_CmdPositionCell[5] = { | ||
Line 475: | Line 476: | ||
{ "Z", kParamType_Float, 0 }, | { "Z", kParamType_Float, 0 }, | ||
{ "Rotation", kParamType_Float, 0 }, | { "Rotation", kParamType_Float, 0 }, | ||
{ "Interior Cell", | { "Interior Cell", kParamType_Cell, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCrime[2] = { | static ParamInfo kParams_CmdGetCrime[2] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 }, | ||
{ "Crime Type (optional)", | { "Crime Type (optional)", kParamType_CrimeType, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCIsClass[1] = { | static ParamInfo kParams_CmdGetPCIsClass[1] = { | ||
{ "Class", | { "Class", kParamType_Class, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCIsRace[1] = { | static ParamInfo kParams_CmdGetPCIsRace[1] = { | ||
{ "Race", | { "Race", kParamType_Race, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCIsSex[1] = { | static ParamInfo kParams_CmdGetPCIsSex[1] = { | ||
{ "Sex", | { "Sex", kParamType_Sex, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCInFaction[1] = { | static ParamInfo kParams_CmdGetPCInFaction[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsReference[1] = { | static ParamInfo kParams_CmdGetIsReference[1] = { | ||
Line 497: | Line 498: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFactionRank[2] = { | static ParamInfo kParams_CmdSetFactionRank[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModFactionRank[2] = { | static ParamInfo kParams_CmdModFactionRank[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdKillActor[1] = { | static ParamInfo kParams_CmdKillActor[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdResurrectActor[1] = { | static ParamInfo kParams_CmdResurrectActor[1] = { | ||
Line 511: | Line 512: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsCurrentWeather[1] = { | static ParamInfo kParams_CmdGetIsCurrentWeather[1] = { | ||
{ "Weather ID", | { "Weather ID", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdAddScriptPackage[1] = { | static ParamInfo kParams_CmdAddScriptPackage[1] = { | ||
{ "Package", | { "Package", kParamType_AIPackage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMoveToMarker[4] = { | static ParamInfo kParams_CmdMoveToMarker[4] = { | ||
Line 523: | Line 524: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsCurrentPackage[1] = { | static ParamInfo kParams_CmdGetIsCurrentPackage[1] = { | ||
{ "Package", | { "Package", kParamType_AIPackage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsCurrentFurnitureRef[1] = { | static ParamInfo kParams_CmdIsCurrentFurnitureRef[1] = { | ||
Line 529: | Line 530: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsCurrentFurnitureObj[1] = { | static ParamInfo kParams_CmdIsCurrentFurnitureObj[1] = { | ||
{ "Furniture", | { "Furniture", kParamType_Furniture, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSize[1] = { | static ParamInfo kParams_CmdSetSize[1] = { | ||
Line 535: | Line 536: | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveMe[1] = { | static ParamInfo kParams_CmdRemoveMe[1] = { | ||
{ "Container (optional)", | { "Container (optional)", kParamType_Container, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFactionReaction[2] = { | static ParamInfo kParams_CmdGetFactionReaction[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFactionReaction[3] = { | static ParamInfo kParams_CmdSetFactionReaction[3] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModFactionReaction[3] = { | static ParamInfo kParams_CmdModFactionReaction[3] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTalkedToPCParam[1] = { | static ParamInfo kParams_CmdGetTalkedToPCParam[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveAllItems[2] = { | static ParamInfo kParams_CmdRemoveAllItems[2] = { | ||
{ "Container (optional)", | { "Container (optional)", kParamType_Container, 1 }, | ||
{ "Ownership Added (optional)", kParamType_Integer, 1 } | { "Ownership Added (optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 562: | Line 563: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCombatStyle[1] = { | static ParamInfo kParams_CmdSetCombatStyle[1] = { | ||
{ "Combat Style (optional)", | { "Combat Style (optional)", kParamType_CombatStyle, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdPlaySound3D[1] = { | static ParamInfo kParams_CmdPlaySound3D[1] = { | ||
{ "Sound", | { "Sound", kParamType_Sound, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSelectPlayerSpell[1] = { | static ParamInfo kParams_CmdSelectPlayerSpell[1] = { | ||
{ "Spell Item", | { "Spell Item", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetDetectionLevel[1] = { | static ParamInfo kParams_CmdGetDetectionLevel[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetEquipped[1] = { | static ParamInfo kParams_CmdGetEquipped[1] = { | ||
Line 577: | Line 578: | ||
}; | }; | ||
static ParamInfo kParams_CmdWait[1] = { | static ParamInfo kParams_CmdWait[1] = { | ||
{ "Package", | { "Package", kParamType_AIPackage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStopWaiting[1] = { | static ParamInfo kParams_CmdStopWaiting[1] = { | ||
{ "Package", | { "Package", kParamType_AIPackage, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCellPublicFlag[2] = { | static ParamInfo kParams_CmdSetCellPublicFlag[2] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 }, | ||
{ "Flag", kParamType_Integer, 0 } | { "Flag", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 596: | Line 597: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCExpelled[1] = { | static ParamInfo kParams_CmdGetPCExpelled[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCExpelled[2] = { | static ParamInfo kParams_CmdSetPCExpelled[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCFactionMurder[1] = { | static ParamInfo kParams_CmdGetPCFactionMurder[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCFactionMurder[2] = { | static ParamInfo kParams_CmdSetPCFactionMurder[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCFactionSteal[1] = { | static ParamInfo kParams_CmdGetPCFactionSteal[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCFactionSteal[2] = { | static ParamInfo kParams_CmdSetPCFactionSteal[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCFactionAttack[1] = { | static ParamInfo kParams_CmdGetPCFactionAttack[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCFactionAttack[2] = { | static ParamInfo kParams_CmdSetPCFactionAttack[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPCFactionSubmitAuthority[1] = { | static ParamInfo kParams_CmdGetPCFactionSubmitAuthority[1] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCFactionSubmitAuthority[2] = { | static ParamInfo kParams_CmdSetPCFactionSubmitAuthority[2] = { | ||
{ "Faction", | { "Faction", kParamType_Faction, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 644: | Line 645: | ||
}; | }; | ||
static ParamInfo kParams_CmdHasMagicEffect[1] = { | static ParamInfo kParams_CmdHasMagicEffect[1] = { | ||
{ "Magic Effect", | { "Magic Effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetDoorDefaultOpen[1] = { | static ParamInfo kParams_CmdSetDoorDefaultOpen[1] = { | ||
Line 656: | Line 657: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsSpellTarget[1] = { | static ParamInfo kParams_CmdIsSpellTarget[1] = { | ||
{ "Magic Item", | { "Magic Item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsPlayerBirthsign[1] = { | static ParamInfo kParams_CmdGetIsPlayerBirthsign[1] = { | ||
{ "Birthsign", | { "Birthsign", kParamType_Birthsign, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdVampireFeed[1] = { | static ParamInfo kParams_CmdVampireFeed[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsClassDefault[1] = { | static ParamInfo kParams_CmdGetIsClassDefault[1] = { | ||
{ "Class", | { "Class", kParamType_Class, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetInCellParam[2] = { | static ParamInfo kParams_CmdGetInCellParam[2] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 }, | ||
{ "ObjectReferenceID", kParamType_ObjectRef, 0 } | { "ObjectReferenceID", kParamType_ObjectRef, 0 } | ||
}; | }; | ||
Line 686: | Line 687: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClass[1] = { | static ParamInfo kParams_CmdSetClass[1] = { | ||
{ "Class", | { "Class", kParamType_Class, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetUnconscious[1] = { | static ParamInfo kParams_CmdSetUnconscious[1] = { | ||
Line 695: | Line 696: | ||
}; | }; | ||
static ParamInfo kParams_CmdForceFlee[2] = { | static ParamInfo kParams_CmdForceFlee[2] = { | ||
{ "Cell (optional)", | { "Cell (optional)", kParamType_Cell, 1 }, | ||
{ "ObjectReferenceID (optional)", kParamType_ObjectRef, 1 } | { "ObjectReferenceID (optional)", kParamType_ObjectRef, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsUsedItem[1] = { | static ParamInfo kParams_CmdGetIsUsedItem[1] = { | ||
{ "ObjectID", | { "ObjectID", kParamType_TESObject, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetIsUsedItemType[1] = { | static ParamInfo kParams_CmdGetIsUsedItemType[1] = { | ||
{ "Form Type", | { "Form Type", kParamType_FormType, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModPCFame[1] = { | static ParamInfo kParams_CmdModPCFame[1] = { | ||
Line 720: | Line 721: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeather[2] = { | static ParamInfo kParams_CmdSetWeather[2] = { | ||
{ "Weather ID", | { "Weather ID", kParamType_WeatherID, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdForceTakeCover[2] = { | static ParamInfo kParams_CmdForceTakeCover[2] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 }, | ||
{ "Value", kParamType_Integer, 0 } | { "Value", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 734: | Line 735: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetQuestObject[2] = { | static ParamInfo kParams_CmdSetQuestObject[2] = { | ||
{ "Object", | { "Object", kParamType_TESObject, 0 }, | ||
{ "Integer", kParamType_Integer, 0 } | { "Integer", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 760: | Line 761: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsOwner[1] = { | static ParamInfo kParams_CmdIsOwner[1] = { | ||
{ "Owner(optional)", | { "Owner(optional)", kParamType_Owner, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOwnership[1] = { | static ParamInfo kParams_CmdSetOwnership[1] = { | ||
{ "Owner(optional)", | { "Owner(optional)", kParamType_Owner, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsCellOwner[2] = { | static ParamInfo kParams_CmdIsCellOwner[2] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 }, | ||
{ "Owner(optional)", | { "Owner(optional)", kParamType_Owner, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCellOwnership[2] = { | static ParamInfo kParams_CmdSetCellOwnership[2] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 }, | ||
{ "Owner(optional)", | { "Owner(optional)", kParamType_Owner, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCellFullName[2] = { | static ParamInfo kParams_CmdSetCellFullName[2] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 }, | ||
{ "String", kParamType_String, 0 } | { "String", kParamType_String, 0 } | ||
}; | }; | ||
Line 781: | Line 782: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFriendHit[1] = { | static ParamInfo kParams_CmdGetFriendHit[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPackDuration[1] = { | static ParamInfo kParams_CmdSetPackDuration[1] = { | ||
Line 787: | Line 788: | ||
}; | }; | ||
static ParamInfo kParams_CmdPlayMagicShaderVisuals[2] = { | static ParamInfo kParams_CmdPlayMagicShaderVisuals[2] = { | ||
{ "Effect Shader ID", | { "Effect Shader ID", kParamType_EffectShader, 0 }, | ||
{ "Time(optional)", kParamType_Float, 1 } | { "Time(optional)", kParamType_Float, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdPlayMagicEffectVisuals[2] = { | static ParamInfo kParams_CmdPlayMagicEffectVisuals[2] = { | ||
{ "Magic Effect", | { "Magic Effect", kParamType_MagicEffect, 0 }, | ||
{ "Time(optional)", kParamType_Float, 1 } | { "Time(optional)", kParamType_Float, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStopMagicShaderVisuals[1] = { | static ParamInfo kParams_CmdStopMagicShaderVisuals[1] = { | ||
{ "Effect Shader ID", | { "Effect Shader ID", kParamType_EffectShader, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdStopMagicEffectVisuals[1] = { | static ParamInfo kParams_CmdStopMagicEffectVisuals[1] = { | ||
{ "Magic Effect", | { "Magic Effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdResetInterior[1] = { | static ParamInfo kParams_CmdResetInterior[1] = { | ||
{ "Cell", | { "Cell", kParamType_Cell, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetActorAlpha[1] = { | static ParamInfo kParams_CmdSetActorAlpha[1] = { | ||
Line 807: | Line 808: | ||
}; | }; | ||
static ParamInfo kParams_CmdForceWeather[2] = { | static ParamInfo kParams_CmdForceWeather[2] = { | ||
{ "Weather ID", | { "Weather ID", kParamType_WeatherID, 0 }, | ||
{ "Integer (Optional)", kParamType_Integer, 1 } | { "Integer (Optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 820: | Line 821: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetInWorldspace[1] = { | static ParamInfo kParams_CmdGetInWorldspace[1] = { | ||
{ "WorldSpace", | { "WorldSpace", kParamType_WorldSpace, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModPCMiscStat[2] = { | static ParamInfo kParams_CmdModPCMiscStat[2] = { | ||
Line 836: | Line 837: | ||
}; | }; | ||
static ParamInfo kParams_CmdKillAllActors[1] = { | static ParamInfo kParams_CmdKillAllActors[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNoRumors[1] = { | static ParamInfo kParams_CmdSetNoRumors[1] = { | ||
Line 842: | Line 843: | ||
}; | }; | ||
static ParamInfo kParams_CmdDispel[1] = { | static ParamInfo kParams_CmdDispel[1] = { | ||
{ "Magic Item", | { "Magic Item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdTriggerHitShader[1] = { | static ParamInfo kParams_CmdTriggerHitShader[1] = { | ||
Line 851: | Line 852: | ||
}; | }; | ||
static ParamInfo kParams_CmdDuplicateAllItems[2] = { | static ParamInfo kParams_CmdDuplicateAllItems[2] = { | ||
{ "Container (optional)", | { "Container (optional)", kParamType_Container, 1 }, | ||
{ "Ownership Added (optional)", kParamType_Integer, 1 } | { "Ownership Added (optional)", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 861: | Line 862: | ||
}; | }; | ||
static ParamInfo kParams_CmdDuplicateNPCStats[1] = { | static ParamInfo kParams_CmdDuplicateNPCStats[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetIgnoreFriendlyHits[1] = { | static ParamInfo kParams_CmdSetIgnoreFriendlyHits[1] = { | ||
Line 885: | Line 886: | ||
}; | }; | ||
static ParamInfo kParams_CmdSendTrespassAlarm[1] = { | static ParamInfo kParams_CmdSendTrespassAlarm[1] = { | ||
{ "Actor", | { "Actor", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSceneIsComplex[1] = { | static ParamInfo kParams_CmdSetSceneIsComplex[1] = { | ||
Line 891: | Line 892: | ||
}; | }; | ||
static ParamInfo kParams_CmdPreloadMagicEffect[1] = { | static ParamInfo kParams_CmdPreloadMagicEffect[1] = { | ||
{ "Magic Effect", | { "Magic Effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdShowDialogSubtitles[1] = { | static ParamInfo kParams_CmdShowDialogSubtitles[1] = { | ||
Line 945: | Line 946: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetActiveSpell[1] = { | static ParamInfo kParams_CmdSetActiveSpell[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSquareRoot[1] = { | static ParamInfo kParams_CmdSquareRoot[1] = { | ||
Line 1,218: | Line 1,219: | ||
}; | }; | ||
static ParamInfo kParams_CmdHasSpell[1] = { | static ParamInfo kParams_CmdHasSpell[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsClassSkill[2] = { | static ParamInfo kParams_CmdIsClassSkill[2] = { | ||
{ "skill", kParamType_ActorValue, 0 }, | { "skill", kParamType_ActorValue, 0 }, | ||
{ "class", | { "class", kParamType_Class, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClassAttribute[2] = { | static ParamInfo kParams_CmdGetClassAttribute[2] = { | ||
{ "index", kParamType_Integer, 0 }, | { "index", kParamType_Integer, 0 }, | ||
{ "class", | { "class", kParamType_Class, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClassSkill[2] = { | static ParamInfo kParams_CmdGetClassSkill[2] = { | ||
{ "index", kParamType_Integer, 0 }, | { "index", kParamType_Integer, 0 }, | ||
{ "class", | { "class", kParamType_Class, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClassSpecialization[1] = { | static ParamInfo kParams_CmdGetClassSpecialization[1] = { | ||
{ "class", | { "class", kParamType_Class, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModActorValue2[2] = { | static ParamInfo kParams_CmdModActorValue2[2] = { | ||
Line 1,262: | Line 1,263: | ||
static ParamInfo kParams_CmdGetMagicItemValue[3] = { | static ParamInfo kParams_CmdGetMagicItemValue[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectValue[2] = { | static ParamInfo kParams_CmdGetMagicEffectValue[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectCodeValue[2] = { | static ParamInfo kParams_CmdGetMagicEffectCodeValue[2] = { | ||
Line 1,274: | Line 1,275: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicItemHasEffect[3] = { | static ParamInfo kParams_CmdMagicItemHasEffect[3] = { | ||
{ "effect code", | { "effect code", kParamType_MagicEffect, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicItemHasEffectCode[3] = { | static ParamInfo kParams_CmdMagicItemHasEffectCode[3] = { | ||
{ "effect code", kParamType_Integer, 0 }, | { "effect code", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "actor value", kParamType_Integer, 1 } | { "actor value", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 1,351: | Line 1,352: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEnchantment[2] = { | static ParamInfo kParams_CmdSetEnchantment[2] = { | ||
{ "value", | { "value", kParamType_MagicItem, 0 }, | ||
{ "type", kParamType_InventoryObject, 1 } | { "type", kParamType_InventoryObject, 1 } | ||
}; | }; | ||
Line 1,497: | Line 1,498: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEquippedWeaponPoison[1] = { | static ParamInfo kParams_CmdSetEquippedWeaponPoison[1] = { | ||
{ "poison", | { "poison", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCloneForm[1] = { | static ParamInfo kParams_CmdCloneForm[1] = { | ||
Line 1,510: | Line 1,511: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicItemType[1] = { | static ParamInfo kParams_CmdGetMagicItemType[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicItemEffectCount[1] = { | static ParamInfo kParams_CmdGetMagicItemEffectCount[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemCode[2] = { | static ParamInfo kParams_CmdGetNthEffectItemCode[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemMagnitude[2] = { | static ParamInfo kParams_CmdGetNthEffectItemMagnitude[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemArea[2] = { | static ParamInfo kParams_CmdGetNthEffectItemArea[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemDuration[2] = { | static ParamInfo kParams_CmdGetNthEffectItemDuration[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemRange[2] = { | static ParamInfo kParams_CmdGetNthEffectItemRange[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemActorValue[2] = { | static ParamInfo kParams_CmdGetNthEffectItemActorValue[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetSpellType[1] = { | static ParamInfo kParams_CmdGetSpellType[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetSpellMagickaCost[1] = { | static ParamInfo kParams_CmdGetSpellMagickaCost[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetSpellMasteryLevel[1] = { | static ParamInfo kParams_CmdGetSpellMasteryLevel[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetEnchantmentType[1] = { | static ParamInfo kParams_CmdGetEnchantmentType[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetEnchantmentCharge[1] = { | static ParamInfo kParams_CmdGetEnchantmentCharge[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetEnchantmentCost[1] = { | static ParamInfo kParams_CmdGetEnchantmentCost[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectCode[1] = { | static ParamInfo kParams_CmdGetMagicEffectCode[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectBaseCost[1] = { | static ParamInfo kParams_CmdGetMagicEffectBaseCost[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectSchool[1] = { | static ParamInfo kParams_CmdGetMagicEffectSchool[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectProjectileSpeed[1] = { | static ParamInfo kParams_CmdGetMagicEffectProjectileSpeed[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectEnchantFactor[1] = { | static ParamInfo kParams_CmdGetMagicEffectEnchantFactor[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectBarterFactor[1] = { | static ParamInfo kParams_CmdGetMagicEffectBarterFactor[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectBaseCostC[1] = { | static ParamInfo kParams_CmdGetMagicEffectBaseCostC[1] = { | ||
Line 1,592: | Line 1,593: | ||
static ParamInfo kParams_CmdSetNthEffectItemMagnitude[3] = { | static ParamInfo kParams_CmdSetNthEffectItemMagnitude[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModNthEffectItemMagnitude[3] = { | static ParamInfo kParams_CmdModNthEffectItemMagnitude[3] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemArea[3] = { | static ParamInfo kParams_CmdSetNthEffectItemArea[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModNthEffectItemArea[3] = { | static ParamInfo kParams_CmdModNthEffectItemArea[3] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemDuration[3] = { | static ParamInfo kParams_CmdSetNthEffectItemDuration[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModNthEffectItemDuration[3] = { | static ParamInfo kParams_CmdModNthEffectItemDuration[3] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemRange[3] = { | static ParamInfo kParams_CmdSetNthEffectItemRange[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemActorValue[3] = { | static ParamInfo kParams_CmdSetNthEffectItemActorValue[3] = { | ||
{ "value", kParamType_ActorValue, 0 }, | { "value", kParamType_ActorValue, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemActorValueC[3] = { | static ParamInfo kParams_CmdSetNthEffectItemActorValueC[3] = { | ||
{ "actor value code", kParamType_Integer, 0 }, | { "actor value code", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveNthEffectItem[2] = { | static ParamInfo kParams_CmdRemoveNthEffectItem[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSpellType[2] = { | static ParamInfo kParams_CmdSetSpellType[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSpellMagickaCost[2] = { | static ParamInfo kParams_CmdSetSpellMagickaCost[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModSpellMagickaCost[2] = { | static ParamInfo kParams_CmdModSpellMagickaCost[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSpellMasteryLevel[2] = { | static ParamInfo kParams_CmdSetSpellMasteryLevel[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEnchantmentCharge[2] = { | static ParamInfo kParams_CmdSetEnchantmentCharge[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModEnchantmentCharge[2] = { | static ParamInfo kParams_CmdModEnchantmentCharge[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEnchantmentCost[2] = { | static ParamInfo kParams_CmdSetEnchantmentCost[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModEnchantmentCost[2] = { | static ParamInfo kParams_CmdModEnchantmentCost[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEnchantmentType[2] = { | static ParamInfo kParams_CmdSetEnchantmentType[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNumericINISetting[2] = { | static ParamInfo kParams_CmdSetNumericINISetting[2] = { | ||
Line 1,683: | Line 1,684: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectHostile[1] = { | static ParamInfo kParams_CmdIsMagicEffectHostile[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectHostileC[1] = { | static ParamInfo kParams_CmdIsMagicEffectHostileC[1] = { | ||
Line 1,695: | Line 1,696: | ||
}; | }; | ||
static ParamInfo kParams_CmdCopyNthEffectItem[3] = { | static ParamInfo kParams_CmdCopyNthEffectItem[3] = { | ||
{ "from Magic Item", | { "from Magic Item", kParamType_MagicItem, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCopyAllEffectItems[2] = { | static ParamInfo kParams_CmdCopyAllEffectItems[2] = { | ||
{ "from Magic Item", | { "from Magic Item", kParamType_MagicItem, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdAddEffectItem[2] = { | static ParamInfo kParams_CmdAddEffectItem[2] = { | ||
{ "effect", | { "effect", kParamType_MagicEffect, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdAddEffectItemC[2] = { | static ParamInfo kParams_CmdAddEffectItemC[2] = { | ||
{ "effect code", kParamType_Integer, 0 }, | { "effect code", kParamType_Integer, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicItemAutoCalc[1] = { | static ParamInfo kParams_CmdIsMagicItemAutoCalc[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetMagicItemAutoCalc[2] = { | static ParamInfo kParams_CmdSetMagicItemAutoCalc[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectForSpellmaking[1] = { | static ParamInfo kParams_CmdIsMagicEffectForSpellmaking[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectForSpellmakingC[1] = { | static ParamInfo kParams_CmdIsMagicEffectForSpellmakingC[1] = { | ||
Line 1,725: | Line 1,726: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectForEnchanting[1] = { | static ParamInfo kParams_CmdIsMagicEffectForEnchanting[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectForEnchantingC[1] = { | static ParamInfo kParams_CmdIsMagicEffectForEnchantingC[1] = { | ||
Line 1,731: | Line 1,732: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectDetrmimental[1] = { | static ParamInfo kParams_CmdIsMagicEffectDetrmimental[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectDetrimentalC[1] = { | static ParamInfo kParams_CmdIsMagicEffectDetrimentalC[1] = { | ||
Line 1,737: | Line 1,738: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectCanRecover[1] = { | static ParamInfo kParams_CmdIsMagicEffectCanRecover[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectCanRecoverC[1] = { | static ParamInfo kParams_CmdIsMagicEffectCanRecoverC[1] = { | ||
Line 1,743: | Line 1,744: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectMagnitudePercent[1] = { | static ParamInfo kParams_CmdIsMagicEffectMagnitudePercent[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectMagnitudePercentC[1] = { | static ParamInfo kParams_CmdIsMagicEffectMagnitudePercentC[1] = { | ||
Line 1,749: | Line 1,750: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectFXPersists[1] = { | static ParamInfo kParams_CmdMagicEffectFXPersists[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectFXPersistsC[1] = { | static ParamInfo kParams_CmdMagicEffectFXPersistsC[1] = { | ||
Line 1,755: | Line 1,756: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnSelfAllowed[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnSelfAllowed[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnSelfAllowedC[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnSelfAllowedC[1] = { | ||
Line 1,761: | Line 1,762: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnTouchAllowed[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnTouchAllowed[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnTouchAllowedC[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnTouchAllowedC[1] = { | ||
Line 1,767: | Line 1,768: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnTargetAllowed[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnTargetAllowed[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsMagicEffectOnTargetAllowedC[1] = { | static ParamInfo kParams_CmdIsMagicEffectOnTargetAllowedC[1] = { | ||
Line 1,773: | Line 1,774: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoDuration[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoDuration[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoDurationC[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoDurationC[1] = { | ||
Line 1,779: | Line 1,780: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoMagnitude[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoMagnitude[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoMagnitudeC[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoMagnitudeC[1] = { | ||
Line 1,785: | Line 1,786: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoArea[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoArea[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoAreaC[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoAreaC[1] = { | ||
Line 1,791: | Line 1,792: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoIngredient[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoIngredient[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoIngredientC[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoIngredientC[1] = { | ||
Line 1,797: | Line 1,798: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoHitEffect[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoHitEffect[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectHasNoHitEffectC[1] = { | static ParamInfo kParams_CmdMagicEffectHasNoHitEffectC[1] = { | ||
Line 1,803: | Line 1,804: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesWeapon[1] = { | static ParamInfo kParams_CmdMagicEffectUsesWeapon[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesWeaponC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesWeaponC[1] = { | ||
Line 1,809: | Line 1,810: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesArmor[1] = { | static ParamInfo kParams_CmdMagicEffectUsesArmor[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesArmorC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesArmorC[1] = { | ||
Line 1,815: | Line 1,816: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesCreature[1] = { | static ParamInfo kParams_CmdMagicEffectUsesCreature[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesCreatureC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesCreatureC[1] = { | ||
Line 1,821: | Line 1,822: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesSkill[1] = { | static ParamInfo kParams_CmdMagicEffectUsesSkill[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesSkillC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesSkillC[1] = { | ||
Line 1,827: | Line 1,828: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesAttribute[1] = { | static ParamInfo kParams_CmdMagicEffectUsesAttribute[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesAttributeC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesAttributeC[1] = { | ||
Line 1,833: | Line 1,834: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesOtherActorValue[1] = { | static ParamInfo kParams_CmdMagicEffectUsesOtherActorValue[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicEffectUsesOtherActorValueC[1] = { | static ParamInfo kParams_CmdMagicEffectUsesOtherActorValueC[1] = { | ||
Line 1,839: | Line 1,840: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectOtherActorValue[1] = { | static ParamInfo kParams_CmdGetMagicEffectOtherActorValue[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectOtherActorValueC[1] = { | static ParamInfo kParams_CmdGetMagicEffectOtherActorValueC[1] = { | ||
Line 1,845: | Line 1,846: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectUsedObject[1] = { | static ParamInfo kParams_CmdGetMagicEffectUsedObject[1] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetMagicEffectUsedObjectC[1] = { | static ParamInfo kParams_CmdGetMagicEffectUsedObjectC[1] = { | ||
Line 1,851: | Line 1,852: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsCreature[1] = { | static ParamInfo kParams_CmdIsCreature[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureType[1] = { | static ParamInfo kParams_CmdGetCreatureType[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureCombatSkill[1] = { | static ParamInfo kParams_CmdGetCreatureCombatSkill[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureMagicSkill[1] = { | static ParamInfo kParams_CmdGetCreatureMagicSkill[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureStealthSkill[1] = { | static ParamInfo kParams_CmdGetCreatureStealthSkill[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetBookCantBeTaken[1] = { | static ParamInfo kParams_CmdGetBookCantBeTaken[1] = { | ||
Line 2,016: | Line 2,017: | ||
}; | }; | ||
static ParamInfo kParams_Cmdcon_ToggleAI[1] = { | static ParamInfo kParams_Cmdcon_ToggleAI[1] = { | ||
{ "Actor (optional)", | { "Actor (optional)", kParamType_Actor, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsScripted[1] = { | static ParamInfo kParams_CmdIsScripted[1] = { | ||
Line 2,062: | Line 2,063: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetSpellSchool[1] = { | static ParamInfo kParams_CmdGetSpellSchool[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsNthEffectItemScripted[2] = { | static ParamInfo kParams_CmdIsNthEffectItemScripted[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemScript[2] = { | static ParamInfo kParams_CmdGetNthEffectItemScript[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemScriptVisualEffect[2] = { | static ParamInfo kParams_CmdGetNthEffectItemScriptVisualEffect[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemScriptSchool[2] = { | static ParamInfo kParams_CmdGetNthEffectItemScriptSchool[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsNthEffectItemScriptHostile[2] = { | static ParamInfo kParams_CmdIsNthEffectItemScriptHostile[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScriptVisualEffect[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScriptVisualEffect[3] = { | ||
{ "effect", | { "effect", kParamType_MagicEffect, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScriptVisualEffectC[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScriptVisualEffectC[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScriptSchool[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScriptSchool[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScriptHostile[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScriptHostile[3] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 2,117: | Line 2,118: | ||
}; | }; | ||
static ParamInfo kParams_CmdAddFullEffectItem[6] = { | static ParamInfo kParams_CmdAddFullEffectItem[6] = { | ||
{ "effect", | { "effect", kParamType_MagicEffect, 0 }, | ||
{ "magnitude", kParamType_Integer, 0 }, | { "magnitude", kParamType_Integer, 0 }, | ||
{ "area", kParamType_Integer, 0 }, | { "area", kParamType_Integer, 0 }, | ||
{ "duration", kParamType_Integer, 0 }, | { "duration", kParamType_Integer, 0 }, | ||
{ "range", kParamType_Integer, 0 }, | { "range", kParamType_Integer, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdAddFullEffectItemC[6] = { | static ParamInfo kParams_CmdAddFullEffectItemC[6] = { | ||
Line 2,130: | Line 2,131: | ||
{ "duration", kParamType_Integer, 0 }, | { "duration", kParamType_Integer, 0 }, | ||
{ "range", kParamType_Integer, 0 }, | { "range", kParamType_Integer, 0 }, | ||
{ "toMagicItem", | { "toMagicItem", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetPlayerSkillUse[1] = { | static ParamInfo kParams_CmdGetPlayerSkillUse[1] = { | ||
Line 2,154: | Line 2,155: | ||
static ParamInfo kParams_CmdIsClassAttribute[2] = { | static ParamInfo kParams_CmdIsClassAttribute[2] = { | ||
{ "skill", kParamType_ActorValue, 0 }, | { "skill", kParamType_ActorValue, 0 }, | ||
{ "class", | { "class", kParamType_Class, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdModName[2] = { | static ParamInfo kParams_CmdModName[2] = { | ||
Line 2,166: | Line 2,167: | ||
static ParamInfo kParams_CmdGetRaceAttribute[2] = { | static ParamInfo kParams_CmdGetRaceAttribute[2] = { | ||
{ "attribute", kParamType_ActorValue, 0 }, | { "attribute", kParamType_ActorValue, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRaceAttributeC[2] = { | static ParamInfo kParams_CmdGetRaceAttributeC[2] = { | ||
{ "which", kParamType_Integer, 0 }, | { "which", kParamType_Integer, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRaceSkillBonus[2] = { | static ParamInfo kParams_CmdGetRaceSkillBonus[2] = { | ||
{ "attribute", kParamType_ActorValue, 0 }, | { "attribute", kParamType_ActorValue, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsRaceBonusSkillC[2] = { | static ParamInfo kParams_CmdIsRaceBonusSkillC[2] = { | ||
{ "attribute", kParamType_Integer, 0 }, | { "attribute", kParamType_Integer, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsRaceBonusSkill[2] = { | static ParamInfo kParams_CmdIsRaceBonusSkill[2] = { | ||
{ "attribute", kParamType_ActorValue, 0 }, | { "attribute", kParamType_ActorValue, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRaceSkillBonusC[2] = { | static ParamInfo kParams_CmdGetRaceSkillBonusC[2] = { | ||
{ "attribute", kParamType_Integer, 0 }, | { "attribute", kParamType_Integer, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthRaceBonusSkill[2] = { | static ParamInfo kParams_CmdGetNthRaceBonusSkill[2] = { | ||
{ "attribute", kParamType_ActorValue, 0 }, | { "attribute", kParamType_ActorValue, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateSunriseBegin[1] = { | static ParamInfo kParams_CmdGetClimateSunriseBegin[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateSunriseEnd[1] = { | static ParamInfo kParams_CmdGetClimateSunriseEnd[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateSunsetBegin[1] = { | static ParamInfo kParams_CmdGetClimateSunsetBegin[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateSunsetEnd[1] = { | static ParamInfo kParams_CmdGetClimateSunsetEnd[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetSpellExplodesWithNoTarget[1] = { | static ParamInfo kParams_CmdGetSpellExplodesWithNoTarget[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSpellExplodesWithNoTarget[2] = { | static ParamInfo kParams_CmdSetSpellExplodesWithNoTarget[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveAllEffectItems[1] = { | static ParamInfo kParams_CmdRemoveAllEffectItems[1] = { | ||
{ "spell", | { "spell", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScript[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScript[3] = { | ||
{ "script", | { "script", kParamType_MagicItem, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthEffectItemScriptName[3] = { | static ParamInfo kParams_CmdSetNthEffectItemScriptName[3] = { | ||
{ "name", kParamType_String, 0 }, | { "name", kParamType_String, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 2,228: | Line 2,229: | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicItemHasEffectCount[3] = { | static ParamInfo kParams_CmdMagicItemHasEffectCount[3] = { | ||
{ "effect code", | { "effect code", kParamType_MagicEffect, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicItemHasEffectCountCode[3] = { | static ParamInfo kParams_CmdMagicItemHasEffectCountCode[3] = { | ||
{ "effect code", kParamType_Integer, 0 }, | { "effect code", kParamType_Integer, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "actor value", kParamType_Integer, 1 } | { "actor value", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 2,244: | Line 2,245: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetScript[2] = { | static ParamInfo kParams_CmdSetScript[2] = { | ||
{ "script", | { "script", kParamType_MagicItem, 0 }, | ||
{ "object", kParamType_InventoryObject, 1 } | { "object", kParamType_InventoryObject, 1 } | ||
}; | }; | ||
Line 2,258: | Line 2,259: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateMoonPhaseLength[1] = { | static ParamInfo kParams_CmdGetClimateMoonPhaseLength[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateHasMasser[1] = { | static ParamInfo kParams_CmdGetClimateHasMasser[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateHasSecunda[1] = { | static ParamInfo kParams_CmdGetClimateHasSecunda[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateSunriseBegin[2] = { | static ParamInfo kParams_CmdSetClimateSunriseBegin[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateSunriseEnd[2] = { | static ParamInfo kParams_CmdSetClimateSunriseEnd[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateSunsetBegin[2] = { | static ParamInfo kParams_CmdSetClimateSunsetBegin[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateSunsetEnd[2] = { | static ParamInfo kParams_CmdSetClimateSunsetEnd[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateMoonPhaseLength[2] = { | static ParamInfo kParams_CmdSetClimateMoonPhaseLength[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateHasMasser[2] = { | static ParamInfo kParams_CmdSetClimateHasMasser[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateHasSecunda[2] = { | static ParamInfo kParams_CmdSetClimateHasSecunda[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetClimateVolatility[2] = { | static ParamInfo kParams_CmdGetClimateVolatility[2] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 }, | ||
{ "GetWeatherInfo", | { "GetWeatherInfo", 57047257, 0 } //strange parameter type | ||
}; | }; | ||
static ParamInfo kParams_CmdSetClimateVolatility[2] = { | static ParamInfo kParams_CmdSetClimateVolatility[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsKeyPressed3[1] = { | static ParamInfo kParams_CmdIsKeyPressed3[1] = { | ||
Line 2,342: | Line 2,343: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalActiveEffectMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalActiveEffectMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAENonAbilityMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAENonAbilityMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEAbilityMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEAbilityMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAESpellMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAESpellMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEDiseaseMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEDiseaseMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAELesserPowerMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAELesserPowerMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEPowerMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEPowerMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEAllSpellsMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEAllSpellsMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEEnchantmentMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEEnchantmentMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTotalAEAlchemyMagnitude[2] = { | static ParamInfo kParams_CmdGetTotalAEAlchemyMagnitude[2] = { | ||
{ "magic effect", | { "magic effect", kParamType_MagicEffect, 0 }, | ||
{ "actor value", kParamType_ActorValue, 1 } | { "actor value", kParamType_ActorValue, 1 } | ||
}; | }; | ||
Line 2,455: | Line 2,456: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherWindSpeed[1] = { | static ParamInfo kParams_CmdGetWeatherWindSpeed[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherCloudSpeedLower[1] = { | static ParamInfo kParams_CmdGetWeatherCloudSpeedLower[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherCloudSpeedUpper[1] = { | static ParamInfo kParams_CmdGetWeatherCloudSpeedUpper[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherTransDelta[1] = { | static ParamInfo kParams_CmdGetWeatherTransDelta[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherSunGlare[1] = { | static ParamInfo kParams_CmdGetWeatherSunGlare[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherSunDamage[1] = { | static ParamInfo kParams_CmdGetWeatherSunDamage[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherFogDayNear[1] = { | static ParamInfo kParams_CmdGetWeatherFogDayNear[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherFogDayFar[1] = { | static ParamInfo kParams_CmdGetWeatherFogDayFar[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherFogNightNear[1] = { | static ParamInfo kParams_CmdGetWeatherFogNightNear[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherFogNightFar[1] = { | static ParamInfo kParams_CmdGetWeatherFogNightFar[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherHDRValue[2] = { | static ParamInfo kParams_CmdGetWeatherHDRValue[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherHDRValue[3] = { | static ParamInfo kParams_CmdSetWeatherHDRValue[3] = { | ||
{ "nuVal", kParamType_Float, 0 }, | { "nuVal", kParamType_Float, 0 }, | ||
{ "which", kParamType_Integer, 0 }, | { "which", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherColor[4] = { | static ParamInfo kParams_CmdGetWeatherColor[4] = { | ||
{ "rgb", kParamType_Integer, 0 }, | { "rgb", kParamType_Integer, 0 }, | ||
{ "whichColor", kParamType_Integer, 0 }, | { "whichColor", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 }, | ||
{ "time", kParamType_Integer, 1 } | { "time", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 2,504: | Line 2,505: | ||
{ "blue", kParamType_Integer, 0 }, | { "blue", kParamType_Integer, 0 }, | ||
{ "whichColor", kParamType_Integer, 0 }, | { "whichColor", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 }, | ||
{ "time", kParamType_Integer, 1 } | { "time", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherLightningFrequency[2] = { | static ParamInfo kParams_CmdSetWeatherLightningFrequency[2] = { | ||
{ "value", kParamType_Integer, 0 }, | { "value", kParamType_Integer, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherWindSpeed[2] = { | static ParamInfo kParams_CmdSetWeatherWindSpeed[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherCloudSpeedLower[2] = { | static ParamInfo kParams_CmdSetWeatherCloudSpeedLower[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherCloudSpeedUpper[2] = { | static ParamInfo kParams_CmdSetWeatherCloudSpeedUpper[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherTransDelta[2] = { | static ParamInfo kParams_CmdSetWeatherTransDelta[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherSunGlare[2] = { | static ParamInfo kParams_CmdSetWeatherSunGlare[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherSunDamage[2] = { | static ParamInfo kParams_CmdSetWeatherSunDamage[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherFogDayNear[2] = { | static ParamInfo kParams_CmdSetWeatherFogDayNear[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherFogDayFar[2] = { | static ParamInfo kParams_CmdSetWeatherFogDayFar[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherFogNightNear[2] = { | static ParamInfo kParams_CmdSetWeatherFogNightNear[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetWeatherFogNightFar[2] = { | static ParamInfo kParams_CmdSetWeatherFogNightFar[2] = { | ||
{ "value", kParamType_Float, 0 }, | { "value", kParamType_Float, 0 }, | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCalcLeveledItem[4] = { | static ParamInfo kParams_CmdCalcLeveledItem[4] = { | ||
Line 2,561: | Line 2,562: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetWeatherLightningFrequency[1] = { | static ParamInfo kParams_CmdGetWeatherLightningFrequency[1] = { | ||
{ "weather", | { "weather", kParamType_WeatherID, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNthActiveEffectMagnitude[2] = { | static ParamInfo kParams_CmdSetNthActiveEffectMagnitude[2] = { | ||
Line 2,573: | Line 2,574: | ||
static ParamInfo kParams_CmdSetHair[2] = { | static ParamInfo kParams_CmdSetHair[2] = { | ||
{ "body data", kParamType_InventoryObject, 0 }, | { "body data", kParamType_InventoryObject, 0 }, | ||
{ "base NPC", | { "base NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCopyHair[2] = { | static ParamInfo kParams_CmdCopyHair[2] = { | ||
{ "copy from", | { "copy from", kParamType_NPC, 0 }, | ||
{ "copy to", | { "copy to", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetEyes[2] = { | static ParamInfo kParams_CmdSetEyes[2] = { | ||
{ "body data", kParamType_InventoryObject, 0 }, | { "body data", kParamType_InventoryObject, 0 }, | ||
{ "base NPC", | { "base NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCopyEyes[2] = { | static ParamInfo kParams_CmdCopyEyes[2] = { | ||
{ "copy from", | { "copy from", kParamType_NPC, 0 }, | ||
{ "copy to", | { "copy to", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetContainerRespawns[1] = { | static ParamInfo kParams_CmdGetContainerRespawns[1] = { | ||
{ "container", | { "container", kParamType_Container, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetContainerRespawns[2] = { | static ParamInfo kParams_CmdSetContainerRespawns[2] = { | ||
{ "respawns", kParamType_Integer, 0 }, | { "respawns", kParamType_Integer, 0 }, | ||
{ "container", | { "container", kParamType_Container, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureReach[1] = { | static ParamInfo kParams_CmdGetCreatureReach[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureBaseScale[1] = { | static ParamInfo kParams_CmdGetCreatureBaseScale[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureSoulLevel[1] = { | static ParamInfo kParams_CmdGetCreatureSoulLevel[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFirstRef[3] = { | static ParamInfo kParams_CmdGetFirstRef[3] = { | ||
Line 2,614: | Line 2,615: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsOffLimits[1] = { | static ParamInfo kParams_CmdIsOffLimits[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMessageEX[21] = { | static ParamInfo kParams_CmdMessageEX[21] = { | ||
Line 2,675: | Line 2,676: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsActorRespawning[1] = { | static ParamInfo kParams_CmdIsActorRespawning[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsPCLevelOffset[1] = { | static ParamInfo kParams_CmdIsPCLevelOffset[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdHasLowLevelProcessing[1] = { | static ParamInfo kParams_CmdHasLowLevelProcessing[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsSummonable[1] = { | static ParamInfo kParams_CmdIsSummonable[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdHasNoPersuasion[1] = { | static ParamInfo kParams_CmdHasNoPersuasion[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCanCorpseCheck[1] = { | static ParamInfo kParams_CmdCanCorpseCheck[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetActorMinLevel[1] = { | static ParamInfo kParams_CmdGetActorMinLevel[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetActorMaxLevel[1] = { | static ParamInfo kParams_CmdGetActorMaxLevel[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFemale[2] = { | static ParamInfo kParams_CmdSetFemale[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetActorRespawns[2] = { | static ParamInfo kParams_CmdSetActorRespawns[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetPCLevelOffset[4] = { | static ParamInfo kParams_CmdSetPCLevelOffset[4] = { | ||
Line 2,710: | Line 2,711: | ||
{ "min level", kParamType_Integer, 1 }, | { "min level", kParamType_Integer, 1 }, | ||
{ "max level", kParamType_Integer, 1 }, | { "max level", kParamType_Integer, 1 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetLowLevelProcessing[2] = { | static ParamInfo kParams_CmdSetLowLevelProcessing[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSummonable[2] = { | static ParamInfo kParams_CmdSetSummonable[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetNoPersuasion[2] = { | static ParamInfo kParams_CmdSetNoPersuasion[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCanCorpseCheck[2] = { | static ParamInfo kParams_CmdSetCanCorpseCheck[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNumFactions[1] = { | static ParamInfo kParams_CmdGetNumFactions[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthFaction[2] = { | static ParamInfo kParams_CmdGetNthFaction[2] = { | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsFactionEvil[1] = { | static ParamInfo kParams_CmdIsFactionEvil[1] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsFactionHidden[1] = { | static ParamInfo kParams_CmdIsFactionHidden[1] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdFactionHasSpecialCombat[1] = { | static ParamInfo kParams_CmdFactionHasSpecialCombat[1] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFactionEvil[2] = { | static ParamInfo kParams_CmdSetFactionEvil[2] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 }, | ||
{ "bool", kParamType_Integer, 0 } | { "bool", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFactionHidden[2] = { | static ParamInfo kParams_CmdSetFactionHidden[2] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 }, | ||
{ "bool", kParamType_Integer, 0 } | { "bool", kParamType_Integer, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetFactionSpecialCombat[2] = { | static ParamInfo kParams_CmdSetFactionSpecialCombat[2] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 }, | ||
{ "bool", kParamType_Integer, 0 } | { "bool", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 2,767: | Line 2,768: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRaceSpellCount[1] = { | static ParamInfo kParams_CmdGetRaceSpellCount[1] = { | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthRaceSpell[2] = { | static ParamInfo kParams_CmdGetNthRaceSpell[2] = { | ||
{ "attribute", kParamType_Integer, 0 }, | { "attribute", kParamType_Integer, 0 }, | ||
{ "race", | { "race", kParamType_Race, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdMagicItemHasEffectItemScript[2] = { | static ParamInfo kParams_CmdMagicItemHasEffectItemScript[2] = { | ||
{ "script", | { "script", kParamType_MagicItem, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCurrentSoulLevel[1] = { | static ParamInfo kParams_CmdSetCurrentSoulLevel[1] = { | ||
Line 2,781: | Line 2,782: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureWalks[1] = { | static ParamInfo kParams_CmdGetCreatureWalks[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureSwims[1] = { | static ParamInfo kParams_CmdGetCreatureSwims[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureFlies[1] = { | static ParamInfo kParams_CmdGetCreatureFlies[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsCreatureBiped[1] = { | static ParamInfo kParams_CmdIsCreatureBiped[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureHasNoMovement[1] = { | static ParamInfo kParams_CmdCreatureHasNoMovement[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureHasNoHead[1] = { | static ParamInfo kParams_CmdCreatureHasNoHead[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureHasNoLeftArm[1] = { | static ParamInfo kParams_CmdCreatureHasNoLeftArm[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureHasNoRightArm[1] = { | static ParamInfo kParams_CmdCreatureHasNoRightArm[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureNoCombatInWater[1] = { | static ParamInfo kParams_CmdCreatureNoCombatInWater[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCreatureUsesWeaponAndShield[1] = { | static ParamInfo kParams_CmdCreatureUsesWeaponAndShield[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsFemale[1] = { | static ParamInfo kParams_CmdIsFemale[1] = { | ||
{ "base actor", | { "base actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetHarvested[1] = { | static ParamInfo kParams_CmdSetHarvested[1] = { | ||
Line 2,829: | Line 2,830: | ||
static ParamInfo kParams_CmdModNthEffectItemScriptName[3] = { | static ParamInfo kParams_CmdModNthEffectItemScriptName[3] = { | ||
{ "name", kParamType_String, 0 }, | { "name", kParamType_String, 0 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 1 } | { "which effect", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 2,836: | Line 2,837: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureSoundBase[1] = { | static ParamInfo kParams_CmdGetCreatureSoundBase[1] = { | ||
{ "index", | { "index", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNumRanks[1] = { | static ParamInfo kParams_CmdGetNumRanks[1] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdHasModel[2] = { | static ParamInfo kParams_CmdHasModel[2] = { | ||
{ "model path", kParamType_String, 0 }, | { "model path", kParamType_String, 0 }, | ||
{ "creature", | { "creature", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsModLoaded[1] = { | static ParamInfo kParams_CmdIsModLoaded[1] = { | ||
Line 2,849: | Line 2,850: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRace[1] = { | static ParamInfo kParams_CmdGetRace[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdHasName[1] = { | static ParamInfo kParams_CmdHasName[1] = { | ||
Line 2,858: | Line 2,859: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetMagicProjectileSpell[1] = { | static ParamInfo kParams_CmdSetMagicProjectileSpell[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetModIndex[1] = { | static ParamInfo kParams_CmdGetModIndex[1] = { | ||
Line 2,905: | Line 2,906: | ||
}; | }; | ||
static ParamInfo kParams_CmdAddSpellNS[1] = { | static ParamInfo kParams_CmdAddSpellNS[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdRemoveSpellNS[1] = { | static ParamInfo kParams_CmdRemoveSpellNS[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetHair[1] = { | static ParamInfo kParams_CmdGetHair[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetEyes[1] = { | static ParamInfo kParams_CmdGetEyes[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetHairColor[2] = { | static ParamInfo kParams_CmdGetHairColor[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetOpenSound[1] = { | static ParamInfo kParams_CmdGetOpenSound[1] = { | ||
Line 2,930: | Line 2,931: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOpenSound[2] = { | static ParamInfo kParams_CmdSetOpenSound[2] = { | ||
{ "sound", | { "sound", kParamType_Sound, 0 }, | ||
{ "object", kParamType_InventoryObject, 1 } | { "object", kParamType_InventoryObject, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetCloseSound[2] = { | static ParamInfo kParams_CmdSetCloseSound[2] = { | ||
{ "sound", | { "sound", kParamType_Sound, 0 }, | ||
{ "object", kParamType_InventoryObject, 1 } | { "object", kParamType_InventoryObject, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetLoopSound[2] = { | static ParamInfo kParams_CmdSetLoopSound[2] = { | ||
{ "sound", | { "sound", kParamType_Sound, 0 }, | ||
{ "object", kParamType_InventoryObject, 1 } | { "object", kParamType_InventoryObject, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCreatureSound[2] = { | static ParamInfo kParams_CmdGetCreatureSound[2] = { | ||
{ "int", kParamType_Integer, 0 }, | { "int", kParamType_Integer, 0 }, | ||
{ "actor", | { "actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsPlayable2[1] = { | static ParamInfo kParams_CmdIsPlayable2[1] = { | ||
Line 2,957: | Line 2,958: | ||
{ "model path", kParamType_String, 0 }, | { "model path", kParamType_String, 0 }, | ||
{ "bool", kParamType_Integer, 0 }, | { "bool", kParamType_Integer, 0 }, | ||
{ "creature", | { "creature", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetMessageSound[1] = { | static ParamInfo kParams_CmdSetMessageSound[1] = { | ||
Line 2,967: | Line 2,968: | ||
static ParamInfo kParams_CmdGetVariable[2] = { | static ParamInfo kParams_CmdGetVariable[2] = { | ||
{ "variable name", kParamType_String, 0 }, | { "variable name", kParamType_String, 0 }, | ||
{ "quest", | { "quest", kParamType_Quest, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetRefVariable[2] = { | static ParamInfo kParams_CmdGetRefVariable[2] = { | ||
{ "variable name", kParamType_String, 0 }, | { "variable name", kParamType_String, 0 }, | ||
{ "quest", | { "quest", kParamType_Quest, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdHasVariable[2] = { | static ParamInfo kParams_CmdHasVariable[2] = { | ||
{ "variable name", kParamType_String, 0 }, | { "variable name", kParamType_String, 0 }, | ||
{ "quest", | { "quest", kParamType_Quest, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFullGoldValue[1] = { | static ParamInfo kParams_CmdGetFullGoldValue[1] = { | ||
Line 2,984: | Line 2,985: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetDetectionState[2] = { | static ParamInfo kParams_CmdSetDetectionState[2] = { | ||
{ "actor", | { "actor", kParamType_Actor, 0 }, | ||
{ "level", kParamType_Integer, 0 } | { "level", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 2,998: | Line 2,999: | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersWeapons[1] = { | static ParamInfo kParams_CmdOffersWeapons[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersArmor[1] = { | static ParamInfo kParams_CmdOffersArmor[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersClothing[1] = { | static ParamInfo kParams_CmdOffersClothing[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersBooks[1] = { | static ParamInfo kParams_CmdOffersBooks[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersLights[1] = { | static ParamInfo kParams_CmdOffersLights[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersIngredients[1] = { | static ParamInfo kParams_CmdOffersIngredients[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersApparatus[1] = { | static ParamInfo kParams_CmdOffersApparatus[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersMiscItems[1] = { | static ParamInfo kParams_CmdOffersMiscItems[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersMagicItems[1] = { | static ParamInfo kParams_CmdOffersMagicItems[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersSpells[1] = { | static ParamInfo kParams_CmdOffersSpells[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersPotions[1] = { | static ParamInfo kParams_CmdOffersPotions[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersTraining[1] = { | static ParamInfo kParams_CmdOffersTraining[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersRecharging[1] = { | static ParamInfo kParams_CmdOffersRecharging[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersRepair[1] = { | static ParamInfo kParams_CmdOffersRepair[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdOffersServicesC[2] = { | static ParamInfo kParams_CmdOffersServicesC[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTrainerSkill[1] = { | static ParamInfo kParams_CmdGetTrainerSkill[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetTrainerLevel[1] = { | static ParamInfo kParams_CmdGetTrainerLevel[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersWeapons[2] = { | static ParamInfo kParams_CmdSetOffersWeapons[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersArmor[2] = { | static ParamInfo kParams_CmdSetOffersArmor[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersClothing[2] = { | static ParamInfo kParams_CmdSetOffersClothing[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersBooks[2] = { | static ParamInfo kParams_CmdSetOffersBooks[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersIngredients[2] = { | static ParamInfo kParams_CmdSetOffersIngredients[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersSpells[2] = { | static ParamInfo kParams_CmdSetOffersSpells[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersLights[2] = { | static ParamInfo kParams_CmdSetOffersLights[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersMiscItems[2] = { | static ParamInfo kParams_CmdSetOffersMiscItems[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersMagicItems[2] = { | static ParamInfo kParams_CmdSetOffersMagicItems[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersApparatus[2] = { | static ParamInfo kParams_CmdSetOffersApparatus[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersPotions[2] = { | static ParamInfo kParams_CmdSetOffersPotions[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersTraining[2] = { | static ParamInfo kParams_CmdSetOffersTraining[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersRecharging[2] = { | static ParamInfo kParams_CmdSetOffersRecharging[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetOffersRepair[2] = { | static ParamInfo kParams_CmdSetOffersRepair[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetServicesMask[2] = { | static ParamInfo kParams_CmdSetServicesMask[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetServicesMask[1] = { | static ParamInfo kParams_CmdGetServicesMask[1] = { | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetTrainerSkill[2] = { | static ParamInfo kParams_CmdSetTrainerSkill[2] = { | ||
{ "skill", kParamType_ActorValue, 0 }, | { "skill", kParamType_ActorValue, 0 }, | ||
{ "npc", | { "npc", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetTrainerLevel[2] = { | static ParamInfo kParams_CmdSetTrainerLevel[2] = { | ||
{ "RGB value", kParamType_Integer, 0 }, | { "RGB value", kParamType_Integer, 0 }, | ||
{ "NPC", | { "NPC", kParamType_NPC, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNumPackages[1] = { | static ParamInfo kParams_CmdGetNumPackages[1] = { | ||
{ "actor", | { "actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthPackage[2] = { | static ParamInfo kParams_CmdGetNthPackage[2] = { | ||
{ "int", kParamType_Integer, 0 }, | { "int", kParamType_Integer, 0 }, | ||
{ "actor", | { "actor", kParamType_ActorBase, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdCompareScripts[2] = { | static ParamInfo kParams_CmdCompareScripts[2] = { | ||
Line 3,132: | Line 3,133: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsAnimGroupPlaying[1] = { | static ParamInfo kParams_CmdIsAnimGroupPlaying[1] = { | ||
{ "anim group", | { "anim group", kParamType_AnimationGroup, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdAnimPathIncludes[1] = { | static ParamInfo kParams_CmdAnimPathIncludes[1] = { | ||
Line 3,149: | Line 3,150: | ||
}; | }; | ||
static ParamInfo kParams_CmdIsSpellHostile[1] = { | static ParamInfo kParams_CmdIsSpellHostile[1] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetSpellHostile[2] = { | static ParamInfo kParams_CmdSetSpellHostile[2] = { | ||
{ "spell", | { "spell", kParamType_SpellItem, 0 }, | ||
{ "bool", kParamType_Integer, 0 } | { "bool", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 3,492: | Line 3,493: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetFirstRefInCell[4] = { | static ParamInfo kParams_CmdGetFirstRefInCell[4] = { | ||
{ "cell", | { "cell", kParamType_Cell, 0 }, | ||
{ "form type", kParamType_Integer, 1 }, | { "form type", kParamType_Integer, 1 }, | ||
{ "cell depth", kParamType_Integer, 1 }, | { "cell depth", kParamType_Integer, 1 }, | ||
Line 3,498: | Line 3,499: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNumRefsInCell[4] = { | static ParamInfo kParams_CmdGetNumRefsInCell[4] = { | ||
{ "cell", | { "cell", kParamType_Cell, 0 }, | ||
{ "form type", kParamType_Integer, 1 }, | { "form type", kParamType_Integer, 1 }, | ||
{ "cell depth", kParamType_Integer, 1 }, | { "cell depth", kParamType_Integer, 1 }, | ||
Line 3,552: | Line 3,553: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetRaceAlias[3] = { | static ParamInfo kParams_CmdSetRaceAlias[3] = { | ||
{ "race", | { "race", kParamType_Race, 0 }, | ||
{ "alias", | { "alias", kParamType_Race, 0 }, | ||
{ "bEnableAlias", kParamType_Integer, 1 } | { "bEnableAlias", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetRaceVoice[3] = { | static ParamInfo kParams_CmdSetRaceVoice[3] = { | ||
{ "race", | { "race", kParamType_Race, 0 }, | ||
{ "alias", | { "alias", kParamType_Race, 0 }, | ||
{ "bEnableAlias", kParamType_Integer, 1 } | { "bEnableAlias", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetRacePlayable[2] = { | static ParamInfo kParams_CmdSetRacePlayable[2] = { | ||
{ "race", | { "race", kParamType_Race, 0 }, | ||
{ "bool", kParamType_Integer, 1 } | { "bool", kParamType_Integer, 1 } | ||
}; | }; | ||
Line 3,582: | Line 3,583: | ||
}; | }; | ||
static ParamInfo kParams_CmdSetProjectileSource[1] = { | static ParamInfo kParams_CmdSetProjectileSource[1] = { | ||
{ "actor reference", | { "actor reference", kParamType_Actor, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetArrowProjectileEnchantment[1] = { | static ParamInfo kParams_CmdSetArrowProjectileEnchantment[1] = { | ||
{ "enchantment", | { "enchantment", kParamType_MagicItem, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetArrowProjectileBowEnchantment[1] = { | static ParamInfo kParams_CmdSetArrowProjectileBowEnchantment[1] = { | ||
{ "enchantment", | { "enchantment", kParamType_MagicItem, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdSetArrowProjectilePoison[1] = { | static ParamInfo kParams_CmdSetArrowProjectilePoison[1] = { | ||
Line 3,623: | Line 3,624: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthFactionRankName[3] = { | static ParamInfo kParams_CmdGetNthFactionRankName[3] = { | ||
{ "faction", | { "faction", kParamType_Faction, 0 }, | ||
{ "rank", kParamType_Integer, 0 }, | { "rank", kParamType_Integer, 0 }, | ||
{ "bFemale", kParamType_Integer, 1 } | { "bFemale", kParamType_Integer, 1 } | ||
}; | }; | ||
static ParamInfo kParams_CmdGetNthEffectItemScriptName[2] = { | static ParamInfo kParams_CmdGetNthEffectItemScriptName[2] = { | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 0 } | { "which effect", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 3,701: | Line 3,702: | ||
{ "variable", kParamType_Float, 1 }, | { "variable", kParamType_Float, 1 }, | ||
{ "variable", kParamType_Float, 1 }, | { "variable", kParamType_Float, 1 }, | ||
{ "faction", | { "faction", kParamType_Faction, 0 }, | ||
{ "rank", kParamType_Integer, 0 }, | { "rank", kParamType_Integer, 0 }, | ||
{ "bFemale", kParamType_Integer, 1 } | { "bFemale", kParamType_Integer, 1 } | ||
Line 3,800: | Line 3,801: | ||
{ "variable", kParamType_Float, 1 }, | { "variable", kParamType_Float, 1 }, | ||
{ "variable", kParamType_Float, 1 }, | { "variable", kParamType_Float, 1 }, | ||
{ "magic item", | { "magic item", kParamType_MagicItem, 0 }, | ||
{ "which effect", kParamType_Integer, 0 } | { "which effect", kParamType_Integer, 0 } | ||
}; | }; | ||
Line 3,834: | Line 3,835: | ||
}; | }; | ||
static ParamInfo kParams_CmdGetCursorPos[1] = { | static ParamInfo kParams_CmdGetCursorPos[1] = { | ||
{ "axis", | { "axis", kParamType_Axis, 0 } | ||
}; | }; | ||
static ParamInfo kParams_CmdIsFlora[1] = { | static ParamInfo kParams_CmdIsFlora[1] = { | ||
Line 4,172: | Line 4,173: | ||
{ "int", kParamType_InventoryObject, 0 } | { "int", kParamType_InventoryObject, 0 } | ||
}; | }; | ||
#endif | |||
</pre> | </pre> |