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,78 @@
-- $Id: //depot/Projects/StarWars/Run/Data/Scripts/Interventions/Intervention_Rebel_Smuggler.lua#2 $
--/////////////////////////////////////////////////////////////////////////////////////////////////
--
-- (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_Rebel_Smuggler.lua $
--
-- Original Author: James Yarrow
--
-- $Author: Dan_Etter $
--
-- $Change: 25292 $
--
-- $DateTime: 2005/08/30 09:04:16 $
--
-- $Revision: #2 $
--
--/////////////////////////////////////////////////////////////////////////////////////////////////
require("pginterventions")
require("pgspawnunits")
function Declare_Goal_Type()
Category = "Intervention_Rebel_Smuggler"
end
function Intervention_Thread()
Begin_Intervention()
plot = Get_Story_Plot("Intervention_Rebel_Smuggler.xml")
event = plot.Get_Event("Rebel_Smuggler_00")
event.Clear_Dialog_Text()
event.Add_Dialog_Text("TEXT_INTERVENTION_LOCATION", Target)
event = plot.Get_Event("Rebel_Smuggler_01")
event.Set_Reward_Parameter(0, Target)
event.Clear_Dialog_Text()
event.Add_Dialog_Text("TEXT_INTERVENTION_LOCATION", Target)
rebel_player = Find_Player("REBEL")
han = SpawnList( {"Han_Solo_Team"}, Target, rebel_player, false, false )
plot.Activate()
Wait_On_Flag("REBEL_SMUGGLER_NOTIFICATION_00", nil)
plot.Suspend()
plot.Reset()
End_Intervention()
end