add sborka
This commit is contained in:
45
garrysmod/addons/handcuffs/lua/weapons/weapon_cuff_rope.lua
Normal file
45
garrysmod/addons/handcuffs/lua/weapons/weapon_cuff_rope.lua
Normal file
@@ -0,0 +1,45 @@
|
||||
|
||||
-----------------------------------------------------
|
||||
-------------------------------------
|
||||
---------------- Cuffs --------------
|
||||
-------------------------------------
|
||||
-- Copyright (c) 2015 Nathan Healy --
|
||||
-------- All rights reserved --------
|
||||
-------------------------------------
|
||||
-- weapon_cuff_standard.lua SHARED --
|
||||
-- --
|
||||
-- Rope handcuffs. --
|
||||
-------------------------------------
|
||||
|
||||
AddCSLuaFile()
|
||||
|
||||
SWEP.Base = "weapon_cuff_base"
|
||||
|
||||
SWEP.Category = "[RP] Система полиции"
|
||||
SWEP.Author = "my_hat_stinks"
|
||||
SWEP.Instructions = "A weak restraint."
|
||||
|
||||
SWEP.Spawnable = true
|
||||
SWEP.AdminOnly = false
|
||||
SWEP.AdminSpawnable = false
|
||||
|
||||
SWEP.Slot = 3
|
||||
SWEP.PrintName = "Наручники"
|
||||
|
||||
//
|
||||
// Handcuff Vars
|
||||
SWEP.CuffTime = 1.0 // Seconds to handcuff
|
||||
SWEP.CuffSound = Sound( "buttons/lever7.wav" )
|
||||
|
||||
SWEP.CuffMaterial = "phoenix_storms/gear"
|
||||
SWEP.CuffRope = "cable/cable2"
|
||||
SWEP.CuffStrength = 1.4
|
||||
SWEP.CuffRegen = 1.4
|
||||
SWEP.RopeLength = 0
|
||||
SWEP.CuffReusable = false
|
||||
|
||||
SWEP.CuffBlindfold = true
|
||||
SWEP.CuffGag = true
|
||||
|
||||
SWEP.CuffStrengthVariance = 0.1 // Randomise strangth
|
||||
SWEP.CuffRegenVariance = 0.1 // Randomise regen
|
||||
Reference in New Issue
Block a user