| View previous topic :: View next topic |
| Author |
Message |
Erazi How do I cheat?
Reputation: 0
Joined: 02 Nov 2018 Posts: 2
|
Posted: Fri Nov 02, 2018 1:40 pm Post subject: Why do i get this screen opening a cheat table |
|
|
After seeing videos in youtube i dont understand why after opening a cheat table it expands like in a advance way and not easy way
| Description: |
|
| Filesize: |
145.67 KB |
| Viewed: |
1749 Time(s) |

|
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
| Back to top |
|
 |
TheyCallMeTim13 Wiki Contributor
Reputation: 51
Joined: 24 Feb 2017 Posts: 976 Location: Pluto
|
Posted: Fri Nov 02, 2018 1:51 pm Post subject: |
|
|
It just uses some Lua to "enable compact mode", basically calls a "enableCompactMode" function when the table is loaded and the table Lua script is ran.
| Code: |
function disableCompactMode()
control_setVisible(wincontrol_getControl(MainForm, 0), true)
control_setVisible(wincontrol_getControl(MainForm, 3), true)
end
function enableCompactMode()
control_setVisible(wincontrol_getControl(MainForm, 0), false)
control_setVisible(wincontrol_getControl(MainForm, 3), false)
end |
If you look in the "debug" section there's a "helpers" section that has scripts to call these functions as well, to make updating/modifying the table easier.
_________________
|
|
| Back to top |
|
 |
Erazi How do I cheat?
Reputation: 0
Joined: 02 Nov 2018 Posts: 2
|
Posted: Fri Nov 02, 2018 3:03 pm Post subject: |
|
|
| so if i have to edit the table and disable this function is that correct?
|
|
| Back to top |
|
 |
TheyCallMeTim13 Wiki Contributor
Reputation: 51
Joined: 24 Feb 2017 Posts: 976 Location: Pluto
|
Posted: Fri Nov 02, 2018 11:01 pm Post subject: |
|
|
Yeah, you can comment out the call to "enableCompactMode". But be ready to deal with some Lua to edit the table.
_________________
|
|
| Back to top |
|
 |
|