butterCookie How do I cheat?
Reputation: 0
Joined: 28 Oct 2016 Posts: 1
|
Posted: Fri Oct 28, 2016 1:44 pm Post subject: Need help with this lua script |
|
|
Hi,
I have a request. I found a lua script that can copy the value field to clipboard automatically in cheat engine every 1/10 of a second. The value from the addresslist (lower part of cheat engine window).
function CopyAddresslistValuesToClipboard()
local al=getAddressList()
local values=""
for i=0, al.Count-1 do
values=values..al[i].Value.."\n\r\n\r"
end
writeToClipboard(values)
end
copytimer=createTimer(nil)
copytimer.OnTimer=CopyAddresslistValuesToClipboard
copytimer.Interval=100
copytimer.Enabled=true
I need to auto copy the value field as well except I don't want the script to copy based on a timer. I just want the value to be copied once every time it changes (updates). Any help would be appreciated. Thanks.
Edit: I would post the link of the page were I got this script from but its not letting me do so.
|
|