cheatengine * Lua脚本错误值为零

时间:2016-02-22 21:17:34

标签: lua cheat-engine

所以我一直在努力制作一个按下的按钮转到一个链接并切换为Enabled为false所以你不能再点击它了

function CEButton1Click(sender)
shellExecute("https://www.youtube.com/user/thenerd40?sub_confirmation=1")
CEButton1.Enabled=false
end

以上是我到目前为止所做的,但它似乎没有起作用。

1 个答案:

答案 0 :(得分:1)

作弊引擎的文档非常缺乏,但该函数中的发送者实际上是按钮本身。这意味着你可以简单地做到

sender.Enabled = false

并成功禁用该按钮。

It works!