Initial commit

This commit is contained in:
2026-02-28 14:00:45 -06:00
commit 16d3170787
1134 changed files with 589134 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
-- $Id: //depot/Projects/StarWars/Run/Data/Scripts/Evaluators/SimpleEvaluatorScript.lua#6 $
--/////////////////////////////////////////////////////////////////////////////////////////////////
--
-- (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/Run/Data/Scripts/Evaluators/SimpleEvaluatorScript.lua $
--
-- Original Author: James Yarrow
--
-- $Author: Brian_Hayes $
--
-- $Change: 25932 $
--
-- $DateTime: 2005/09/05 11:53:29 $
--
-- $Revision: #6 $
--
--/////////////////////////////////////////////////////////////////////////////////////////////////
require("PGBaseDefinitions")
function Clean_Up()
-- any temporary object pointers need to be set to nil in this function.
-- ie: Target = nil
Result = nil
Planet = nil
end
function Evaluate()
if PlayerObject.Is_Evil() then
Planet = FindPlanet("Byss")
else
Planet = FindPlanet("Alderaan")
end
Result = EvaluatePerception("Has_Level_1_Star_Base", PlayerObject, Planet)
return Result
end