LeFiXER Grandmaster Cheater Supreme Reputation: 20 Joined: 02 Sep 2011 Posts: 1066 Location: 0x90
|
Posted: Fri Jun 17, 2022 7:15 pm Post subject: |
|
|
Save this as a Lua file and place it in the autorun folder of Cheat Engine:
Code: |
function compactMode()
getMainForm().Panel5.Visible = not getMainForm().Panel5.Visible
end
function addCompactMenu()
local parent = getMainForm().Menu.Items
cMenu = createMenuItem(parent)
parent.add(cMenu)
cMenu.Caption = 'Toggle Compact'
cMenu.OnClick = compactMode
end
addCompactMenu()
|
|
|