TheAce106

Bounty Hunter Shop

Dec 27th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.28 KB | None | 0 0
  1. /*
  2.     File: fn_clothing_bounty.sqf
  3.     Author: Bryan "Tonic" Boardwine
  4.    
  5.     Description:
  6.     Master configuration file for bounty 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,"Dog's Bounty Hunting Supplies!"];
  14.  
  15. switch (_filter) do
  16. {
  17.     //Uniforms
  18.     case 0:
  19.     {
  20.         [
  21.             ["U_B_CTRG_2",nil,5000],
  22.             ["U_B_CTRG_1",nil,7500],
  23.             ["U_B_CTRG_3",nil,11500]
  24.         ];
  25.     };
  26.    
  27.     //Hats
  28.     case 1:
  29.     {
  30.         [
  31.             ["H_CrewHelmetHeli_I",nil,850],
  32.             ["H_CrewHelmetHeli_O",nil,850],
  33.             ["H_CrewHelmetHeli_B",nil,800]
  34.         ];
  35.     };
  36.    
  37.     //Glasses
  38.     case 2:
  39.     {
  40.         [
  41.             ["G_Shades_Black",nil,25],
  42.             ["G_Shades_Blue",nil,20],
  43.             ["G_Sport_Blackred",nil,20],
  44.             ["G_Sport_Checkered",nil,20],
  45.             ["G_Sport_Blackyellow",nil,20],
  46.             ["G_Sport_BlackWhite",nil,20],
  47.             ["G_Squares",nil,10],
  48.             ["G_Lowprofile",nil,30],
  49.             ["G_Combat",nil,55]
  50.         ];
  51.     };
  52.    
  53.     //Vest
  54.     case 3:
  55.     {
  56.         [
  57.             ["V_TacVest_blk_POLICE",nil,4500],
  58.             ["V_TacVestCamo_khk",nil,4500],
  59.             ["V_TacVest_blk",nil,4500]
  60.         ];
  61.     };
  62.    
  63.     //Backpacks
  64.     case 4:
  65.     {
  66.         [
  67.             ["B_AssaultPack_mcamo",nil,2500],
  68.             ["B_Kitbag_mcamo",nil,4500],
  69.             ["B_Bergen_mcamo",nil,4500],
  70.             ["B_Carryall_mcamo",nil,5000]
  71.         ];
  72.     };
  73. };
Advertisement
Add Comment
Please, Sign In to add comment