blob: 3f157abc481b0c03fe2fc65b74b2536372aa8b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AddCSLuaFile( "cl_init.lua" )
AddCSLuaFile( "shared.lua" )
include('shared.lua')
SWEP.Weight = 30 // Decides whether we should switch from/to this
SWEP.AutoSwitchTo = true // Auto switch to if we pick it up
SWEP.AutoSwitchFrom = true // Auto switch from if you pick up a better weapon
-- function SWEP:Initialize()
-- end
function SWEP:OnRemove()
end
|