-- stronghold_globals.lua
-- SR2 global mission script
-- 4/11/07
----------------------
-- Global Variables --
----------------------
function stronghold_globals_init()
-- Init any data that is needed when the game is loaded...vary rarely should there be anything here
-- In SR1, this was mission_add(...). For SR2, this is done through a table file
end
----------------------------------
-- Third Street Saints Prologue --
----------------------------------
function sh_tss_caverns_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
-----------------
-- Brotherhood --
-----------------
function sh_bh_apartments_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_bh_chinatown_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_bh_docks_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_bh_airport_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
-----------
-- Ronin --
-----------
function sh_rn_stripclub_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_rn_sciencemuseum_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_rn_museum_pier_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_rn_rec_center_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
--------------------
-- Sons of Samedi --
--------------------
function sh_ss_trailerpark_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_ss_crackhouse_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_ss_student_union_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
function sh_ss_fishingdock_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end
----------------------------------
-- Third Street Saints Epilogue --
----------------------------------
function sh_tss_ugmall_setup()
-- Setup/restore mission data after being unlock/cleanup respectively.
end