I have to add something here. I used 7.5 for long enough to see this window "add address manually" to keep growing in width. So I hope that is fixed.
...
If it annoys you that much make a .txt file paste this code in, change the file extension to .lua and move it to the "cheatengine\autorun" directory (I know you might know all that but I am making sure)
Code:
local function change_address_mod(form)
local adjust = 12 --you can change this number to your liking
form.hide()
form.cbPointer.BorderSpacing.Bottom = adjust
createTimer(1, function() form.show() end)
end
if change_address_mod_id then
unregisterFormAddNotification(change_address_mod_id)
change_address_mod_id = nil
end
change_address_mod_id = registerFormAddNotification(function(form)
if form.ClassName ~= "TformAddressChange" and form.Caption ~= "Add address" then return end
createTimer(1, change_address_mod, form)
end)
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum