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,82 @@
-- $Id: //depot/Projects/StarWars/Run/Data/Scripts/Interventions/Intervention_Confront_Boba.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/Run/Data/Scripts/Interventions/Intervention_Confront_Boba.lua $
--
-- Original Author: James Yarrow
--
-- $Author: Dan_Etter $
--
-- $Change: 25292 $
--
-- $DateTime: 2005/08/30 09:04:16 $
--
-- $Revision: #1 $
--
--/////////////////////////////////////////////////////////////////////////////////////////////////
require("pginterventions")
require("pgspawnunits")
function Declare_Goal_Type()
Category = "Intervention_Confront_Boba"
end
function Intervention_Thread()
Begin_Intervention()
plot = Get_Story_Plot("Intervention_Confront_Boba.xml")
credits = 3000
event = plot.Get_Event("Confront_Boba_00")
event.Clear_Dialog_Text()
event.Add_Dialog_Text("TEXT_INTERVENTION_LOCATION", Target)
event.Add_Dialog_Text("TEXT_INTERVENTION_REWARD", "TEXT_CREDITS", credits)
event = plot.Get_Event("Confront_Boba_01")
event.Set_Reward_Parameter(0, credits)
event.Clear_Dialog_Text()
event.Add_Dialog_Text("TEXT_INTERVENTION_LOCATION", Target)
event.Add_Dialog_Text("TEXT_INTERVENTION_REWARD", "TEXT_CREDITS", credits)
empire_player = Find_Player("EMPIRE")
han = SpawnList( {"Boba_Fett_Team_NoStealth"}, Target, empire_player, false, false )
plot.Activate()
Wait_On_Flag("CONFRONT_BOBA_NOTIFICATION_00", nil)
plot.Suspend()
plot.Reset()
End_Intervention()
end