View previous topic :: View next topic |
Author |
Message |
xiaoxi0215 How do I cheat?
Reputation: 0
Joined: 25 Feb 2022 Posts: 2
|
Posted: Fri Feb 25, 2022 5:19 am Post subject: Is there a big man who can |
|
|
The column below CE only has activation, and all other columns are gone. There was a description originally, but I pulled it to the side and it was gone, even if IT was maximized
Description: |
|
Filesize: |
62.58 KB |
Viewed: |
1985 Time(s) |

|
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Fri Feb 25, 2022 6:24 am Post subject: |
|
|
Open Lua Engine window by pressing Ctrl, Alt, Shift + L, paste this code then click execute:
Code: |
function resetwidths()
local mfw = getMainForm().Width
local dw = min(mfw / 5)
local o = 0
s[0].Width = min(dw / 3)
s[1].Width = min(dw * 2)
s[2].Width = min(dw / 2)
s[3].Width = min(dw / 2)
for i=0,3 do
o = o + s[i].Width
end
s[4].Width = o
end
resetwidths()
|
|
|
Back to top |
|
 |
xiaoxi0215 How do I cheat?
Reputation: 0
Joined: 25 Feb 2022 Posts: 2
|
Posted: Sat Feb 26, 2022 12:03 am Post subject: |
|
|
function resetwidths()
local mfw = getMainForm().Width
local dw = min(mfw / 5)
local o = 0
s[0].Width = min(dw / 3)
s[1].Width = min(dw * 2)
s[2].Width = min(dw / 2)
s[3].Width = min(dw / 2)
for i=0,3 do
o = o + s[i].Width
end
s[4].Width = o
end
resetwidths()
错误:[string "function resetwidths()
..."]:3: attempt to call a nil value (global 'min')
脚本错误
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25783 Location: The netherlands
|
Posted: Sun Feb 27, 2022 4:55 am Post subject: |
|
|
try math.min
or just run the reset settings program that comes with ce (ceregreset.exe)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Sun Feb 27, 2022 5:38 pm Post subject: |
|
|
xiaoxi0215 wrote: | function resetwidths()
local mfw = getMainForm().Width
local dw = min(mfw / 5)
local o = 0
s[0].Width = min(dw / 3)
s[1].Width = min(dw * 2)
s[2].Width = min(dw / 2)
s[3].Width = min(dw / 2)
for i=0,3 do
o = o + s[i].Width
end
s[4].Width = o
end
resetwidths()
错误:[string "function resetwidths()
..."]:3: attempt to call a nil value (global 'min')
脚本错误 |
Sorry, about the mishap:
Code: |
function resetwidths()
local mfw = getMainForm().Width
local dw = math.min(mfw / 5)
local o = 0
s[0].Width = math.min(dw / 3)
s[1].Width = math.min(dw * 2)
s[2].Width = math.min(dw / 2)
s[3].Width = math.min(dw / 2)
for i=0,3 do
o = o + s[i].Width
end
s[4].Width = o
end
resetwidths()
|
|
|
Back to top |
|
 |
|