中间加密的部分
[Lua] 纯文本查看 复制代码 On = false
timelimit1 = "2022/03/12 00:00:00"
timelimit2 = "2022/07/12 00:00:00"
Qq = "308355559"
while zuozheQQ ~= Qq do
MoveMouseTo(math.random(1, 65535), math.random(1, 65535))
Sleep(50)
end
EnablePrimaryMouseButtonEvents(true)
function OnEvent(event, arg)
if GetDate("%Y/%m/%d %H:%M:%S") > timelimit2 then
OutputLogMessage("time is out ,please contact zuozhe QQ:%s\n\n ", zuozheQQ)
OutputLogMessage("time:%s\n", GetDate("%Y/%m/%d %H:%M:%S"))
end
if GetDate("%Y/%m/%d %H:%M:%S") > timelimit1 and GetDate("%Y/%m/%d %H:%M:%S") < timelimit2 then
--OutputLogMessage("Event: "..event.." Arg: "..arg.."\n")
if event == "MOUSE_BUTTON_PRESSED" and arg == LianYu then
On = true
if On then
ClearLog()
OutputLogMessage("LianYu--On\n")
end
end
if event == "MOUSE_BUTTON_RELEASED" and arg == LianYu then
On = false
ClearLog()
OutputLogMessage("LianYu--Off\n")
end
if On then
if IsMouseButtonPressed(LianYu) then
repeat
PressMouseButton(1)
Sleep(math.random(LMIN, LMAX))
ReleaseMouseButton(1)
Sleep(math.random(YUMIN, YUMAX))
until not IsMouseButtonPressed(LianYu)
end
end
end
end
|