Login to ZARP
|
Server Name:
SSRP Suggestion Title: Make door spamming a rulebreak How would it benefit the server: less disruptive gameplay Potential Issues/Exploits: none Additional notes: rn you can just keep spamming the door in the entrance of buildings, and w/ an autoclicker binded to the +USE key you can just keep spamming a door w/ nobody able to get in, you can get a glimpse of what I mean (I did this manually in this video) here, on 8-18 seconds: |
|
Last Edit: 6 years 10 months ago by dankek.
Login or register to post a reply.
|
local meta = FindMetaTable("Entity")
if !isfunction(meta.isDoor) then
function meta:isDoor()
if not IsValid(self) then return false end
local class = self:GetClass()
if class == "func_door" or
class == "func_door_rotating" or
class == "prop_door_rotating" or
class == "func_movelinear" or
class == "prop_dynamic" then
return true
end
return false
end
end
hook.Add( "PlayerUse", "NoDoorSpam", function( ply, ent )
if ent:IsDoor() then
if !ent.LastDoorUse or CurTime() - ent.LastDoorUse > 1 then
ent.LastDoorUse = CurTime()
else
return false
end
end
end ) pastebin.com/EvWkC1rU |
|
...
Login or register to post a reply.
|
It's how I stop my nukes from being raided
|
|
Login or register to post a reply.
|
We have Tguns, Thammers and door charges for a reason.
|
|
Login or register to post a reply.
|
SkeletonWarrior wrote:
We have Tguns, Thammers and door charges for a reason. And what are the price ranges on those? You need more players so you need to make it more friendly to newer users so letting someone door spam literally preventing someone from raiding is completely stupid |
|
Login or register to post a reply.
|
NafeXVIII wrote:
It's how I stop my nukes from being raided Same As for the price of the counter items we have a door charge at 2 mill we have m202s at 3 mill thunder hammers are like 10 max and t guns are 15 so take your pick |
|
Login or register to post a reply.
|
Door spamming not only is retarded but actively makes a base unraidable by conventional means unless you have special weapons. A base ought to be raidable by using nothing but a lockpick/keypadcracker or even battering ram as a cop yet by door spamming you render those tools completly useless because as soon as you finish lockpicking/battering the door the dude standing behind it instantly locks it back up leaving no room for you to shoot at him since he's standing behind the door.
Also people saying " Just buy a door charge or some shit duh! " way to encourage new players to leave the server even more by telling them they can't even open a simple fucking door unless they spend 2M$. |
|
Login or register to post a reply.
The following user(s) said Thank You: dankek
|