Advertisement
hoxi

Untitled

Jun 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. vars.saintsMissions = new Dictionary<string, string> {
  2. {"TSSP01-02.cscx", "Jailbreak"},
  3. {"TSSP02-02.cscx", "Appointed Defender"},
  4. {"TSSP03-02.cscx", "Down Payment"},
  5. {"TSSP04-02.cscx", "Three Kings"}
  6. };
  7.  
  8. // Add Saints mission list
  9. vars.missionsList = new List<string>();
  10.  
  11. foreach (var Script in vars.saintsMissions) {
  12. settings.Add(Script.Key, true, Script.Value, "saintsMissions");
  13. vars.missionsList.Add(Script.Key);
  14. }
  15.  
  16. vars.brotherhoodMissions = new Dictionary<string, string>{
  17. {"BR01-02.cscx", "First Impressions"},
  18. {"BR02-02.cscx", "Reunion Tour"},
  19. {"BR03-02.cscx", "Waste Not Want Not"},
  20. {"BR04-02.cscx", "Red Asphalt"},
  21. {"BR05-02.cscx", "Bank Error in Your Favor"},
  22. {"BR06-02.cscx", "Thank you and Goodnight!"},
  23. {"BR07-02.cscx", "Retribution"},
  24. {"BR08-02.cscx", "Jail Bait"},
  25. {"BR09-02.cscx", "The Enemy of My Enemy"},
  26. {"BR10-02.cscx", "The Siege"},
  27. {"BR11-02.cscx", "Showdown"}
  28. };
  29.  
  30.  
  31. foreach (var Script in vars.brotherhoodMissions) {
  32. settings.Add(Script.Key, true, Script.Value, "brotherhoodMissions");
  33. vars.missionsList.Add(Script.Key);
  34. }
  35.  
  36. vars.roninMissions = new Dictionary<string, string>{
  37. {"RO01-02.cscx", "Saint's Seven"},
  38. {"RO02-02.cscx", "Laundry Day"},
  39. {"RO03-02.cscx", "Road Rage"},
  40. {"RO04-02.cscx", "Bleeding Out"},
  41. {"RO05-02.cscx", "Orange Threat Level"},
  42. {"RO06-02.cscx", "Kanto Connection"},
  43. {"RO07-02.cscx", "Visiting Hours"},
  44. {"RO08-02.cscx", "Room Service"},
  45. {"RO09-02.cscx", "Rest in Peace"},
  46. {"RO10-02.cscx", "Good D"},
  47. {"RO11-02.cscx", "One Man's Junk..."}
  48. };
  49.  
  50.  
  51. foreach (var Script in vars.roninMissions) {
  52. settings.Add(Script.Key, true, Script.Value, "roninMissions");
  53. vars.missionsList.Add(Script.Key);
  54. }
  55.  
  56. vars.samediMissions = new Dictionary<string, string>{
  57. {"SS01-02.cscx", "Got Dust, Will Travel"},
  58. {"SS02-02.cscx", "File in the Cake"},
  59. {"SS03-02.cscx", "Airborne Assault"},
  60. {"SS04-02.cscx", "Veteran Child"},
  61. {"SS05-02.cscx", "Burning Down the House"},
  62. {"SS06-02.cscx", "Bad Trip"},
  63. {"SS07-02.cscx", "Bonding Experience"},
  64. {"SS08-02.cscx", "Riot Control"},
  65. {"SS09-02.cscx", "Eternal Sunshine"},
  66. {"SS10-02.cscx", "Assault on Precinct 31"},
  67. {"SS11-02.cscx", "The Shopping Maul"}
  68. };
  69.  
  70.  
  71. foreach (var Script in vars.samediMissions) {
  72. settings.Add(Script.Key, true, Script.Value, "samediMissions");
  73. vars.missionsList.Add(Script.Key);
  74. }
  75.  
  76. vars.ultorMissions = new Dictionary<string, string>{
  77. {"TSSE01-02.cscx", "Picking a Fight"},
  78. {"TSSE02-02.cscx", "Pyramid Scheme"},
  79. {"TSSE03-02.cscx", "Salting the Earth...Again"},
  80. {"TSSE04-02.cscx", "... and a Better Life"},
  81. {"BON02.cscx", "Revelation"}
  82. };
  83.  
  84.  
  85. foreach (var Script in vars.ultorMissions) {
  86. settings.Add(Script.Key, true, Script.Value, "ultorMissions");
  87. vars.missionsList.Add(Script.Key);
  88. }
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement