-- $Id: //depot/Projects/StarWars_Steam/FOC/Run/Data/Scripts/AI/FlushMajorItemBudget.lua#1 $ --///////////////////////////////////////////////////////////////////////////////////////////////// -- -- (C) Petroglyph Games, Inc. -- -- -- ***** ** * * -- * ** * * * -- * * * * * -- * * * * * * * * -- * * *** ****** * ** **** *** * * * ***** * *** -- * ** * * * ** * ** ** * * * * ** ** ** * -- *** ***** * * * * * * * * ** * * * * -- * * * * * * * * * * * * * * * -- * * * * * * * * * * ** * * * * -- * ** * * ** * ** * * ** * * * * -- ** **** ** * **** ***** * ** *** * * -- * * * -- * * * -- * * * -- * * * * -- **** * * -- --///////////////////////////////////////////////////////////////////////////////////////////////// -- C O N F I D E N T I A L S O U R C E C O D E -- D O N O T D I S T R I B U T E --///////////////////////////////////////////////////////////////////////////////////////////////// -- -- $File: //depot/Projects/StarWars_Steam/FOC/Run/Data/Scripts/AI/FlushMajorItemBudget.lua $ -- -- Original Author: Steve_Copeland -- -- $Author: Brian_Hayes $ -- -- $Change: 637819 $ -- -- $DateTime: 2017/03/22 10:16:16 $ -- -- $Revision: #1 $ -- --///////////////////////////////////////////////////////////////////////////////////////////////// require("pgevents") -- Galactic Flush MajorItem Budget Script -- function Definitions() DebugMessage("%s -- In Definitions", tostring(Script)) Category = "Flush_MajorItem_Budget | Reclaim_Excess_MajorItem_Budget" IgnoreTarget = true TaskForce = { -- First Task Force { "MainForce" -- Name of the MainForce, Variable and thread function. , "TaskForceRequired" } } DebugMessage("%s -- Done Definitions", tostring(Script)) end function MainForce_Thread() DebugMessage("%s -- In MainForce_Thread.", tostring(Script)) Budget.Flush_Category("MajorItem") DebugMessage("%s -- MainForce Done! Exiting Script!", tostring(Script)) ScriptExit() end