moonsecV2 dump

使用https://goonlinetools.com/lua-beautifier/格式化lua

搜索,类似下图

请输入图片描述

while true do

在此代码前加入

local alreadyGot = {};

此代码下加入

for _,r in pairs(k) do
if (type(r) == "table") then
for i,v in pairs(r) do
local ItAintGot = true;
for _,item in ipairs(alreadyGot) do
if (item == v) then
ItAintGot = false;
end;
end;
if ItAintGot then
table.insert(alreadyGot, v);
print(i,v);
end;
end;
end;
end;

如图
请输入图片描述
在本例中

for _,r in pairs(k) do

中的"k"是

l = k[o]

中的"k"

本文链接:

https://openssw.com/2023/02/12/32.html
1 + 4 =
快来做第一个评论的人吧~