Skip to content

Instantly share code, notes, and snippets.

View outsider31000's full-sized avatar
🎯
Focusing

Outsider outsider31000

🎯
Focusing
View GitHub Profile
@outsider31000
outsider31000 / wearablestates.lua
Created July 30, 2024 10:31
wearable states RedM
--[[
'BASE',
'BASE_COAT_OPEN',
'BASE_COAT_OPEN_GLOVE',
// '?----',
'BASE_GLOVE',
'BASE_VEST',
'BASE_VEST_COAT_OPEN',
'BASE_OVERALLS',
'BASE_OVERALLS_COAT_OPEN',
@outsider31000
outsider31000 / dump.lua
Last active December 5, 2022 16:25
dump function
function KeyValueTableDump(myObject, newLine)
if type(myObject) ~= "table" then
return tostring(myObject)
end
local rtnString = ""
for key, value in pairs(myObject) do
if type(key) ~= "number" then
key = "" .. key .. ""
end