Initial Commit
This commit is contained in:
71
entities/weapons/weapon_jb_mac10.lua
Normal file
71
entities/weapons/weapon_jb_mac10.lua
Normal file
@@ -0,0 +1,71 @@
|
||||
-- ####################################################################################
|
||||
-- ## ##
|
||||
-- ## ##
|
||||
-- ## 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 ##
|
||||
-- ## ##
|
||||
-- ## ##
|
||||
-- ####################################################################################
|
||||
|
||||
AddCSLuaFile()
|
||||
|
||||
|
||||
SWEP.PrintName = "Mac 10"
|
||||
|
||||
|
||||
SWEP.Slot = 1
|
||||
SWEP.SlotPos = 1
|
||||
|
||||
SWEP.HoldType = "pistol"
|
||||
SWEP.Base = "weapon_jb_base"
|
||||
SWEP.Category = "Jailbreak Weapons"
|
||||
|
||||
SWEP.Spawnable = true
|
||||
SWEP.AdminSpawnable = true
|
||||
|
||||
SWEP.ViewModel = "models/weapons/cstrike/c_smg_mac10.mdl"
|
||||
SWEP.WorldModel = "models/weapons/w_smg_mac10.mdl"
|
||||
|
||||
SWEP.Weight = 5
|
||||
SWEP.AutoSwitchTo = true
|
||||
SWEP.AutoSwitchFrom = false
|
||||
|
||||
SWEP.Primary.Sound = Sound( "Weapon_Mac10.Single" )
|
||||
SWEP.Primary.Recoil = 0.5
|
||||
SWEP.Primary.Damage = 19
|
||||
SWEP.Primary.NumShots = 1
|
||||
SWEP.Primary.Cone = 0.04
|
||||
SWEP.Primary.ClipSize = 30
|
||||
SWEP.Primary.Delay = 0.07
|
||||
SWEP.Primary.DefaultClip = 100
|
||||
SWEP.Primary.Automatic = true
|
||||
SWEP.Primary.Ammo = "smg1"
|
||||
SWEP.FakeIronSights = true;
|
||||
|
||||
SWEP.Positions = {};
|
||||
SWEP.Positions[1] = {pos = Vector(0,0,0), ang = Vector(0,0,0)};
|
||||
SWEP.Positions[2] = {pos = Vector(-9.32, -5.749, 2.759 ), ang = Vector(1.2, -5.401, -8.601)};
|
||||
SWEP.Positions[3] = {pos = Vector(-5.119, -14.724, -13.938), ang = Vector(70, -1.93, -8.544)};
|
||||
Reference in New Issue
Block a user