Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. #include <macro.h>
  2. /*
  3. File: fn_clothing_uranium.sqf
  4. Author: Bryan "Tonic" Boardwine
  5.  
  6. Description:
  7. Master configuration file for Bruce's Outback Outfits.
  8. */
  9. private["_filter"];
  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,"uranium"];
  15.  
  16. switch (_filter) do
  17. {
  18. //Uniforms
  19. case 0:
  20. {
  21. [
  22. ["U_C_Scientist","uranium",250]
  23. ];
  24. };
  25.  
  26.  
  27. //Hats
  28. case 1:
  29. {
  30. [
  31. ["H_PilotHelmetFighter_B","uranium",300]
  32. ];
  33. };
  34.  
  35. //Glasses
  36. case 2:
  37. {
  38. [
  39. ["G_Shades_Black",nil,25],
  40. ["G_Shades_Blue",nil,20],
  41. ["G_Sport_Blackred",nil,20],
  42. ["G_Sport_Checkered",nil,20],
  43. ["G_Sport_Blackyellow",nil,20],
  44. ["G_Sport_BlackWhite",nil,20],
  45. ["G_Squares",nil,10],
  46. ["G_Aviator",nil,100],
  47. ["G_Lady_Mirror",nil,150],
  48. ["G_Lady_Dark",nil,150],
  49. ["G_Lady_Blue",nil,150],
  50. ["G_Lowprofile",nil,30],
  51. ["G_Combat",nil,55]
  52. ];
  53. };
  54.  
  55. //Vest
  56. case 3:
  57. {
  58. [
  59. ["V_RebreatherIA","uranium",10000]
  60. ];
  61. };
  62.  
  63. //Backpacks
  64. case 4:
  65. {
  66. [
  67. ["B_AssaultPack_khk",nil,2500],
  68. ["B_AssaultPack_ocamo",nil,2500],
  69. ["B_AssaultPack_cbr",nil,2500],
  70. ["B_AssaultPack_rgr",nil,2500],
  71. ["B_Kitbag_cbr",nil,3000],
  72. ["B_Kitbag_rgr",nil,3000],
  73. ["B_Kitbag_sgg",nil,3000],
  74. ["B_Kitbag_mcamo",nil,3000],
  75. ["B_FieldPack_khk",nil,3500],
  76. ["B_FieldPack_oli",nil,3500],
  77. ["B_TacticalPack_rgr",nil,4000],
  78. ["B_TacticalPack_ocamo",nil,4000],
  79. ["B_TacticalPack_mcamo",nil,4000],
  80. ["B_TacticalPack_oli",nil,4000],
  81. ["B_Carryall_oli",nil,5000],
  82. ["B_Carryall_cbr",nil,5000],
  83. ["B_Parachute",nil,7500]
  84. ];
  85. };
  86. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement