9 lines
200 B
Lua
9 lines
200 B
Lua
|
INC_SERVER()
|
||
|
|
||
|
SWEP.Primary.Projectile = "projectile_impactmine_kin"
|
||
|
SWEP.Primary.ProjVelocity = 600
|
||
|
|
||
|
function SWEP:PhysModify(physobj)
|
||
|
physobj:AddAngleVelocity(VectorRand():GetNormalized() * 90)
|
||
|
end
|