Skip to content

Instantly share code, notes, and snippets.

@TankNut
TankNut / 00_preface.md
Last active August 20, 2024 17:03
A summary of the Entropy : Zero 2 ARG

Axon Pariah and Progenitors

Here's the official post that all of this was building up to, most of this info is either incorrect or outdated now but I'm leaving this up for people to enjoy looking through

And thanks for the shoutout! It was a blast getting to theorize about all of this stuff

SPOILERS AHEAD

If you are looking to solve these puzzles yourself, start with this post on the steam forums and don't read any further

This writeup includes a lot of speculation and shouldn't be taken as a source of truth, don't assume something is true just because a random guy on the internet said so

@TankNut
TankNut / _rings.lua
Last active March 23, 2024 18:43
A small extension to Garry's Mod's rendering library that allows for rendering rings that mask themselves to the environment.
-- Rings! Not to be confused with Circles!
function render.StartRings()
render.SetStencilEnable(true)
render.ClearStencil()
end
function render.AddRing(pos, radius, thickness, steps)
local innerRadius = thickness < 0 and radius + thickness or radius
local outerRadius = thickness > 0 and radius + thickness or radius
@TankNut
TankNut / sv_netwatcher.lua
Last active May 4, 2021 00:18
A script for Garry's Mod that monitors and logs outgoing net library messages
--[[
Commands:
net_getinfo: Prints out stats about the X biggest and most common net messages, where X is the value of net_maxlines
net_getinfo <net message>: Prints out stats about a specific net message
net_reset: Resets the interval and counts used in net_getinfo
net_addfilter <net message>: Prevents a net message from being logged or shown in net_getinfo
net_removefilter <net message>: Removes a net message from the filter list
net_checkfilter: Prints out all net messages that are on the filter list