survivreloaded-server icon indicating copy to clipboard operation
survivreloaded-server copied to clipboard

An open source server for the defunct online game surviv.io. Work in progress.

Results 2 survivreloaded-server issues
Sort by recently updated
recently updated
newest added

This code doesn't implement surviv.io's timer system correctly: https://github.com/HasangerGames/survivreloaded-server/blob/9cfcaf19f5bfad61d9bd6fd7789e6d55f0c86a45/src/game/objects/player.ts#L668-L673 In the "old system" before the double pump nerf around Sep 2018, it should be ```ts weaponCooldownOver(): boolean { return Date.now()...

These values don't feel right: https://github.com/HasangerGames/survivreloaded-server/blob/9cfcaf19f5bfad61d9bd6fd7789e6d55f0c86a45/src/game/game.ts#L284-L290 Based on the wiki article (https://survivio.fandom.com/wiki/Adrenaline), it should be ```ts if (p.boost > 0) p.boost -= 0.01125; // Health regeneration from adrenaline if (p.boost...