# TPP Lua 5.1 function reference — bucket 7 of 13 Entries **TppMission.IsEnableMissionObjective(e)** … **TppMotherBaseManagement.GetResourceUsableCount…**, sorted case-insensitively. - Earlier? Previous bucket ends at `TppMission.IsEnableAnyParentMissionObjective(n…`. - Later? Next bucket starts at `TppMotherBaseManagement.GetRewardLeagueRank() …`. Source: `dumps:TPP_Lua_Reference.txt` ``` TppMission.IsEnableMissionObjective(e) True if enable mission objective. (inferred from name) used 18x in game scripts | defined in TppMission.lua if TppMission.IsEnableMissionObjective("default_area_codetalker") == false then Fox.Log("s10130_mission ZRSQuestioning Start!!") s10130_radio.ZRSQuestioning() end .../story/s10130/s10130_sequence.lua:2092 if TppMission.IsEnableMissionObjective("target_detail") then TppRadio.Play({ "s0081_oprg4010" }) elseif TppMission.IsEnableMissionObjective("prisonbreak_area") then -- ... end .../story/s10081/s10081_sequence.lua:974 TppMission.IsFOBMission(e) True if fob mission. (inferred from name) used 38x in game scripts | defined in TppMission.lua if TppMission.IsFOBMission(vars.missionCode) and (vars.fobSneakMode == FobMode.MODE_SHAM) then return end .../script/lib/TppHero.lua:224 Script Library Layer (Tpp*.lua) 345 if n(o, { id = "IsDD" }) and (not TppMission.IsFOBMission(vars.missionCode)) then if (i ~= nil) and (t(i, DeadMessageFlag.FIRE) ~= 0) then e.SetAndAnnounceHeroicOgrePoint(e.FIRE_KILL_DD_HOSTAGE, "mbstaff_died") -- ... end .../script/lib/TppHero.lua:399 TppMission.IsFreeMission(e) True if free mission. (inferred from name) used 19x in game scripts | defined in TppMission.lua if TppMission.IsFreeMission(vars.missionCode) then Gimmick.EspionageBoxOnGround(false) else Gimmick.EspionageBoxOnGround(true) end .../script/lib/TppGimmick.lua:202 if TppMission.IsHelicopterSpace(vars.missionCode) or TppMission.IsFreeMission(vars.missionCode) then mvars.res_noResult = true end .../script/lib/TppResult.lua:1354 TppMission.IsGameOver() True if game over. (inferred from name) used 3x in game scripts | defined in TppMission.lua if TppMission.IsGameOver() == true then TppSequence.SetNextSequence("Seq_WaitSyncSVarsOnGameOver", { isExecGameOver = true }) else TppSequence.SetNextSequence("Seq_WaitSyncSVarsOnMissionClear", { isExecMissionClear = true }) end .../online/o50050/o50050_sequence.lua:5865 if TppMission.IsGameOver() then this.SwitchExecByIsGameMode(function() TppMotherBaseManagement.AddMinimumSecurityStaffs({}) -- ... end .../online/o50050/o50050_sequence.lua:3204 TppMission.IsHardMission(e) True if hard mission. (inferred from name) used 10x in game scripts | defined in TppMission.lua if TppMission.IsHardMission(vars.missionCode) then local e = TppMission.GetNormalMissionCodeFromHardMission(vars.missionCode) n = (e == i) end .../script/lib/TppGimmick.lua:222 if TppMission.IsHardMission(n) then n = TppMission.GetNormalMissionCodeFromHardMission(n) end .../script/lib/TppGimmick.lua:375 TppMission.IsHelicopterSpace() True if helicopter space. (inferred from name) used 38x in game scripts | defined in TppStory.lua if TppMission.IsHelicopterSpace(vars.missionCode) or vars.missionCode == 30150 then MotherBaseConstructConnector.ClearVariableGimmickList() TppGimmick.GetMBItemAssetTable = nil -- ... end .../location/mtbs/mtbs_item.lua:31 if TppMission.IsHelicopterSpace(o) then return end Script Library Layer (Tpp*.lua) 346 .../script/lib/TppEneFova.lua:814 TppMission.IsMatchStartLocation(e) True if match start location. (inferred from name) defined in TppMission.lua TppMission.IsMbFreeMissions(e) True if mb free missions. (inferred from name) used 1x in game scripts | defined in TppMission.lua if TppMission.IsMbFreeMissions(vars.missionCode) then if vars.missionCode == 30050 then table.insert(e, 2, GamePauseMenu.RESTART_FROM_MISSION_START) -- ... end .../script/lib/TppUI.lua:978 TppMission.IsMissionStart() True if mission start. (inferred from name) used 51x in game scripts | defined in TppMission.lua if (gvars.heli_missionStartRoute ~= 0) or (not TppMission.IsMissionStart()) then mvars.gim_shownEspionageBox = false Gimmick.EspionageBoxAllInvisible(true) -- ... end .../script/lib/TppGimmick.lua:210 if not TppMission.IsMissionStart() then return false end .../script/lib/TppDemo.lua:1331 TppMission.IsNeedSetMissionStartPositionToClusterPosition() True if need set mission start position to cluster position. (inferred from name) used 1x in game scripts | defined in TppMission.lua if TppMission.IsNeedSetMissionStartPositionToClusterPosition() then TppMission.SetMissionStartPositionMtbsClusterPosition() e.StageBlockCurrentPosition(true) else TppCheckPoint.SetCheckPointPosition() end .../script/lib/TppMain.lua:288 TppMission.IsPerfectStealthMission() True if perfect stealth mission. (inferred from name) defined in TppMission.lua TppMission.IsStartFromFreePlay() True if start from free play. (inferred from name) used 8x in game scripts | defined in TppMission.lua if TppMission.IsStartFromFreePlay() then table.insert(e, 3, GamePauseMenu.ABORT_MISSION) end .../script/lib/TppUI.lua:1016 if TppMission.IsStartFromFreePlay() == true then Fox.Log("### Player Start Game From FreePlay ... nothing Done!! ###") else Fox.Log("### Player Start Game From ??? Must Check !! ... nothing Done !! ###") end .../story/s10054/s10054_sequence.lua:2639 TppMission.IsStartFromHelispace() True if start from helispace. (inferred from name) used 34x in game scripts | defined in TppMission.lua Script Library Layer (Tpp*.lua) 347 if not TppMission.IsStartFromHelispace() then return false end .../script/lib/TppDemo.lua:1357 if TppMission.IsStartFromHelispace() == true then Fox.Log("### Player Start Game From Helicopter ###") if svars.isTelopEnd == true then -- ... end .../story/s10054/s10054_sequence.lua:2632 TppMission.IsStoryMission(e) True if story mission. (inferred from name) used 3x in game scripts | defined in TppMission.lua if TppMission.IsStoryMission(vars.missionCode) then for n, t in ipairs(TppDefine.QUEST_DEFINE) do if not e.CanActiveQuestInMission(vars.missionCode, t) then -- ... end .../script/lib/TppQuest.lua:3219 if not TppMission.IsStoryMission(t) then return true else -- ... end .../script/lib/TppQuest.lua:3246 TppMission.IsSubsistenceMission() True if subsistence mission. (inferred from name) used 3x in game scripts | defined in TppMission.lua if TppMission.IsSubsistenceMission() then e.SetInitWeapons(TppDefine.CYPR_PLAYER_INITIAL_WEAPON_TABLE) e.SetInitItems(TppDefine.CYPR_PLAYER_INITIAL_ITEM_TABLE) -- ... end .../script/lib/TppPlayer.lua:2440 if TppMission.IsSubsistenceMission() == false then TppRadio.Play("f1000_rtrg1470", { delayTime = "mid", isEnqueue = true }) end .../story/s10043/s10043_radio.lua:187 TppMission.IsSysMissionId(e) True if sys mission id. (inferred from name) used 2x in game scripts | defined in TppMission.lua if TppMission.IsSysMissionId(vars.missionCode) then return false end .../script/lib/TppEnemy.lua:4855 if TppMission.IsSysMissionId(e) then return end .../script/lib/TppStory.lua:2551 TppMission.KillDyingQuiet() defined in TppMission.lua TppMission.Load(n, i, e) used 4x in game scripts | defined in TppMission.lua TppMission.Load(vars.missionCode, i, { showLoadingTips = false }) .../script/lib/TppVarInit.lua:37 TppMission.Load(vars.locationCode, nil, { force = true, showLoadingTips = false }) .../script/lib/TppVarInit.lua:268 Script Library Layer (Tpp*.lua) 348 TppMission.LoadForMissionAbort() Loads for mission abort. (inferred from name) defined in TppMission.lua TppMission.LoadWithChunkCheck() Loads with chunk check. (inferred from name) defined in TppMission.lua TppMission.Messages() defined in TppMission.lua TppMission.MessagesWhileLoading() defined in TppMission.lua TppMission.MissionClearOrAbortOnHeliDoorClosed() defined in TppMission.lua TppMission.MissionFinalize(n) used 62x in game scripts | defined in TppMission.lua TppMission.MissionFinalize({ isNoFade = true }) .../heli/common/heli_common_sequence.lua:647 TppMission.MissionFinalize({ showLoadingTips = false }) .../story/s10151/s10151_sequence.lua:1807 TppMission.MissionGameEnd(n) used 125x in game scripts | defined in TppMission.lua TppMission.MissionGameEnd({ loadStartOnResult = false }) .../story/s10030/s10030_sequence.lua:580 TppMission.MissionGameEnd({ delayTime = TIME_CLER_RADIO_WAIT_WITH_VIP, loadStartOnResult = true }) .../story/s10036/s10036_sequence.lua:363 TppMission.OnAbortMissionPreparation() used 2x in game scripts | defined in TppMission.lua .../heli/common/heli_common_sequence.lua:1227 TppMission.OnAllocate(n) used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:127 TppMission.OnCanMissionClear() defined in TppMission.lua TppMission.OnChangeFobDefenceGameOver() defined in TppMission.lua TppMission.OnChangeSVars(n, i) defined in TppMission.lua TppMission.OnEndFadeOutMissionAbort() defined in TppMission.lua TppMission.OnEndMissionPreparation(n, i) used 1x in game scripts | defined in TppMission.lua TppMission.OnEndMissionPreparation( mvars.heliSpace_selectedDeployTime, mvars.heliSequence_clusterCategory ) .../heli/common/heli_common_sequence.lua:2218 Script Library Layer (Tpp*.lua) 349 TppMission.OnEndMissionReward() used 1x in game scripts | defined in TppMission.lua .../online/o50050/o50050_sequence.lua:3234 TppMission.OnEndResultBlockLoad() defined in TppMission.lua TppMission.OnFinishUpdateObjectiveRadio(n) defined in TppMission.lua TppMission.OnMessage(r, a, s, i, n, t, o) used 1x in game scripts | defined in TppMission.lua TppMission.OnMessage(n("Radio"), n("Finish"), n(i), nil, nil, nil, e) .../script/lib/TppRadio.lua:789 TppMission.OnMessageWhileLoading(s, i, t, o, r, a) defined in TppMission.lua TppMission.OnMissionGameEndFadeOutFinish() defined in TppMission.lua TppMission.OnMissionGameEndFadeOutFinish2nd() defined in TppMission.lua TppMission.OnMissionStart() used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:503 TppMission.OnPlayerDead(i, n) defined in TppMission.lua TppMission.OnPlayerFultoned() defined in TppMission.lua TppMission.OnReload(n) defined in TppMission.lua TppMission.OutsideOfHotZoneCount() defined in TppMission.lua TppMission.ParseMissionName(e) used 5x in game scripts | defined in TppMission.lua e = TppMission.ParseMissionName(n.main) .../script/lib/TppStory.lua:1578 local n = TppMission.ParseMissionName(n) .../script/lib/TppStory.lua:1917 TppMission.PlayCommonRadioOnInsideOfHotZone() Plays common radio on inside of hot zone. (inferred from name) defined in TppMission.lua TppMission.PlayCommonRadioOnRideHelicopter() Plays common radio on ride helicopter. (inferred from name) defined in TppMission.lua TppMission.PostMissionOrderBoxPositionToBuddyDog() used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:441 Script Library Layer (Tpp*.lua) 350 TppMission.RegiserMissionSystemCallback(n) used 23x in game scripts | defined in TppMission.lua TppMission.RegiserMissionSystemCallback(systemCallbackTable) .../heli/common/heli_common_sequence.lua:151 TppMission.RegistDiscoveryGameOver() used 6x in game scripts | defined in TppMission.lua .../story/s10033/s10033_sequence.lua:538 TppMission.RegisterMissionID() Registers mission id. (inferred from name) defined in TppMission.lua TppMission.RegisterMissionSystemCallback(n) Registers mission system callback. (inferred from name) used 56x in game scripts | defined in TppMission.lua TppMission.RegisterMissionSystemCallback({ OnAddStaffsFromTempBuffer = e.OnAddStaffsFromTempBuffer }) .../script/lib/TppFreeHeliRadio.lua:182 TppMission.RegisterMissionSystemCallback(systemCallbackTable) .../free/f30150/f30150_sequence.lua:175 TppMission.Reload(n) used 76x in game scripts | defined in TppMission.lua TppMission.Reload({ missionPackLabelName = "PS3Store", showLoadingTips = false, }) .../heli/common/heli_common_sequence.lua:858 TppMission.RequestLoad(n, i, e) Requests load. (inferred from name) used 1x in game scripts | defined in TppMission.lua TppMission.RequestLoad(vars.missionCode, i, { showLoadingTips = false }) .../script/lib/TppVarInit.lua:39 TppMission.ReserveForcePlayerPositionToMbDemoCenter() used 2x in game scripts | defined in TppMission.lua .../story/s10240/s10240_sequence.lua:651 TppMission.ReserveGameOver(i, n, s) used 123x in game scripts | defined in TppMission.lua TppMission.ReserveGameOver( TppDefine.GAME_OVER_TYPE.OUTSIDE_OF_MISSION_AREA, TppDefine.GAME_OVER_RADIO.OUT_OF_MISSION_AREA ) .../online/o50050/o50050_sequence.lua:2568 TppMission.ReserveGameOver(TppDefine.GAME_OVER_TYPE.FOB_FULTONED, TppDefine.GAME_OVER_RADIO.OUT_OF_MISSION_AREA) .../online/o50050/o50050_sequence.lua:4783 TppMission.ReserveGameOverOnPlayerKillChild(n) used 3x in game scripts | defined in TppMission.lua .../script/lib/TppEnemy.lua:6090 TppMission.ReserveMissionClear(n) used 94x in game scripts | defined in TppMission.lua Script Library Layer (Tpp*.lua) 351 TppMission.ReserveMissionClear({ missionClearType = TppDefine.MISSION_CLEAR_TYPE.FREE_PLAY_ORDER_BOX_DEMO, nextMissionId = svars.acceptMissionId, }) .../script/mission/order_box_block.lua:31 TppMission.ReserveMissionClear({ nextMissionId = 10050 }) .../free/f30010/f30010_sequence.lua:516 TppMission.ReserveMissionClearOnOutOfHotZone() defined in TppMission.lua TppMission.ReserveMissionClearOnRideOnFultonContainer() defined in TppMission.lua TppMission.ReserveMissionClearOnRideOnHelicopter() defined in TppMission.lua TppMission.ReserveMissionStartRecoverSoundDemo() defined in TppMission.lua TppMission.ResetEmegerncyMissionSetting() Resets emegerncy mission setting. (inferred from name) used 2x in game scripts | defined in TppMission.lua .../story/s10115/s10115_sequence.lua:1184 TppMission.ResetIsStartFromFreePlay() Resets is start from free play. (inferred from name) used 11x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:554 TppMission.ResetIsStartFromHelispace() Resets is start from helispace. (inferred from name) used 8x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:553 TppMission.ResetMBFreeStartPositionToCommand() Resets mb free start position to command. (inferred from name) defined in TppMission.lua TppMission.ResetMissionClearState() Resets mission clear state. (inferred from name) used 8x in game scripts | defined in TppMission.lua .../free/f30050/f30050_sequence.lua:690 TppMission.ResetNeedWaitMissionInitialize() Resets need wait mission initialize. (inferred from name) defined in TppMission.lua TppMission.ResetQuietEquipIfUndevelop(...) Resets quiet equip if undevelop. (inferred from name) defined in TppMission.lua:3866 TppMission.RestartMission(n) used 2x in game scripts | defined in TppMission.lua TppMission.RestartMission() .../heli/common/heli_common_sequence.lua:468 Script Library Layer (Tpp*.lua) 352 TppMission.RestoreShowMissionObjective() used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:428 TppMission.ResumeMbSaveCoroutine() defined in TppMission.lua TppMission.ReturnToMission(n) used 3x in game scripts | defined in TppMission.lua TppMission.ReturnToMission() .../script/lib/TppException.lua:132 TppMission.ReturnToTitle() defined in TppMission.lua TppMission.SafeStopSettingOnMissionReload(n) used 3x in game scripts | defined in TppMission.lua TppMission.SafeStopSettingOnMissionReload() .../script/lib/TppDebug.lua:818 TppMission.SeizeReliefVehicleOnAbort() defined in TppMission.lua TppMission.SeizeReliefVehicleOnClear() defined in TppMission.lua TppMission.SeizeReliefVehicleOnForceGoToMb() defined in TppMission.lua TppMission.SelectNextMissionHeliStartRoute(n, i, t) used 1x in game scripts | defined in TppMission.lua TppMission.SelectNextMissionHeliStartRoute( mvars.heliSequence_nextMissionCode, mvars.heliSequence_heliRoute, mvars.heliSequence_startFobSneaking ) .../heli/common/heli_common_sequence.lua:882 TppMission.SetFOBMissionFlag() Sets fob mission flag. (inferred from name) used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:110 TppMission.SetFobPlayerStartPoint() Sets fob player start point. (inferred from name) used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:287 TppMission.SetHelicopterDoorOpenTime(e) Sets helicopter door open time. (inferred from name) used 8x in game scripts | defined in TppMission.lua TppMission.SetHelicopterDoorOpenTime(HELI_START_TIME) .../story/s10033/s10033_sequence.lua:1045 TppMission.SetHelicopterDoorOpenTime(MISSION_START_HELI_DOOR_OPEN_TIME) .../story/s10041/s10041_sequence.lua:2069 TppMission.SetHelicopterMissionStartPosition(s, i, n, e) Sets helicopter mission start position. (inferred from name) defined in TppMission.lua Script Library Layer (Tpp*.lua) 353 TppMission.SetHeroicAndOgrePointInSlot(...) Sets heroic and ogre point in slot. (inferred from name) defined in TppMission.lua:4000 TppMission.SetIsStartFromFreePlay() Sets is start from free play. (inferred from name) used 3x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:637 TppMission.SetIsStartFromHelispace() Sets is start from helispace. (inferred from name) used 6x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:574 TppMission.SetMissionClearState(e) Sets mission clear state. (inferred from name) defined in TppMission.lua TppMission.SetMissionObjectiveEnable(e, n) Sets mission objective enable. (inferred from name) defined in TppMission.lua TppMission.SetMissionObjectives(i, n, e) Sets mission objectives. (inferred from name) defined in TppMission.lua TppMission.SetMissionOrderBoxPosition() Sets mission order box position. (inferred from name) used 4x in game scripts | defined in TppMission.lua TppMission.SetMissionOrderBoxPosition(Tpp._DEBUG_gvars.mis_orderBoxName) .../script/lib/TppDebug.lua:79 local e = TppMission.SetMissionOrderBoxPosition() .../script/lib/TppVarInit.lua:219 TppMission.SetMissionStartPositionMtbsClusterPosition() Sets mission start position mtbs cluster position. (inferred from name) used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:289 TppMission.SetNeedWaitMissionInitialize() Sets need wait mission initialize. (inferred from name) defined in TppMission.lua TppMission.SetNextMissionCodeForMissionClear(e) Sets next mission code for mission clear. (inferred from name) defined in TppMission.lua TppMission.SetNextMissionStartHeliRoute(e) Sets next mission start heli route. (inferred from name) defined in TppMission.lua TppMission.SetPlayRecordClearInfo() Sets play record clear info. (inferred from name) defined in TppMission.lua TppMission.SetSortieBuddy() Sets sortie buddy. (inferred from name) used 1x in game scripts | defined in TppMission.lua Script Library Layer (Tpp*.lua) 354 .../script/lib/TppMain.lua:222 TppMission.ShowAnnounceLogOnFadeOut(e) Shows announce log on fade out. (inferred from name) defined in TppMission.lua TppMission.ShowAnnounceLogOnGameStart() Shows announce log on game start. (inferred from name) defined in TppMission.lua TppMission.ShowGameOverMenu(i) Shows game over menu. (inferred from name) used 71x in game scripts | defined in TppMission.lua TppMission.ShowGameOverMenu({ delayTime = TppDefine.GAME_OVER_TARGET_DEAD_DEMO_TIME }) .../story/s10010/s10010_sequence.lua:1120 TppMission.ShowGameOverMenu({ delayTime = TppDefine.GAME_OVER_S10030_SHOT_OCELOT_BY_TULLET_TIME }) .../story/s10030/s10030_sequence.lua:601 TppMission.ShowMissionGameEndAnnounceLog() Shows mission game end announce log. (inferred from name) used 1x in game scripts | defined in TppMission.lua .../story/s10260/s10260_sequence.lua:2313 TppMission.ShowMissionResult() Shows mission result. (inferred from name) used 16x in game scripts | defined in TppMission.lua .../online/o50050/o50050_sequence.lua:3210 TppMission.ShowMissionReward() Shows mission reward. (inferred from name) used 33x in game scripts | defined in TppMission.lua .../script/lib/TppMbFreeDemo.lua:1594 TppMission.ShowStealthAssistPopup() Shows stealth assist popup. (inferred from name) defined in TppMission.lua TppMission.ShowUpdateObjective(n) Shows update objective. (inferred from name) defined in TppMission.lua TppMission.StartBossBattle() Starts boss battle. (inferred from name) used 28x in game scripts | defined in TppMission.lua .../story/s10050/s10050_sequence.lua:1416 TppMission.StartEmergencyMissionTimer(i) Starts emergency mission timer. (inferred from name) used 1x in game scripts | defined in TppMission.lua TppMission.StartHelicopterDoorOpenTimer() Starts helicopter door open timer. (inferred from name) defined in TppMission.lua Script Library Layer (Tpp*.lua) 355 TppMission.StartJingleOnHelicopterClear() Starts jingle on helicopter clear. (inferred from name) defined in TppMission.lua TppMission.UnsetFobSneakFlag(n) defined in TppMission.lua TppMission.Update() defined in TppMission.lua TppMission.UpdateAtCanMissionClear(n, o) Updates at can mission clear. (inferred from name) defined in TppMission.lua TppMission.UpdateCheckPoint(e) Updates check point. (inferred from name) used 149x in game scripts | defined in TppMission.lua TppMission.UpdateCheckPoint({ ignoreAlert = true, atCurrentPosition = true }) .../script/lib/TppDebug.lua:562 TppMission.UpdateCheckPoint(checkPointSetiings) .../story/s10010/s10010_sequence.lua:4517 TppMission.UpdateCheckPointAtCurrentPosition() Updates check point at current position. (inferred from name) used 52x in game scripts | defined in TppMission.lua .../script/lib/TppPlayer.lua:2902 TppMission.UpdateForMissionLoad() Updates for mission load. (inferred from name) defined in TppMission.lua TppMission.UpdateObjective(n) Updates objective. (inferred from name) used 1040x in game scripts | defined in TppMission.lua TppMission.UpdateObjective({ objectives = { "task2_complete" } }) .../story/s10030/s10030_radio.lua:1162 TppMission.UpdateObjective({ objectives = { "task0_complete" } }) .../story/s10030/s10030_sequence.lua:1162 TppMission.VarResetOnNewMission() used 3x in game scripts | defined in TppMission.lua .../script/lib/TppVarInit.lua:47 TppMission.VarSaveForMissionAbort() defined in TppMission.lua TppMission.VarSaveOnUpdateCheckPoint(n) used 3x in game scripts | defined in TppMission.lua .../script/lib/TppCheckPoint.lua:227 TppMission.VarSaveOnUpdateCheckPoint() .../story/s10151/s10151_sequence.lua:213 TppMission.WaitFinishMissionEndPresentation() used 1x in game scripts | defined in TppMission.lua .../script/lib/TppMain.lua:116 Script Library Layer (Tpp*.lua) 356 TppMotherBaseManagement.ActivateAutoAssign() TppMotherBaseManagement.AddBonusPopupFromBonusPopupFlagStaffs() Adds bonus popup from bonus popup flag staffs. (inferred from name) used 1x in game scripts .../script/lib/TppMission.lua:1168 TppMotherBaseManagement.AddCassetteTapeTrack(string) Adds cassette tape track. (inferred from name) used 2x in game scripts TppMotherBaseManagement.AddCassetteTapeTrack(e) .../script/lib/TppVarInit.lua:172 TppMotherBaseManagement.AddCassetteTapeTrack(t) .../script/lib/TppCassette.lua:174 TppMotherBaseManagement.AddCassetteTapeTrackByIndex(number) Adds cassette tape track by index. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddCassetteTapeTrackByIndex(_) .../script/lib/TppCassette.lua:218 TppMotherBaseManagement.AddGmp() Adds (or subtracts) GMP. used 3x in game scripts TppMotherBaseManagement.AddGmp({ gmp = t }) .../script/lib/TppTerminal.lua:349 TppMotherBaseManagement.AddGmp({ gmp = svars.fobGmpAdding_OF }) .../online/o50050/o50050_sequence.lua:5245 TppMotherBaseManagement.AddHeroicPoint() Adds heroic point. (inferred from name) used 3x in game scripts TppMotherBaseManagement.AddHeroicPoint({ heroicPoint = e }) .../script/lib/TppHero.lua:197 TppMotherBaseManagement.AddHeroicPoint({ heroicPoint = hPoint }) .../online/o50050/o50050_sequence.lua:4705 TppMotherBaseManagement.AddHeroicPointAndGmpByCageAnimal() Adds heroic point and gmp by cage animal. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddHeroicPointAndGmpByCageAnimal({ heroicPoint = e, gmp = a, isAnnounce = true }) .../script/lib/TppPlayer.lua:2936 TppMotherBaseManagement.AddMinimumSecurityStaffs() Adds minimum security staffs. (inferred from name) used 5x in game scripts TppMotherBaseManagement.AddMinimumSecurityStaffs({}) Mother Base Management 218 .../online/o50050/o50050_sequence.lua:3206 .../script/lib/TppTerminal.lua:479 TppMotherBaseManagement.AddOgrePoint() Adds ogre point. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddOgrePoint({ ogrePoint = e }) .../script/lib/TppHero.lua:204 TppMotherBaseManagement.AddOgreUserVolunteerStaffs() -> value Adds ogre user volunteer staffs. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddOgreUserVolunteerStaffs(e) .../script/lib/TppTerminal.lua:476 TppMotherBaseManagement.AddPoolRewardsFob() Adds pool rewards fob. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddPoolRewardsFob({ leagueRank = rank, clusterCategory = cluster, }) .../online/o50050/o50050_sequence.lua:3848 TppMotherBaseManagement.AddStaffMeritMedalPointByStaffId() Adds staff merit medal point by staff id. (inferred from name) TppMotherBaseManagement.AddStaffsFromTempStaffBuffer() Adds staffs from temp staff buffer. (inferred from name) used 1x in game scripts .../script/lib/TppTerminal.lua:404 TppMotherBaseManagement.AddTempBuddy() Adds temp buddy. (inferred from name) used 1x in game scripts .../script/lib/TppTerminal.lua:1424 TppMotherBaseManagement.AddTempClashedPlacementCount() Adds temp clashed placement count. (inferred from name) used 5x in game scripts TppMotherBaseManagement.AddTempClashedPlacementCount({ resourceId = TppMotherBaseManagementConst.RESOURCE_ID_ANTI_AIR_GATLING_GUN_WEST, }) .../online/o50050/o50050_sequence.lua:4443 TppMotherBaseManagement.AddTempCorpse() Adds temp corpse. (inferred from name) used 1x in game scripts .../script/lib/TppTerminal.lua:1347 TppMotherBaseManagement.AddTempDataBase() Adds temp data base. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempDataBase({ dataBaseId = e }) .../script/lib/TppTerminal.lua:1720 Mother Base Management 219 TppMotherBaseManagement.AddTempDataBaseAnimal() Adds temp data base animal. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempDataBaseAnimal({ dataBaseId = e, areaName = t }) .../script/lib/TppTerminal.lua:1723 TppMotherBaseManagement.AddTempGimmickResource() Adds temp gimmick resource. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempGimmickResource({ gimmickName = e }) .../script/lib/TppTerminal.lua:1397 TppMotherBaseManagement.AddTempGmp() Adds temp gmp. (inferred from name) TppMotherBaseManagement.AddTempLifesavingLog() Adds temp lifesaving log. (inferred from name) used 8x in game scripts TppMotherBaseManagement.AddTempLifesavingLog({ heroicPoint = 240, subOgrePoint = 240 }) .../script/lib/TppHero.lua:126 TppMotherBaseManagement.AddTempLifesavingLog({ heroicPoint = 120, subOgrePoint = 120 }) .../script/lib/TppHero.lua:128 TppMotherBaseManagement.AddTempLostMyPlayerStaff() Adds temp lost my player staff. (inferred from name) used 3x in game scripts TppMotherBaseManagement.AddTempLostMyPlayerStaff({ staffId = staffId }) .../online/o50050/o50050_sequence.lua:2874 TppMotherBaseManagement.AddTempPuppy() Adds temp puppy. (inferred from name) used 1x in game scripts .../script/lib/TppTerminal.lua:1427 TppMotherBaseManagement.AddTempResource() Adds temp resource. (inferred from name) used 3x in game scripts TppMotherBaseManagement.AddTempResource({ resourceId = e, count = 1, visual = n, owner = t }) .../script/lib/TppTerminal.lua:1390 TppMotherBaseManagement.AddTempResource({ resourceId = t, count = e }) .../script/lib/TppTerminal.lua:1717 TppMotherBaseManagement.AddTempStaffFulton() Adds temp staff fulton. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempStaffFulton(t) .../script/lib/TppTerminal.lua:1707 TppMotherBaseManagement.AddTempStaffHeli() Adds temp staff heli. (inferred from name) TppMotherBaseManagement.AddTempStaffRecover() Adds temp staff recover. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempStaffRecover({}) .../online/o50050/o50050_sequence.lua:3873 Mother Base Management 220 TppMotherBaseManagement.AddTempStaffReward() Adds temp staff reward. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddTempStaffReward({ staffId = staffId, gameObjectId = id, tempStaffStatus = 1, lang = 0 }) .../online/o50050/o50050_sequence.lua:3869 TppMotherBaseManagement.AddVolunteerStaffs() -> value Adds volunteer staffs. (inferred from name) used 1x in game scripts TppMotherBaseManagement.AddVolunteerStaffs(e) .../script/lib/TppTerminal.lua:474 TppMotherBaseManagement.AwardedHonorMedalToPlayerStaff() used 2x in game scripts .../online/o50050/o50050_sequence.lua:4569 TppMotherBaseManagement.AwardedMeritMedalPointToPlayerStaff() used 3x in game scripts TppMotherBaseManagement.AwardedMeritMedalPointToPlayerStaff({ clearRank = t }) .../script/lib/TppResult.lua:322 TppMotherBaseManagement.AwardedMeritMedalPointToPlayerStaff({ clearRank = TppDefine.MISSION_CLEAR_RANK.S }) .../online/o50050/o50050_sequence.lua:2952 TppMotherBaseManagement.BanHeuy() TppMotherBaseManagement.BaseFobToMbsParam() used 2x in game scripts .../script/lib/TppLocation.lua:89 TppMotherBaseManagement.BaseSvarsToMbsParam() used 1x in game scripts TppMotherBaseManagement.BaseSvarsToMbsParam({ base = t }) .../script/lib/TppLocation.lua:86 TppMotherBaseManagement.CalcKikongoStaffCount() -> value TppMotherBaseManagement.CanOpenS10081() -> value True if open s10081 is possible. (inferred from name) used 2x in game scripts if TppMotherBaseManagement.CanOpenS10081() then TppMotherBaseManagement.LockedStaffS10081() end .../script/lib/TppMission.lua:1344 TppMotherBaseManagement.CanOpenS10091() -> value True if open s10091 is possible. (inferred from name) used 2x in game scripts if TppMotherBaseManagement.CanOpenS10091() then TppMotherBaseManagement.LockedStaffsS10091() end .../script/lib/TppMission.lua:1339 TppMotherBaseManagement.CanOpenS10115() -> value True if open s10115 is possible. (inferred from name) used 2x in game scripts Mother Base Management 221 if TppMotherBaseManagement.CanOpenS10115({ section = "Develop" }) then TppMotherBaseManagement.LockedStaffsS10115({ section = "Develop" }) end .../script/lib/TppMission.lua:1349 TppMotherBaseManagement.CanOpenS10130() -> value True if open s10130 is possible. (inferred from name) used 1x in game scripts if TppMotherBaseManagement.CanOpenS10130() then TppMotherBaseManagement.LockedStaffsS10130() end .../script/lib/TppStory.lua:47 TppMotherBaseManagement.CanOpenS10240() -> value True if open s10240 is possible. (inferred from name) used 1x in game scripts local i = TppMotherBaseManagement.CanOpenS10240() .../script/lib/TppStory.lua:1761 TppMotherBaseManagement.ChangeStaffEnmityAndSection() used 1x in game scripts TppMotherBaseManagement.ChangeStaffEnmityAndSection({ staffId = staffId, enmity = 15 }) .../story/s10086/s10086_sequence.lua:1761 TppMotherBaseManagement.CheckMisogi(...) Checks misogi. (inferred from name) TppMotherBaseManagement.ClearAllStaffBonusPopupFlag() Clears all staff bonus popup flag. (inferred from name) used 1x in game scripts .../script/lib/TppVarInit.lua:226 TppMotherBaseManagement.ClearAllStaffNew() Clears all staff new. (inferred from name) TppMotherBaseManagement.ClearEquipDeveloped() Clears equip developed. (inferred from name) used 1x in game scripts .../story/s10030/s10030_sequence.lua:622 TppMotherBaseManagement.ClearTempBuffer() Clears temp buffer. (inferred from name) used 13x in game scripts .../online/o50050/o50050_sequence.lua:2903 Fox.Log("TppMotherBaseManagement.ClearTempBuffer() (GameOver, Host, Actual, Abort)") .../online/o50050/o50050_sequence.lua:2904 TppMotherBaseManagement.CompletedClusterBuild() used 1x in game scripts TppMotherBaseManagement.CompletedClusterBuild({ base = "MotherBase", category = "Develop", grade = 1 }) .../script/lib/TppStory.lua:1673 TppMotherBaseManagement.CorrectGmp() -> value used 1x in game scripts return TppMotherBaseManagement.CorrectGmp({ gmp = e }) .../script/lib/TppTerminal.lua:373 Mother Base Management 222 TppMotherBaseManagement.CreateStaffId() -> number Creates staff id. (inferred from name) TppMotherBaseManagement.DataBaseIdToAnimalGroup() -> value used 1x in game scripts local a = TppMotherBaseManagement.DataBaseIdToAnimalGroup({ dataBaseId = n }) .../script/lib/TppTerminal.lua:1453 TppMotherBaseManagement.DayElapse() TppMotherBaseManagement.DeactivateAutoAssign() TppMotherBaseManagement.DEBUG_DirectAddRandomStaffs(...) used 2x in game scripts TppMotherBaseManagement.DEBUG_DirectAddRandomStaffs({ count = e }) .../script/lib/TppDebug.lua:190 TppMotherBaseManagement.DEBUG_DirectAddRandomStaffs({ count = 3500 }) .../script/lib/TppStory.lua:2379 TppMotherBaseManagement.DEBUG_DumpMbsParam(...) used 1x in game scripts TppMotherBaseManagement.DEBUG_DumpMbsParam() .../online/o50050/o50050_sequence.lua:2731 TppMotherBaseManagement.DirectAddDataBase() used 3x in game scripts TppMotherBaseManagement.DirectAddDataBase({ dataBaseId = t, isNew = true }) .../script/lib/TppTerminal.lua:435 TppMotherBaseManagement.DirectAddDataBase({ dataBaseId = e, isNew = true }) .../script/lib/TppTerminal.lua:722 TppMotherBaseManagement.DirectAddDataBaseAnimal() used 2x in game scripts TppMotherBaseManagement.DirectAddDataBaseAnimal({ dataBaseId = t, areaNameHash = n, isNew = true }) .../script/lib/TppPlayer.lua:2929 TppMotherBaseManagement.DirectAddDataBaseAnimal({ dataBaseId = a, areaName = n, isNew = true }) .../script/lib/TppPlayer.lua:2964 TppMotherBaseManagement.DirectAddKeyItem() TppMotherBaseManagement.DirectAddResource() used 2x in game scripts TppMotherBaseManagement.DirectAddResource({ resource = n, count = e, isNew = true }) .../script/lib/TppTerminal.lua:1739 TppMotherBaseManagement.DirectAddResource({ resource = "Plant2005", count = 20, isNew = true }) .../script/lib/TppVarInit.lua:174 TppMotherBaseManagement.DirectAddStaff() used 13x in game scripts TppMotherBaseManagement.DirectAddStaff({ staffId = e }) .../script/lib/TppMbFreeDemo.lua:927 TppMotherBaseManagement.DirectAddStaff({ staffId = t, section = "Wait", isNew = true, specialContract = e }) .../script/lib/TppTerminal.lua:2481 TppMotherBaseManagement.DisableKikongoFirst() Disables kikongo first. (inferred from name) used 1x in game scripts Mother Base Management 223 .../script/lib/TppTerminal.lua:587 TppMotherBaseManagement.EnableStaffInitLangKikongo() Enables staff init lang kikongo. (inferred from name) used 1x in game scripts .../script/lib/TppTerminal.lua:2375 TppMotherBaseManagement.EndPandemicEventMode() used 1x in game scripts .../script/lib/TppTerminal.lua:592 TppMotherBaseManagement.FillAllAnimalHabitatSvars() TppMotherBaseManagement.FillAllDataBaseSvars() TppMotherBaseManagement.FillAllResourceSvars() TppMotherBaseManagement.GenerateStaffParameter() -> value used 23x in game scripts local e = TppMotherBaseManagement.GenerateStaffParameter({ staffType = "Unique", uniqueTypeId = TppMotherBaseManagementConst.STAFF_UNIQUE_TYPE_ID_QUIET, }) .../script/lib/TppMbFreeDemo.lua:923 local e = TppMotherBaseManagement.GenerateStaffParameter({ staffType = "Unique", uniqueTypeId = t }) .../script/lib/TppTerminal.lua:818 TppMotherBaseManagement.GetAmountOfSecurityDamage() -> value Returns amount of security damage. (inferred from name) used 1x in game scripts TppMotherBaseManagement.GetAnimalHeroicPointAndGmp() -> value Returns animal heroic point and gmp. (inferred from name) used 1x in game scripts local o, n = TppMotherBaseManagement.GetAnimalHeroicPointAndGmp({ dataBaseId = t }) .../script/lib/TppPlayer.lua:2930 TppMotherBaseManagement.GetClearedDeployRevengeMissionFlag() -> value Returns cleared deploy revenge mission flag. (inferred from name) used 1x in game scripts local E = TppMotherBaseManagement.GetClearedDeployRevengeMissionFlag({ deployMissionId = n }) .../script/lib/TppRevenge.lua:1011 TppMotherBaseManagement.GetClusterBuildStatus() Returns cluster build status. (inferred from name) used 1x in game scripts local t = TppMotherBaseManagement.GetClusterBuildStatus({ base = "MotherBase", category = e }) .../script/lib/TppTerminal.lua:2488 TppMotherBaseManagement.GetClusterGrade() Returns cluster grade. (inferred from name) used 2x in game scripts local t = TppMotherBaseManagement.GetClusterGrade({ base = "MotherBase", category = e }) .../script/lib/TppTerminal.lua:2486 return TppMotherBaseManagement.GetClusterGrade({ base = "MotherBase", category = TppDefine.CLUSTER_NAME[e] }) Mother Base Management 224 .../script/lib/TppLocation.lua:273 TppMotherBaseManagement.GetDevelopableEquipCount() -> value Returns developable equip count. (inferred from name) used 1x in game scripts if TppMotherBaseManagement.GetDevelopableEquipCount() > 8 then table.insert(e, "salute0160") end .../script/lib/TppEnemy.lua:1580 TppMotherBaseManagement.GetDevelopedEquipCount() -> value Returns developed equip count. (inferred from name) used 1x in game scripts if TppMotherBaseManagement.GetDevelopedEquipCount() <= 5 then e._RegisterOptionRadio("f2000_oprg0030") end .../script/lib/TppFreeHeliRadio.lua:188 TppMotherBaseManagement.GetDevelopedLevel() -> value Returns developed level. (inferred from name) TppMotherBaseManagement.GetEquipDevelopRank(number) -> number Returns equip develop rank. (inferred from name) used 16x in game scripts mvars.mbEnemy_decyEquipIdList[SHOCK_DECY_INDEX][TppMotherBaseManagement.GetEquipDevelopRank(11018 )] = TppEquip.EQP_SWP_ShockDecoy_G02 .../location/mtbs/mtbs_enemy.lua:165 mvars.mbEnemy_decyEquipIdList[SHOCK_DECY_INDEX][TppMotherBaseManagement.GetEquipDevelopRank(11017 )] = TppEquip.EQP_SWP_ShockDecoy_G01 .../location/mtbs/mtbs_enemy.lua:169 TppMotherBaseManagement.GetFemaleStaffCount() -> number Returns female staff count. (inferred from name) TppMotherBaseManagement.GetFobCount() -> value Returns fob count. (inferred from name) TppMotherBaseManagement.GetGmp() -> value Current GMP amount. used 2x in game scripts if TppMotherBaseManagement.GetGmp() < 0 then table.insert(e, "salute0150") end .../script/lib/TppEnemy.lua:1577 local e = TppMotherBaseManagement.GetGmp() .../script/lib/TppResult.lua:343 TppMotherBaseManagement.GetHeroicPoint() -> value Returns heroic point. (inferred from name) used 1x in game scripts local e = TppMotherBaseManagement.GetHeroicPoint() .../script/lib/TppHero.lua:606 TppMotherBaseManagement.GetLatestInfectedStaffCount() -> value Returns latest infected staff count. (inferred from name) TppMotherBaseManagement.GetMbsActivedecoyLevel() -> value Returns mbs activedecoy level. (inferred from name) used 1x in game scripts Mother Base Management 225 local level = TppMotherBaseManagement.GetMbsActivedecoyLevel({}) .../location/mtbs/mtbs_enemy.lua:179 TppMotherBaseManagement.GetMbsAntitankMineLevel() -> value Returns mbs antitank mine level. (inferred from name) TppMotherBaseManagement.GetMbsBaseDevelopSectionRank() -> value Returns mbs base develop section rank. (inferred from name) TppMotherBaseManagement.GetMbsBaseSpySectionRank() -> value Returns mbs base spy section rank. (inferred from name) TppMotherBaseManagement.GetMbsBattleDressLevel() -> value Returns mbs battle dress level. (inferred from name) TppMotherBaseManagement.GetMbsClaymoreLevel() -> value Returns mbs claymore level. (inferred from name) TppMotherBaseManagement.GetMbsClusterBuildStatus() -> value Returns mbs cluster build status. (inferred from name) used 2x in game scripts if TppMotherBaseManagement.GetMbsClusterBuildStatus({ category = i }) ~= "Completed" then n = n - 1 end .../script/lib/TppMission.lua:3294 if TppMotherBaseManagement.GetMbsClusterBuildStatus({ category = TppDefine.CLUSTER_NAME[n] }) == "Building" then e = e - 1 end .../script/lib/TppLocation.lua:267 TppMotherBaseManagement.GetMbsClusterGrade() -> value Returns mbs cluster grade. (inferred from name) used 4x in game scripts local n = TppMotherBaseManagement.GetMbsClusterGrade({ category = i }) .../script/lib/TppMission.lua:3293 local o = TppMotherBaseManagement.GetMbsClusterGrade({ category = TppDefine.CLUSTER_NAME[n + 1] }) .../script/lib/TppLocation.lua:99 TppMotherBaseManagement.GetMbsClusterSecurityIsNoKillMode() -> value Returns mbs cluster security is no kill mode. (inferred from name) used 6x in game scripts local isNoKill = TppMotherBaseManagement.GetMbsClusterSecurityIsNoKillMode() .../location/mtbs/mtbs_enemy.lua:416 local isNoKillMode = TppMotherBaseManagement.GetMbsClusterSecurityIsNoKillMode() .../location/mtbs/mtbs_enemy.lua:602 TppMotherBaseManagement.GetMbsClusterSecuritySoldierEquipGrade() -> value Returns mbs cluster security soldier equip grade. (inferred from name) used 9x in game scripts local eqGrade = TppMotherBaseManagement.GetMbsClusterSecuritySoldierEquipGrade({}) .../location/mtbs/mtbs_enemy.lua:411 local equipGrade = TppMotherBaseManagement.GetMbsClusterSecuritySoldierEquipGrade({}) .../location/mtbs/mtbs_enemy.lua:577 TppMotherBaseManagement.GetMbsClusterSecuritySoldierEquipRange() -> value Returns mbs cluster security soldier equip range. (inferred from name) used 1x in game scripts Mother Base Management 226 local range = TppMotherBaseManagement.GetMbsClusterSecuritySoldierEquipRange() .../location/mtbs/mtbs_enemy.lua:1133 TppMotherBaseManagement.GetMbsClusterSecuritySoldierRank() -> value Returns mbs cluster security soldier rank. (inferred from name) TppMotherBaseManagement.GetMbsColorId() -> value Returns mbs color id. (inferred from name) TppMotherBaseManagement.GetMbsCombatSectionRank() -> value Returns mbs combat section rank. (inferred from name) used 3x in game scripts local sectionRankForDefence = TppMotherBaseManagement.GetMbsCombatSectionRank({ type = "Defence" }) + 1 .../online/o50050/o50050_enemy.lua:147 local rank = TppMotherBaseManagement.GetMbsCombatSectionRank({ type = "Defence" }) .../online/o50050/o50050_enemy.lua:342 TppMotherBaseManagement.GetMbsDecoyLevel() -> value Returns mbs decoy level. (inferred from name) used 1x in game scripts local level = TppMotherBaseManagement.GetMbsDecoyLevel({}) .../location/mtbs/mtbs_enemy.lua:195 TppMotherBaseManagement.GetMbsDevelopedEquipGradeTable() -> number|table Returns mbs developed equip grade table. (inferred from name) used 1x in game scripts local i = TppMotherBaseManagement.GetMbsDevelopedEquipGradeTable() .../script/lib/TppEnemy.lua:795 TppMotherBaseManagement.GetMbsDMineLevel() -> value Returns mbs d mine level. (inferred from name) used 2x in game scripts local level = TppMotherBaseManagement.GetMbsDMineLevel({}) .../location/mtbs/mtbs_enemy.lua:213 TppMotherBaseManagement.GetMbsElectromagneticNetMineLevel() -> value Returns mbs electromagnetic net mine level. (inferred from name) TppMotherBaseManagement.GetMbsFirstCluster() -> value Returns mbs first cluster. (inferred from name) used 2x in game scripts local n = TppMotherBaseManagement.GetMbsFirstCluster({}) .../script/lib/TppLocation.lua:98 local cluster = TppMotherBaseManagement.GetMbsFirstCluster({}) .../online/o50050/o50050_sequence.lua:3847 TppMotherBaseManagement.GetMbsGunCameraLevel() -> value Returns mbs gun camera level. (inferred from name) used 1x in game scripts local numDevGunCamLv = TppMotherBaseManagement.GetMbsGunCameraLevel({}) .../location/mtbs/mtbs_enemy.lua:413 TppMotherBaseManagement.GetMbsIrSensorLevel() -> value Returns mbs ir sensor level. (inferred from name) used 1x in game scripts local devGrade = TppMotherBaseManagement.GetMbsIrSensorLevel({}) .../online/o50050/o50050_sequence.lua:4931 Mother Base Management 227 TppMotherBaseManagement.GetMbsOceanAreaId() -> value Returns mbs ocean area id. (inferred from name) used 1x in game scripts local oceanId = TppMotherBaseManagement.GetMbsOceanAreaId({}) .../online/o50050/o50050_sequence.lua:6100 TppMotherBaseManagement.GetMbsPlatformSecurityCameraNum() Returns mbs platform security camera num. (inferred from name) used 1x in game scripts maxNum = TppMotherBaseManagement.GetMbsPlatformSecurityCameraNum({ platform = plntTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:1375 TppMotherBaseManagement.GetMbsPlatformSecurityCameraQuantity() Returns mbs platform security camera quantity. (inferred from name) TppMotherBaseManagement.GetMbsPlatformSecurityDecoyNum() Returns mbs platform security decoy num. (inferred from name) used 1x in game scripts maxNum = TppMotherBaseManagement.GetMbsPlatformSecurityDecoyNum({ platform = plntTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:1360 TppMotherBaseManagement.GetMbsPlatformSecurityDecoyQuantity() Returns mbs platform security decoy quantity. (inferred from name) TppMotherBaseManagement.GetMbsPlatformSecurityImportantCautionArea() -> value Returns mbs platform security important caution area. (inferred from name) used 1x in game scripts TppMotherBaseManagement.GetMbsPlatformSecurityImportantCautionArea({ platform = plntDefine, area = areaIndex, }) == 1 .../location/mtbs/mtbs_enemy.lua:634 TppMotherBaseManagement.GetMbsPlatformSecurityIrSensorQuantity() Returns mbs platform security ir sensor quantity. (inferred from name) TppMotherBaseManagement.GetMbsPlatformSecurityMineNum() Returns mbs platform security mine num. (inferred from name) used 1x in game scripts maxNum = TppMotherBaseManagement.GetMbsPlatformSecurityMineNum({ platform = plntTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:1345 TppMotherBaseManagement.GetMbsPlatformSecurityMineQuantity() Returns mbs platform security mine quantity. (inferred from name) TppMotherBaseManagement.GetMbsPlatformSecuritySoldierNum() Returns mbs platform security soldier num. (inferred from name) used 2x in game scripts maxNum = TppMotherBaseManagement.GetMbsPlatformSecuritySoldierNum({ platform = plntTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:859 return TppMotherBaseManagement.GetMbsPlatformSecuritySoldierNum({ platform = solNumTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:1510 TppMotherBaseManagement.GetMbsPlatformSecuritySoldierQuantity() Returns mbs platform security soldier quantity. (inferred from name) Mother Base Management 228 TppMotherBaseManagement.GetMbsPlatformSecurityUavNum() Returns mbs platform security uav num. (inferred from name) used 1x in game scripts maxNum = TppMotherBaseManagement.GetMbsPlatformSecurityUavNum({ platform = plntTable.plntDefine }) .../location/mtbs/mtbs_enemy.lua:1390 TppMotherBaseManagement.GetMbsPlatformSecurityUavQuantity() Returns mbs platform security uav quantity. (inferred from name) TppMotherBaseManagement.GetMbsSecurityCameraLevel() -> value Returns mbs security camera level. (inferred from name) used 1x in game scripts local numDevSecCamLv = TppMotherBaseManagement.GetMbsSecurityCameraLevel({}) .../location/mtbs/mtbs_enemy.lua:412 TppMotherBaseManagement.GetMbsSecuritySectionRank() -> value Returns mbs security section rank. (inferred from name) used 4x in game scripts TppMotherBaseManagement.GetMbsSecuritySectionRank({ type = "Staff" }) .../location/mtbs/mtbs_enemy.lua:127 local index = 3 * (TppMotherBaseManagement.GetMbsSecuritySectionRank({ type = "Staff" }) - 1) + i .../location/mtbs/mtbs_enemy.lua:139 TppMotherBaseManagement.GetMbsShockdecoyLevel() -> value Returns mbs shockdecoy level. (inferred from name) used 1x in game scripts local level = TppMotherBaseManagement.GetMbsShockdecoyLevel({}) .../location/mtbs/mtbs_enemy.lua:163 TppMotherBaseManagement.GetMbsSleepingGasMineLevel() -> value Returns mbs sleeping gas mine level. (inferred from name) TppMotherBaseManagement.GetMbsSneakingSuitLevel() -> value Returns mbs sneaking suit level. (inferred from name) TppMotherBaseManagement.GetMbsStaffCombatRank() -> value Returns mbs staff combat rank. (inferred from name) used 1x in game scripts mtbs_enemy.SoldierCombatAbirityRank[TppMotherBaseManagement.GetMbsStaffCombatRank({ staffId = staffId })] .../location/mtbs/mtbs_enemy.lua:1577 TppMotherBaseManagement.GetMbsStolenAlarmLevel() -> value Returns mbs stolen alarm level. (inferred from name) used 3x in game scripts local devGrade = TppMotherBaseManagement.GetMbsStolenAlarmLevel({}) .../online/o50050/o50050_sequence.lua:4939 local numStalmLv = TppMotherBaseManagement.GetMbsStolenAlarmLevel({}) .../online/o50050/o50050_sequence.lua:6128 TppMotherBaseManagement.GetMbsTopologyType() -> value Returns mbs topology type. (inferred from name) used 3x in game scripts local a = TppMotherBaseManagement.GetMbsTopologyType({}) .../script/lib/TppLocation.lua:97 vars.mbLayoutCode = TppLocation.ModifyMbsLayoutCode(TppMotherBaseManagement.GetMbsTopologyType()) .../script/lib/TppMain.lua:217 Mother Base Management 229 TppMotherBaseManagement.GetMbsUavLevel() -> value Returns mbs uav level. (inferred from name) used 1x in game scripts local t = TppMotherBaseManagement.GetMbsUavLevel({}) .../script/lib/TppEneFova.lua:1451 TppMotherBaseManagement.GetMbsUavSleepingGusGrenadeLevel() -> value Returns mbs uav sleeping gus grenade level. (inferred from name) used 1x in game scripts local f = TppMotherBaseManagement.GetMbsUavSleepingGusGrenadeLevel({}) .../script/lib/TppEneFova.lua:1453 TppMotherBaseManagement.GetMbsUavSmokeGrenadeLevel() -> value Returns mbs uav smoke grenade level. (inferred from name) used 1x in game scripts local l = TppMotherBaseManagement.GetMbsUavSmokeGrenadeLevel({}) .../script/lib/TppEneFova.lua:1452 TppMotherBaseManagement.GetOgrePoint() -> value Returns ogre point. (inferred from name) used 2x in game scripts if TppMotherBaseManagement.GetOgrePoint() >= 5e4 then table.insert(i, "salute0080") elseif Player.GetSmallFlyLevel() >= 5 then -- ... end .../script/lib/TppEnemy.lua:1541 if n >= TppDefine.STORY_SEQUENCE.CLEARD_FIND_THE_SECRET_WEAPON and TppMotherBaseManagement.GetOgrePoint() >= 5e4 then table.insert(e, "MB_story_02") end .../script/lib/TppEnemy.lua:1284 TppMotherBaseManagement.GetOutOnMotherBaseStaffs() -> number|table Returns out on mother base staffs. (inferred from name) used 11x in game scripts e = e + #TppMotherBaseManagement.GetOutOnMotherBaseStaffs({ sectionId = n }) .../script/lib/TppDemo.lua:1168 local a = TppMotherBaseManagement.GetOutOnMotherBaseStaffs({ sectionId = TppMotherBaseManagementConst.SECTION_SECURITY, }) .../script/lib/TppEneFova.lua:900 TppMotherBaseManagement.GetPandemicBingoCount() -> value Returns pandemic bingo count. (inferred from name) used 1x in game scripts local e, t = TppMotherBaseManagement.GetPandemicBingoCount() .../script/lib/TppTerminal.lua:597 TppMotherBaseManagement.GetRecoverStaffCount() -> value Returns recover staff count. (inferred from name) used 1x in game scripts local count = TppMotherBaseManagement.GetRecoverStaffCount() .../online/o50050/o50050_sequence.lua:5600 TppMotherBaseManagement.GetResourceUsableCount() -> value Returns resource usable count. (inferred from name) used 21x in game scripts Mother Base Management 230 if vars.mbmIsNuclearDeveloping == 0 and TppMotherBaseManagement.GetResourceUsableCount({ resource = "NuclearWeapon" }) == 0 then return true else gvars.f30050_needUpdateNuclearFlag = true return false end .../script/lib/TppDemo.lua:1047 TppMotherBaseManagement.GetResourceUsableCount({ resource = "NuclearWaste" }) .../script/lib/TppDemo.lua:1409 ```