Skip to content

Instantly share code, notes, and snippets.

-- INSTALLATION INSTRUCTIONS:
-- 1) copy this file into garrysmod/lua/diagnostic-dump.lua creating the file if it does not exist
-- 2) run the script by loging into your rcon or commandline and typing lua_openscript diagnostic-dump.lua
-- 3) copy the text in garrysmod/data/diagnostic-dump.txt and upload it to hastebin.com or pastebin.com and provide it as a link in your
-- support ticket.
local dumpers = {}
local biggestHeaderLength = 0
local function dumpFunction(func)
@thelastpenguin
thelastpenguin / render-target-example.lua
Created December 5, 2015 21:23
Example of a working gmod render target
local texture = GetRenderTarget('uniquert'..os.time(), 512, 100, false)
local mat = CreateMaterial("uniquemat"..os.time(),"UnlitGeneric",{
['$basetexture'] = texture,
});
hook.Add('HUDPaint', 'sao', function()
local scrw, scrh = ScrW(), ScrH()
@thelastpenguin
thelastpenguin / hook-debug.lua
Last active December 5, 2015 20:51
A simple tool for logging and eventually debugging errors in hooks
require 'hook' -- make sure it's loaded
local function stringifyArgs(...)
local limit = select('#', ...)
local function stringifyHelper(n, a, ...)
if n > limit then return end
local t = type(a)
if t == 'player' then
return '('..n..') ' .. a:Name() .. "(" .. a:SteamID() .. ")", stringifyHelper(n + 1, ...)
elseif t == 'number' or t == 'string' then