This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
NewerOlder