Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. #include <macro.h>
  2. /*
  3. File: fn_clothing_cop.sqf
  4. Author: Bryan "Tonic" Boardwine
  5.  
  6. Description:
  7. Master config file for Cop clothing store.
  8. */
  9. private["_filter","_ret"];
  10. _filter = [_this,0,0,[0]] call BIS_fnc_param;
  11. //Classname, Custom Display name (use nil for Cfg->DisplayName, price
  12.  
  13. //Shop Title Name
  14. ctrlSetText[3103,"Lakeside Police Department Shop"];
  15.  
  16. _ret = [];
  17. switch (_filter) do
  18. {
  19. case 0:
  20. {
  21. _ret set[count _ret,["CG_SO1","SO Uniform",200]];
  22. _ret set[count _ret,["CG_SO2","SO SGT Uniform",200]];
  23. _ret set[count _ret,["CG_SO3","SO Command Uniform",200]];
  24. _ret set[count _ret,["herpSERT1","SERT Operator Uniform",200]];
  25. _ret set[count _ret,["dlrp_sert_coveralls1","SERT Operations Uniform",200]];
  26. _ret set[count _ret,["RF_WING_3","Air One Coveralls",200]];
  27. _ret set[count _ret,["doj_uni","Corrections Uniform",200]];
  28. _ret set[count _ret,["LS_Marshal_Jacket3","LS Marshall Uniform",200]];
  29. _ret set[count _ret,["fto_uni","FTO Uniform",200]];
  30. _ret set[count _ret,["TCG_PDDTC","Police Off Duty",200]];
  31. _ret set[count _ret,["U_B_Wetsuit","Wetsuit",200]];
  32.  
  33. };
  34.  
  35. case 1:
  36. {
  37. _ret set[count _ret,["TRYK_H_woolhat_tan","SO/SERT Operator Hat",50]];
  38. _ret set[count _ret,["TRYK_H_Bandana_wig","SERT Grey Wig",50]];
  39. _ret set[count _ret,["TCG_swathelmet","SERT Operations Hat",50]];
  40. _ret set[count _ret,["TRYK_R_CAP_BLK","LS Marshalls Cap",50]];
  41. _ret set[count _ret,["H_Beret_blk","Command Only Beret",50]];
  42. _ret set[count _ret,["Campaign_Hat_Light","Corrections Hat",50]];
  43. _ret set[count _ret,["max_sheriff_Hat ","Command Hat",50]];
  44. _ret set[count _ret,["TRYK_H_PASGT_BLK","Command Code Red Hat",50]];
  45. };
  46.  
  47. case 2:
  48. {
  49. _ret =
  50. [
  51. ["G_Shades_Black",nil,25],
  52. ["G_Aviator",nil,25],
  53. ["G_Bandanna_aviator","SERT Operations Glasses",25],
  54. ["Mask_M40","Gas Mask",25],
  55. ["G_Diving","Diving Googles",25]
  56.  
  57. ];
  58. };
  59.  
  60. case 3:
  61. {
  62. _ret set[count _ret,["k_brown_so_Fix","SO Vest",800]];
  63. _ret set[count _ret,["SCommand_Vest","SO Command Vest",800]];
  64. _ret set[count _ret,["highthreatvestblack","SO Code Red Vest",800]];
  65. _ret set[count _ret,["DOC_Vest_Threat","CO Code Red Vest",800]];
  66. _ret set[count _ret,["kaelvest_sert2_Fix","SERT Vest",800]];
  67. _ret set[count _ret,["usms_vests_usms1","LS Marshalls Vest",800]];
  68. _ret set[count _ret,["DOC_Vest_Tac","Corrections Vest",800]];
  69. _ret set[count _ret,["CL3_Rebreather","Rebreather",800]];
  70. _ret set[count _ret,["police_belt_pistol","Police Belt Pistol",800]];
  71. _ret set[count _ret,["highthreatvesttan ","High threat Vest (All LEO’s in code red)",800]];
  72. _ret set[count _ret,["TRYK_V_tacv1LC_SRF_BK","Code Red Vest (Command Only)",800]];
  73. _ret set[count _ret,["DTU_Vest","DTU Vest",800]];
  74. _ret set[count _ret,["DTU_Command_Vest","DTU Command Vest",800]];
  75. _ret set[count _ret,["SERT_Vest","SERT Vest",800]];
  76. _ret set[count _ret,["SERT_Command_Vest","SERT Command Vest",800]];
  77. };
  78.  
  79. case 4:
  80. {
  81. _ret =
  82. [
  83. ["cl3_police_tacticalbelt","New LEO Long Range Radio Belt",1150],
  84. ["AM_PoliceBelt","Old LEO Belt",1150]
  85. ];
  86. };
  87. };
  88.  
  89. _ret;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement