#Is it possible to change the strangle timer for SCP-3114?

1 messages · Page 1 of 1 (latest)

wild sapphire
#

In 14.2, a strangle timer was added that makes strangulation only available for 12 seconds after undisguising.
It appears that this timer has not been synced in any way shape or form. If anyone has any ideas on how to make this possible, I'd greatly appreciate it.

tulip kraken
#

Best I can offer is to force skeleton to disguise and undisguise in like 2 ticks or something

#

As far as I know that cooldown will never be synced

#

I hear it might be validated server side soon at least, but there’s still the client side check

tulip kraken
#

Ok nvm apparently a new update soonTM will allow you to get this cuz they’ll make server send the cooldown remaining as a RPC to client

long dust
#

for in the new update, either patch this method to return a higher cooldown
or repeatedly call (albeit you might need to do this anyway incase your higher cooldown runs out)

_rpcType = RpcType.StrangleTimer;
ServerSendRpc(true);

on the Scp3114Strangle subroutine every so often

wild sapphire
#

Looking forward to the new update

wild sapphire
#

I set the jump up as an example to make sure I wasn't going crazy

#

Do I need to ServerSendRpc?

#

Actually yeah prob

#

Lemme try it

#

odd

#

Same issue

#

Got it

#

Had to inspect the code a little

#

Might be good to add setting the _rpcType and sending the packet to the client in the TriggerRpcCooldown

#

Maybe make it optional by having an extra parameter

long dust
#

As that calls triggerrpc

#

Which sets the cooldown

wild sapphire
#

Makes sense