Posted: Fri Dec 28, 2018 6:36 am Post subject: Whats all cheat engine forms?
I know that Cheat Engine has MainForm as main form that popup with his panels.
I need all Forms from Cheat Engine , can someone give?
And btw I ned too the panels name, checkboxes...
for i = 0, getFormCount() - 1 do
local f = getForm(i)
print(f.Caption)
end
As for GitHub, look at the .lfm files to see names of components. If you're having trouble identifying which component is the right cone, cross reference events (e.g. OnClick) with their implementation in the respective .pas file.
You could also loop over components in the same way:
Code:
for i = 0, MainForm.ComponentCount - 1 do
print(MainForm.Component[i].Name)
end
_________________
I don't know where I'm going, but I'll figure it out when I get there.
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