TheAce106

WHATS WRONG

Jan 2nd, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.06 KB | None | 0 0
  1. /*
  2.     File: fn_clothing_pmc.sqf
  3.     Author: Bryan "Tonic" Boardwine
  4.    
  5.     Description:
  6.     Master configuration file for pmc shop.
  7. */
  8. private["_filter"];
  9. _filter = [_this,0,0,[0]] call BIS_fnc_param;
  10. //Classname, Custom Display name (use nil for Cfg->DisplayName, price
  11.  
  12. //Shop Title Name
  13. ctrlSetText[3103,"PMC Clothing Store"];
  14.  
  15. switch (_filter) do
  16. {
  17.     //Uniforms
  18.     case 0:
  19.     {
  20.         [
  21.             ["U_B_HeliPilotCoveralls",nil,11500],
  22.             ["U_I_CombatUniform_shortsleeve",nil,7500],
  23.             ["U_I_CombatUniform_tshirt",nil,7500],
  24.             ["U_I_CombatUniform",nil,7500],
  25.             ["U_I_OfficerUniform",nil,17500],
  26.             ["U_O_PilotCoveralls",nil,15610]
  27.         ];
  28.     };
  29.    
  30.     //Hats
  31.     case 1:
  32.     {
  33.         [
  34.             ["H_ShemagOpen_tan",nil,850],
  35.             ["H_Cap_grn",nil,850],
  36.             ["H_Watchcap_camo",nil,850],
  37.             ["H_MilCap_dgtl",nil,850],
  38.             ["H_Booniehat_indp",nil,850],
  39.             ["H_Beret_brn_SF",nil,850],
  40.             ["H_CrewHelmetHeli_I",nil,850],
  41.             ["H_PilotHelmetHeli_I",nil,850],
  42.             ["H_CrewHelmetHeli_O",nil,850],
  43.             ["H_HelmetIA_camo",nil,850],
  44.             ["H_PilotHelmetFighter_I",nil,850],
  45.             ["H_HelmetB_camo",nil,850]
  46.         ];
  47.     };
  48.    
  49.     //Glasses
  50.     case 2:
  51.     {
  52.         [
  53.             ["G_Shades_Black",nil,25],
  54.             ["G_Aviator",nil,25],
  55.             ["G_Shades_Blue",nil,20],
  56.             ["G_Sport_Blackred",nil,20],
  57.             ["G_Sport_Checkered",nil,20],
  58.             ["G_Sport_Blackyellow",nil,20],
  59.             ["G_Sport_BlackWhite",nil,20],
  60.             ["G_Squares",nil,10],
  61.             ["G_Lowprofile",nil,30],
  62.             ["G_Combat",nil,55]
  63.         ];
  64.     };
  65.    
  66.     //Vest
  67.     case 3:
  68.     {
  69.         [
  70.             ["V_PlateCarrier1_rgr",nil,12500],
  71.             ["V_PlateCarrier2_rgr",nil,12500],
  72.             ["V_PlateCarrier3_rgr",nil,12500],
  73.             ["V_PlateCarrierGL_rgr",nil,12500],
  74.             ["V_TacVest_camo",nil,12500],
  75.             ["V_PlateCarrierIA1_dgtl",nil,12500],
  76.             ["V_PlateCarrierIAGL_dgtl",nil,4500],
  77.             ["V_PlateCarrierIA2_dgtl",nil,7500]
  78.         ];
  79.     };
  80.    
  81.     //Backpacks
  82.     case 4:
  83.     {
  84.         [
  85.             ["B_AssaultPack_cbr",nil,2500],
  86.             ["B_Kitbag_mcamo",nil,4500],
  87.             ["B_TacticalPack_oli",nil,3500],
  88.             ["B_FieldPack_ocamo",nil,3000],
  89.             ["B_Bergen_sgg",nil,4500],
  90.             ["B_Kitbag_cbr",nil,4500],
  91.             ["B_Carryall_oli",nil,5000],
  92.             ["B_Carryall_khk",nil,5000]
  93.         ];
  94.     };
  95. };
Advertisement
Add Comment
Please, Sign In to add comment