sr2lua/stronghold_globals.lua

  1. -- stronghold_globals.lua 
  2. -- SR2 global mission script 
  3. -- 4/11/07 
  4.  
  5. ---------------------- 
  6. -- Global Variables -- 
  7. ---------------------- 
  8.  
  9. function stronghold_globals_init() 
  10. 	-- Init any data that is needed when the game is loaded...vary rarely should there be anything here 
  11. 	-- In SR1, this was mission_add(...). For SR2, this is done through a table file 
  12. end 
  13.  
  14. ---------------------------------- 
  15. -- Third Street Saints Prologue -- 
  16. ---------------------------------- 
  17.  
  18. function sh_tss_caverns_setup() 
  19. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  20. end 
  21.  
  22.  
  23. ----------------- 
  24. -- Brotherhood -- 
  25. ----------------- 
  26.  
  27. function sh_bh_apartments_setup() 
  28. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  29. end 
  30.  
  31. function sh_bh_chinatown_setup() 
  32. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  33. end 
  34.  
  35. function sh_bh_docks_setup() 
  36. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  37. end 
  38.  
  39. function sh_bh_airport_setup() 
  40. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  41. end 
  42.  
  43. ----------- 
  44. -- Ronin -- 
  45. ----------- 
  46.  
  47. function sh_rn_stripclub_setup() 
  48. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  49. end 
  50.  
  51. function sh_rn_sciencemuseum_setup() 
  52. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  53. end 
  54.  
  55. function sh_rn_museum_pier_setup() 
  56. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  57. end 
  58.  
  59. function sh_rn_rec_center_setup() 
  60. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  61. end 
  62.  
  63.  
  64. -------------------- 
  65. -- Sons of Samedi -- 
  66. -------------------- 
  67.  
  68. function sh_ss_trailerpark_setup() 
  69. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  70. end 
  71.  
  72. function sh_ss_crackhouse_setup() 
  73. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  74. end 
  75.  
  76. function sh_ss_student_union_setup() 
  77. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  78. end 
  79.  
  80. function sh_ss_fishingdock_setup() 
  81. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  82. end 
  83.  
  84.  
  85. ---------------------------------- 
  86. -- Third Street Saints Epilogue -- 
  87. ---------------------------------- 
  88.  
  89. function sh_tss_ugmall_setup() 
  90. 	-- Setup/restore mission data after being unlock/cleanup respectively. 
  91. end