Hi, ive made this simple script that displays elements that are not displayed in the menu such as LOLZ.
Here is a list of all of the elements it unhides:
If you think that an element is actually not hidden or you have found a new hidden element, feel free to post in the comments about it.
Script: V1
I use this one. Slightly more portable, moves elements from SC_CRACKER2 to SC_SPECIAL.
elem.loadDefault()
local valid = {}
for key, value in next, elem do
if key:find("SC_") then
valid[value] = true
end
end
for ix = 0, 255 do
pcall(function()
if not valid[elem.property(ix, "MenuSection")] then
elem.property(ix, "MenuSection", elem.SC_SPECIAL)
end
elem.property(ix, "MenuVisible", 1)
end)
end
What I forgot to mention is that this does unhide some elements your script does not, more specifically BIZS, SHD2, SHD3, SHD4, EQVE, PSTS, VIRS and VIRG.