Advertisement
player2_dz

gearcrates config

May 15th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.30 KB | None | 0 0
  1.         /*---------------------------------------------------------------------------
  2.         Gear Crate Settings
  3.         ---------------------------------------------------------------------------*/
  4.         p2am_gearCrates = [
  5.  
  6.             /*
  7.                 Format for gear crates:
  8.  
  9.                 [
  10.                     "Crate Name",
  11.                     [   [Weapons & Toolbelt Items],     [Magazines & Vehicle Parts & Other Supplies],           [Backpacks]             ],
  12.                     [   [Amount per Weapon / Item],     [Amount Per Magazine / Item],                           [Amount Per Backpack]   ]
  13.                 ]
  14.  
  15.                 Simple Example:
  16.  
  17.                 [
  18.                     "AK47 & Misc Stuff",
  19.                     [   ["AK_47_M",     "ItemGPS"],     ["30Rnd_762x39_AK47",   "PartWheel",    "ItemMorphine"],        ["DZ_Backpack_EP1", "DZ_LargeGunBag_EP1"]   ],
  20.                     [   [2,         2],                 [20,                    4,              2],                     [2,                 1                   ]   ]
  21.                 ],
  22.  
  23.             */
  24.  
  25.             //Gear crates go here:
  26.  
  27.             [
  28.                 "AK47 & Misc Stuff",
  29.                 [   ["AK_47_M",     "ItemGPS"],     ["30Rnd_762x39_AK47",   "PartWheel",    "ItemMorphine"],        ["DZ_Backpack_EP1", "DZ_LargeGunBag_EP1"]   ],
  30.                 [   [2,         2],                 [20,                    4,              2],                     [2,                 1                   ]   ]
  31.             ],
  32.             [
  33.                 "Silenced Stuff",
  34.                 [   ["RH_m9csd",    "ItemGPS"],         ["15Rnd_9x19_M9SD", "PartWheel",    "ItemMorphine"],        ["DZ_Backpack_EP1", "DZ_LargeGunBag_EP1"]   ],
  35.                 [   [2,         2],                     [20,                4,              2],                     [2,                 1                   ]   ]
  36.             ]
  37.  
  38.             //End of gear crates, make sure the last one doesnt have a comma!
  39.         ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement