of     1   

spinywind
#215830455Wednesday, May 03, 2017 3:00 AM GMT

You can have a metatable in a metatable and use metamethods from both? #Code print("Look behind you huehuehuehue")
Goulstem
#215837720Wednesday, May 03, 2017 5:37 AM GMT

I suppose bruh. local multimeta = setmetatable({}, setmetatable( {__call = function(b,c) print(c+2) end}, --First metamethod {__call=function(a,b) print(b) end} --Second, deep metamethod )) multimeta(1); --> 3 getmetatable(multimeta)("hi"); --> "hi" R$35,255
spinywind
#215837781Wednesday, May 03, 2017 5:39 AM GMT

Wow, that made my life easier. Ty. #Code print("Look behind you huehuehuehue")

    of     1