• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Search results

  1. Sunwave

    help metatable in lua

    I tried that way but I couldn't @River KA function table.copy(t) local ret = {} for k,v in pairs(t) do if type(v) ~= 'table' then ret[k] = v else ret[k] = table.copy(v) end end local metaTable = getmetatable(t) if metaTable then setmetatable(ret...
  2. Sunwave

    help metatable in lua

    friend, I inserted an element in the table, and right after I'm checking the size of the table
  3. Sunwave

    help metatable in lua

    I'm working with metatables and I need help, I have a table inside this metatable and I wanted to insert values into them and return this table, but when I create the metatable these values are 0 function Teste(cid) local player = Player(cid) if not player then return end local t...
Back
Top