Advertisement
Guest User

fn_clothing_reb.sqf

a guest
Oct 24th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. /*
  2. File: fn_clothing_reb.sqf
  3. Author: Bryan "Tonic" Boardwine
  4.  
  5. Description:
  6. Master configuration file for Reb shop.
  7. */
  8. private["_filter","_donatorlvl","_discount"];
  9. _donatorlvl = (__GETC__(life_donator));
  10. _discount = (1 - (__GETC__(life_donator)/10));
  11. _filter = [_this,0,0,[0]] call BIS_fnc_param;
  12. //Classname, Custom Display name (use nil for Cfg->DisplayName, price
  13.  
  14. //Shop Title Name
  15. ctrlSetText[3103,"Mohammed's Jihadi Shop"];
  16.  
  17. switch (_filter) do
  18. {
  19. //Uniforms
  20. case 0:
  21. {
  22. [
  23. ["U_IG_Guerilla1_1",nil,5000 * _discount],
  24. ["U_I_G_Story_Protagonist_F",nil,7500 * _discount],
  25. ["U_I_G_resistanceLeader_F",nil,11500 * _discount],
  26. ["U_O_SpecopsUniform_ocamo",nil,17500 * _discount],
  27. ["U_O_PilotCoveralls",nil,15610 * _discount],
  28. ["U_IG_leader","Guerilla Leader",15340 * _discount],
  29. ["U_O_GhillieSuit",nil,50000 * _discount]
  30. ];
  31. };
  32.  
  33. //Hats
  34. case 1:
  35. {
  36. [
  37. ["H_ShemagOpen_khk",nil,800 * _discount],
  38. ["H_ShemagOpen_tan",nil,850 * _discount],
  39. ["H_Shemag_olive",nil,850 * _discount],
  40. ["H_Booniehat_tan",nil,425 * _donator],
  41. ["H_HelmetO_ocamo",nil,2500 * _discount],
  42. ["H_MilCap_oucamo",nil,1200 * _discount],
  43. ["H_Bandanna_camo",nil,650 * _discount]
  44. ];
  45. };
  46.  
  47. //Glasses
  48. case 2:
  49. {
  50. [
  51. ["G_Shades_Black",nil,25 * _discount],
  52. ["G_Shades_Blue",nil,20 * _discount],
  53. ["G_Sport_Blackred",nil,20 * _discount],
  54. ["G_Sport_Checkered",nil,20 * _discount],
  55. ["G_Sport_Blackyellow",nil,20 * _discount],
  56. ["G_Sport_BlackWhite",nil,20 * _discount],
  57. ["G_Squares",nil,10 * _discount],
  58. ["G_Lowprofile",nil,30 * _discount],
  59. ["G_Combat",nil,55 * _discount]
  60. ];
  61. };
  62.  
  63. //Vest
  64. case 3:
  65. {
  66. [
  67. ["V_TacVest_khk",nil,12500 * _discount],
  68. ["V_BandollierB_cbr",nil,4500 * _discount],
  69. ["V_HarnessO_brn",nil,7500 * _discount]
  70. ];
  71. };
  72.  
  73. //Backpacks
  74. case 4:
  75. {
  76. [
  77. ["B_AssaultPack_cbr",nil,2500 * _discount],
  78. ["B_Kitbag_mcamo",nil,4500 * _discount],
  79. ["B_TacticalPack_oli",nil,3500 * _discount],
  80. ["B_FieldPack_ocamo",nil,3000 * _discount],
  81. ["B_Bergen_sgg",nil,4500 * _discount],
  82. ["B_Kitbag_cbr",nil,4500 * _discount],
  83. ["B_Carryall_oli",nil,5000 * _discount],
  84. ["B_Carryall_khk",nil,5000 * _discount]
  85. ];
  86. };
  87. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement