【发布时间】:2014-07-31 10:57:09
【问题描述】:
希望从数组内部的数组中获取信息,基本上没有确切的信息。
local cfg_raids = {
[2] =
{
["10:17"] = {
raidName = "Rats - Thais",
Event_Type = "Raid Activated",
Storage = 1234,
alreadyExecuted = false
},
["10:20"] = {
raidName = "Testing this shit",
Event_Type = "Raid Activated",
Storage = 1235,
alreadyExecuted = false
},
},
[3] =
{
["12:00"] = {
raidName = "OrcsThais",
Event_Type = "Raid Activated",
Storage = 1236,
alreadyExecuted = false
},
},
试图在没有确切时间戳的情况下随机获取时间。
就像当脚本激活时间戳数组 ["10:17"] 时,它会在不知道 ["10:20"] 的情况下获取所有下一个数组信息 ["10:20"]
打开胫骨信息:http://otland.net/threads/looking-for-some-assistance-on-a-script.216303/
【问题讨论】: