Advertisement
Guest User

Untitled

a guest
Jul 27th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. switch(_shop) do
  2. {
  3. case "cop_basic":
  4. {
  5. switch(true) do
  6. {
  7. case (playerSide != west): {"You are not a cop!"};
  8. case (__GETC__(life_coplevel) == 1) :
  9. {
  10. ["Recruit Shop",
  11. [
  12. ["Binocular",nil,0],
  13. ["ItemGPS",nil,0],
  14. ["ToolKit",nil,0],
  15. ["FirstAidKit",nil,0],
  16. ["Medikit",nil,0],
  17. ["NVGoggles",nil,0]
  18. ]
  19. ];
  20. };
  21.  
  22. case (__GETC__(life_coplevel) == 2) :
  23. {
  24. ["PCSO Shop",
  25. [
  26. ["hgun_P07_snds_F","Taser",0],
  27. ["Binocular",nil,0],
  28. ["ItemGPS",nil,0],
  29. ["ToolKit",nil,0],
  30. ["muzzle_snds_L",nil,0],
  31. ["FirstAidKit",nil,0],
  32. ["Medikit",nil,0],
  33. ["NVGoggles",nil,0]
  34. ]
  35. ];
  36. };
  37.  
  38. case (__GETC__(life_coplevel) == 3) :
  39. {
  40. ["Police Constable's Shop",
  41. [
  42. ["hgun_P07_snds_F","Taser",0],
  43. ["SMG_02_ACO_F","Sting + ACO",0],
  44. ["SMG_02_F","Sting",0],
  45. ["Binocular",nil,0],
  46. ["ItemGPS",nil,0],
  47. ["ToolKit",nil,0],
  48. ["muzzle_snds_L",nil,0],
  49. ["FirstAidKit",nil,0],
  50. ["Medikit",nil,0],
  51. ["NVGoggles",nil,0],
  52. ["30Rnd_9x21_Mag",nil,0]
  53. ]
  54. ];
  55. };
  56.  
  57. case (__GETC__(life_coplevel) == 4) :
  58. {
  59. ["Senior Police Constable's Shop",
  60. [
  61. ["hgun_P07_snds_F","Taser",0],
  62. ["SMG_02_ACO_F","Sting + ACO",0],
  63. ["SMG_02_F","Sting",0],
  64. ["arifle_MXC_F",nil,0],
  65. ["Binocular",nil,0],
  66. ["ItemGPS",nil,0],
  67. ["ToolKit",nil,0],
  68. ["muzzle_snds_L",nil,0],
  69. ["FirstAidKit",nil,0],
  70. ["Medikit",nil,0],
  71. ["NVGoggles",nil,0],
  72. ["30Rnd_9x21_Mag",nil,0],
  73. ["30Rnd_65x39_caseless_mag",nil,0]
  74. ]
  75. ];
  76. };
  77.  
  78. case (__GETC__(life_coplevel) == 5) :
  79. {
  80. ["Sergeant's Shop",
  81. [
  82. ["hgun_P07_snds_F","Taser",0],
  83. ["SMG_02_ACO_F","Sting + ACO",0],
  84. ["SMG_02_F","Sting",0],
  85. ["arifle_MX_F",nil,0],
  86. ["arifle_MXC_F",nil,0],
  87. ["Binocular",nil,0],
  88. ["ItemGPS",nil,0],
  89. ["ToolKit",nil,0],
  90. ["muzzle_snds_L",nil,0],
  91. ["FirstAidKit",nil,0],
  92. ["Medikit",nil,0],
  93. ["NVGoggles",nil,0],
  94. ["30Rnd_9x21_Mag",nil,0],
  95. ["30Rnd_65x39_caseless_mag",nil,0]
  96. ]
  97. ];
  98. };
  99.  
  100. case (__GETC__(life_coplevel) == 6) :
  101. {
  102. ["Detective Inspector's Shop",
  103. [
  104. ["hgun_P07_snds_F","Taser",0],
  105. ["SMG_02_ACO_F","Sting + ACO",0],
  106. ["SMG_02_F","Sting",0],
  107. ["arifle_MX_SW_Hamr_pointer_F"],nil,0],
  108. ["arifle_MX_F",nil,0],
  109. ["arifle_MXC_F",nil,0],
  110. ["Binocular",nil,0],
  111. ["ItemGPS",nil,0],
  112. ["ToolKit",nil,0],
  113. ["muzzle_snds_L",nil,0],
  114. ["FirstAidKit",nil,0],
  115. ["Medikit",nil,0],
  116. ["NVGoggles",nil,0],
  117. ["30Rnd_9x21_Mag",nil,0],
  118. ["30Rnd_65x39_caseless_mag",nil,0]
  119. ]
  120. ];
  121. };
  122.  
  123. case (__GETC__(life_coplevel) == 7) :
  124. {
  125. ["Chief Inspector's Shop",
  126. [
  127. ["hgun_P07_snds_F","Taser",0],
  128. ["SMG_02_ACO_F","Sting + ACO",0],
  129. ["SMG_02_F","Sting",0],
  130. ["arifle_MX_SW_Hamr_pointer_F"],nil,0],
  131. ["arifle_MX_F",nil,0],
  132. ["arifle_MXC_F",nil,0],
  133. ["Binocular",nil,0],
  134. ["ItemGPS",nil,0],
  135. ["ToolKit",nil,0],
  136. ["muzzle_snds_L",nil,0],
  137. ["FirstAidKit",nil,0],
  138. ["Medikit",nil,0],
  139. ["NVGoggles",nil,0],
  140. ["30Rnd_9x21_Mag",nil,0],
  141. ["30Rnd_65x39_caseless_mag",nil,0]
  142. ]
  143. ];
  144. };
  145. };
  146. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement