def [](key) return @data[key] == true ? true : false end
def [](switch_id) if switch_id <= 5000 and @data[switch_id] != nil return @data[switch_id] else return false end end
无脑之人 发表于 2014-2-15 19:14 1.这里的 key 是一个由地图id 事件id 字符("A","B","C"...可以说任何对象都可以)组成的数组 2.开关和变量 ...