56 lines
3.4 KiB
Lua
56 lines
3.4 KiB
Lua
|
|
-- ####################################################################################
|
||
|
|
-- ## ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## CASUAL BANANAS CONFIDENTIAL ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## __________________________ ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## Copyright 2014 (c) Casual Bananas ##
|
||
|
|
-- ## All Rights Reserved. ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## NOTICE: All information contained herein is, and remains ##
|
||
|
|
-- ## the property of Casual Bananas. The intellectual and technical ##
|
||
|
|
-- ## concepts contained herein are proprietary to Casual Bananas and may be ##
|
||
|
|
-- ## covered by U.S. and Foreign Patents, patents in process, and are ##
|
||
|
|
-- ## protected by trade secret or copyright law. ##
|
||
|
|
-- ## Dissemination of this information or reproduction of this material ##
|
||
|
|
-- ## is strictly forbidden unless prior written permission is obtained ##
|
||
|
|
-- ## from Casual Bananas ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## _________________________ ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## Casual Bananas is registered with the "Kamer van Koophandel" (Dutch ##
|
||
|
|
-- ## chamber of commerce) in The Netherlands. ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## Company (KVK) number : 59449837 ##
|
||
|
|
-- ## Email : info@casualbananas.com ##
|
||
|
|
-- ## ##
|
||
|
|
-- ## ##
|
||
|
|
-- ####################################################################################
|
||
|
|
|
||
|
|
|
||
|
|
local RandomLoadouts = {};
|
||
|
|
RandomLoadouts[1] = {
|
||
|
|
primary="weapon_jb_ak47",
|
||
|
|
secondary="weapon_jb_glock"
|
||
|
|
};
|
||
|
|
RandomLoadouts[2] = {
|
||
|
|
primary="weapon_jb_scout",
|
||
|
|
secondary="weapon_jb_deagle"
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
local LR = JB.CLASS_LR();
|
||
|
|
LR:SetName("Duel");
|
||
|
|
LR:SetDescription("Both the prisoner and guard are given the same random loadout and full ammo. They may fight without interruption of other guards.");
|
||
|
|
LR:SetStartCallback(function(prisoner,guard)
|
||
|
|
|
||
|
|
local randomSelect = RandomLoadouts[math.random(1,#RandomLoadouts)];
|
||
|
|
|
||
|
|
JB.Util.iterate{prisoner,guard}:GiveAmmo(1000,"SMG1"):GiveAmmo(1000,"pistol"):Give(randomSelect.primary):Give(randomSelect.secondary):Give("weapon_jb_fists");
|
||
|
|
|
||
|
|
end)
|
||
|
|
LR:SetIcon(Material("icon16/bomb.png"))
|
||
|
|
LR();
|