Changes to weapon list
This commit is contained in:
parent
deaa0d50f5
commit
163cc29d78
|
@ -151,7 +151,7 @@ end
|
||||||
|
|
||||||
local wep = {}
|
local wep = {}
|
||||||
WEAPONS["melee_bat"] = wep
|
WEAPONS["melee_bat"] = wep
|
||||||
wep.Name = "BASEBALL BAT"
|
wep.Name = "BAT"
|
||||||
wep.Description = "meow"
|
wep.Description = "meow"
|
||||||
wep.Type = "melee"
|
wep.Type = "melee"
|
||||||
|
|
||||||
|
@ -159,7 +159,23 @@ wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
local wep = {}
|
local wep = {}
|
||||||
WEAPONS["melee_baton"] = wep
|
WEAPONS["melee_baton"] = wep
|
||||||
wep.Name = "POLICE BATON"
|
wep.Name = "BATON"
|
||||||
|
wep.Description = "meow"
|
||||||
|
wep.Type = "melee"
|
||||||
|
|
||||||
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
local wep = {}
|
||||||
|
WEAPONS["melee_knife"] = wep
|
||||||
|
wep.Name = "KNIFE"
|
||||||
|
wep.Description = "meow"
|
||||||
|
wep.Type = "melee"
|
||||||
|
|
||||||
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
local wep = {}
|
||||||
|
WEAPONS["melee_machete"] = wep
|
||||||
|
wep.Name = "MACHETE"
|
||||||
wep.Description = "meow"
|
wep.Description = "meow"
|
||||||
wep.Type = "melee"
|
wep.Type = "melee"
|
||||||
|
|
||||||
|
@ -185,8 +201,8 @@ wep.Damage = 30
|
||||||
|
|
||||||
local wep = {}
|
local wep = {}
|
||||||
WEAPONS["usp"] = wep
|
WEAPONS["usp"] = wep
|
||||||
wep.Name = "USP .45"
|
wep.Name = "MK. 23"
|
||||||
wep.Description = "If it works for hardasses around the world, it works for you."
|
wep.Description = "If it works for hardasses around the world, it'll work for you."
|
||||||
wep.Type = "pistol"
|
wep.Type = "pistol"
|
||||||
|
|
||||||
wep.WModel = "models/weapons/w_pist_usp.mdl"
|
wep.WModel = "models/weapons/w_pist_usp.mdl"
|
||||||
|
@ -352,6 +368,11 @@ wep.Type = "shotgun"
|
||||||
|
|
||||||
wep.WModel = "models/weapons/w_crowbar.mdl"
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
wep.Delay = (60/600)
|
||||||
|
wep.Firemodes = FIREMODE_AUTOSEMI
|
||||||
|
wep.Ammo = 8
|
||||||
|
wep.Damage = 2
|
||||||
|
|
||||||
-- Rifles
|
-- Rifles
|
||||||
|
|
||||||
local wep = {}
|
local wep = {}
|
||||||
|
@ -360,4 +381,40 @@ wep.Name = "FNC PARA"
|
||||||
wep.Description = "meow"
|
wep.Description = "meow"
|
||||||
wep.Type = "rifle"
|
wep.Type = "rifle"
|
||||||
|
|
||||||
wep.WModel = "models/weapons/w_crowbar.mdl"
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
wep.Delay = (60/600)
|
||||||
|
wep.Firemodes = FIREMODE_AUTOSEMI
|
||||||
|
wep.Ammo = 8
|
||||||
|
wep.Damage = 2
|
||||||
|
|
||||||
|
local wep = {}
|
||||||
|
WEAPONS["m16a2"] = wep
|
||||||
|
wep.Name = "M16A2"
|
||||||
|
wep.Description = "meow"
|
||||||
|
wep.Type = "rifle"
|
||||||
|
|
||||||
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
wep.Delay = (60/900)
|
||||||
|
wep.Firemodes = {
|
||||||
|
{ Mode = 3 },
|
||||||
|
{ Mode = 1 },
|
||||||
|
}
|
||||||
|
wep.Ammo = 30
|
||||||
|
wep.Damage = 2
|
||||||
|
|
||||||
|
-- Machine guns
|
||||||
|
|
||||||
|
local wep = {}
|
||||||
|
WEAPONS["stoner63"] = wep
|
||||||
|
wep.Name = "STONER 63"
|
||||||
|
wep.Description = "meow"
|
||||||
|
wep.Type = "machinegun"
|
||||||
|
|
||||||
|
wep.WModel = "models/weapons/w_crowbar.mdl"
|
||||||
|
|
||||||
|
wep.Delay = (60/700)
|
||||||
|
wep.Firemodes = FIREMODE_AUTOSEMI
|
||||||
|
wep.Ammo = 100
|
||||||
|
wep.Damage = 2
|
Loading…
Reference in New Issue