79135 4 Posted June 4, 2020 Share Posted June 4, 2020 Hi, List<int> list= Lua.LuaDoString<List<int>>("local s={}; for i = 1,17 do _,s=GetInventoryItemLink('player', i):match('item:(%d+):(%d+)') end return s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8]"); How to return all lua array withoun spam(s[1]..s[2]..s[n]) after return? Link to comment https://wrobot.eu/forums/topic/12226-lua-array/ Share on other sites More sharing options...
Droidz 2738 Posted June 5, 2020 Share Posted June 5, 2020 Hi, List<int> list = Lua.LuaDoString<List<int>>("local s={}; for i = 1,17 do local l = GetInventoryItemLink('player', i) if l then local r=l:match('item:(%d+):(%d+)') table.insert(s, r) end end return unpack(s)"); Lua code formatted: local s={}; for i = 1,17 do local l = GetInventoryItemLink('player', i) if l then local r=l:match('item:(%d+):(%d+)') table.insert(s, r) end end return unpack(s) 79135 1 Link to comment https://wrobot.eu/forums/topic/12226-lua-array/#findComment-58631 Share on other sites More sharing options...
79135 4 Posted June 5, 2020 Author Share Posted June 5, 2020 Thanks you Link to comment https://wrobot.eu/forums/topic/12226-lua-array/#findComment-58632 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now