local 状态文件="/sdcard/功能开关状态.txt"
local 当前状态="关闭"
local 文件=io.open(状态文件,"r")
if 文件 then
当前状态=文件:read("*a") or "关闭"
文件:close()
end
if 当前状态=="开启" then
service.click({{
"%下滑翻页"
}})
return true
end
return false