Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- File: fn_clothing_pmc.sqf
- Author: Bryan "Tonic" Boardwine
- Description:
- Master configuration file for pmc shop.
- */
- private["_filter"];
- _filter = [_this,0,0,[0]] call BIS_fnc_param;
- //Classname, Custom Display name (use nil for Cfg->DisplayName, price
- //Shop Title Name
- ctrlSetText[3103,"PMC Clothing Store"];
- switch (_filter) do
- {
- //Uniforms
- case 0:
- {
- [
- ["U_B_HeliPilotCoveralls",nil,11500],
- ["U_I_CombatUniform_shortsleeve",nil,7500],
- ["U_I_CombatUniform_tshirt",nil,7500],
- ["U_I_CombatUniform",nil,7500],
- ["U_I_OfficerUniform",nil,17500],
- ["U_O_PilotCoveralls",nil,15610]
- ];
- };
- //Hats
- case 1:
- {
- [
- ["H_ShemagOpen_tan",nil,850],
- ["H_Cap_grn",nil,850],
- ["H_Watchcap_camo",nil,850],
- ["H_MilCap_dgtl",nil,850],
- ["H_Booniehat_indp",nil,850],
- ["H_Beret_brn_SF",nil,850],
- ["H_CrewHelmetHeli_I",nil,850],
- ["H_PilotHelmetHeli_I",nil,850],
- ["H_CrewHelmetHeli_O",nil,850],
- ["H_HelmetIA_camo",nil,850],
- ["H_PilotHelmetFighter_I",nil,850],
- ["H_HelmetB_camo",nil,850]
- ];
- };
- //Glasses
- case 2:
- {
- [
- ["G_Shades_Black",nil,25],
- ["G_Aviator",nil,25],
- ["G_Shades_Blue",nil,20],
- ["G_Sport_Blackred",nil,20],
- ["G_Sport_Checkered",nil,20],
- ["G_Sport_Blackyellow",nil,20],
- ["G_Sport_BlackWhite",nil,20],
- ["G_Squares",nil,10],
- ["G_Lowprofile",nil,30],
- ["G_Combat",nil,55]
- ];
- };
- //Vest
- case 3:
- {
- [
- ["V_PlateCarrier1_rgr",nil,12500],
- ["V_PlateCarrier2_rgr",nil,12500],
- ["V_PlateCarrier3_rgr",nil,12500],
- ["V_PlateCarrierGL_rgr",nil,12500],
- ["V_TacVest_camo",nil,12500],
- ["V_PlateCarrierIA1_dgtl",nil,12500],
- ["V_PlateCarrierIAGL_dgtl",nil,4500],
- ["V_PlateCarrierIA2_dgtl",nil,7500]
- ];
- };
- //Backpacks
- case 4:
- {
- [
- ["B_AssaultPack_cbr",nil,2500],
- ["B_Kitbag_mcamo",nil,4500],
- ["B_TacticalPack_oli",nil,3500],
- ["B_FieldPack_ocamo",nil,3000],
- ["B_Bergen_sgg",nil,4500],
- ["B_Kitbag_cbr",nil,4500],
- ["B_Carryall_oli",nil,5000],
- ["B_Carryall_khk",nil,5000]
- ];
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment