Page 1 of 1

Methods of changing hotkeys

Posted: Fri Dec 09, 2022 1:45 pm
by FearlessWins
I'm trying to set multiple addresses to one hotkey to one value (More than one value would be ideal but im not asking the world)
The problem is right clicking each address or pressing ctrl H on each address is cumbersome.

im trying to add multiple addresses to 1 hotkey without having to go through and change hotkey on each one, i found a couple plugins but no success, i found this script

if ChangeValue~=nil then
ChangeValue.setKeys(nil);
end
ChangeValue = createHotkey(function ()
-- The following script will change all records in cheat engine
for i=1,getAddressList().getCount() do
local Address = getAddressList().getMemoryRecord(i-1);
-- If you want to increase the value by X value you may do this
Address.Value = Address.Value + 100;
-- You may also do this instead
-- Address.Value = 100;
end
end,VK_F4);

Maybe if someone broke it down to me, id understand it. like put your list of addresses here, put your values here, itd be semi helpful, unless i wanted the values to be different.

Re: Methods of changing hotkeys

Posted: Sat Dec 10, 2022 6:07 pm
by YoucefHam
FearlessWins wrote:
Fri Dec 09, 2022 1:45 pm
I'm trying to set multiple addresses to one hotkey to one value (More than one value would be ideal but im not asking the world)
The problem is right clicking each address or pressing ctrl H on each address is cumbersome.
......
Hi, Try this method
Image