Srlion

Results 20 issues of Srlion

Faster hook library I have released this on [workshop](https://steamcommunity.com/sharedfiles/filedetails/?id=1907060869) few months ago to make sure that it doesn't break anything. - This version is slightly different, this one is faster...

Enhancement

Linter allows this: ```lua fori = 1 , 3do end ``` It's kinda weird, but the problem is probably not with the for loop, but with `3do end` EDIT: yep...

Hey there! would it be possible to remove this `Unnecessary parentheses` warning, as in Lua parentheses could change how code works, some examples: ```lua local function ret3() return 1, 2,...

### Details When using the BLOB data type for data selection, the resulting output appears corrupted. After further testing, I found that gmod does not process BLOB data correctly. The...

- Use PNG as file ext, no need to check file ext type, as `Material` function will work even if the file format doesn't match. - Fix a bug where...

### Details Having this function can save performance on really simple shaders by avoiding the round trips between Lua and C++, as it will only be two trip from 8...

### Details This closes: - https://github.com/Facepunch/garrysmod-requests/issues/2489 - https://github.com/Facepunch/garrysmod-issues/issues/6023 - https://github.com/Facepunch/garrysmod-issues/issues/5105 It represents all types correctly in Lua: - TEXT - INTEGER - FLOAT - BOOL/BOOLEAN - BLOB - NULL except...

Fixes #64 Works exactly the same how it worked before, but now it won't throw an error for not being able to get the stack correctly, New message is: ```...

```lua return { cases = { { name = "love or hate, you gonna eat it", func = function() ("s"):gsub("s", function() return error("sfasf") end) end } } } ``` if...

The code for `HexToColor` looks complicated but it's actually just simple number operations, other methods cause like 3 allocations before allocating a new color.

Addition