View previous topic :: View next topic |
Author |
Message |
cancandodo Advanced Cheater
Reputation: 0
Joined: 09 Mar 2012 Posts: 70
|
Posted: Sun Feb 03, 2019 4:56 pm Post subject: how to change the default line space when we make trainer? |
|
|
when use the "Generate generic trainer lua srcipt from table " button,
it will creat a auto hotkey function panel
but the defaul line space is 38
how to change the defaul line spae?
Description: |
|
Filesize: |
180.32 KB |
Viewed: |
2504 Time(s) |

|
|
|
Back to top |
|
 |
OldCheatEngineUser Whateven rank
Reputation: 20
Joined: 01 Feb 2016 Posts: 1586
|
Posted: Sun Feb 03, 2019 5:31 pm Post subject: |
|
|
"design userinterface manually"
_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
STN wrote: | i am a sweetheart. |
|
|
Back to top |
|
 |
cancandodo Advanced Cheater
Reputation: 0
Joined: 09 Mar 2012 Posts: 70
|
Posted: Sun Feb 03, 2019 5:59 pm Post subject: |
|
|
OldCheatEngineUser wrote: | "design userinterface manually" |
i know ,but it is too much trouble
i have 20 hotkey, everytime refresh my trainer,i need to change top manually 20times
|
|
Back to top |
|
 |
Corroder Grandmaster Cheater Supreme
Reputation: 75
Joined: 10 Apr 2015 Posts: 1668
|
Posted: Sun Feb 03, 2019 8:12 pm Post subject: |
|
|
1. Generate generic trainer
2. Design userinterface manually
3. 1st save as CT file
4. Open that saved CT file
5. Edit trainer form there
6. 2nd save with all permanent trainer interface (save should be CETRAINER, EXE or CT file)
7. Done
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL |
|
Back to top |
|
 |
mgr.inz.Player I post too much
Reputation: 222
Joined: 07 Nov 2008 Posts: 4438 Location: W kraju nad Wisla. UTC+01:00
|
Posted: Sun Feb 03, 2019 10:27 pm Post subject: |
|
|
1. click "generate generic trainer"
2. type process name
3. select output "script only"
4. click generate
5. close "lua script" and "trainer generator" window
6. save as CT file (better with different name), just click save icon. You can open this file when something goes wrong.
7. now, click menu Table->CETrainer->Edit , "Form Designer" will show up
8. in Lua Engine (CTRL+SHIFT+ALT+L in main CE window) execute this script:
Code: | start=30
space=25
for i=0,200 do
local tcheat=CETrainer['CHEAT'..i]
if tcheat~=nil then
tcheat.Top = start+i*space
end
end |
you can play with start and space variables and execute above script multiple times.
9. close "Form Designer"
10. save as CT file
11. Now you can do whatever you want, save as EXE(Gigantic/Tiny), CETRAINER (protected or not)
_________________
|
|
Back to top |
|
 |
|