Page 1 of 1

CE mono crash

Posted: Sun Oct 02, 2022 6:48 pm
by xh93
hey,


anyone knows how to fix my problem with mono ?

it basicly crashes everytime






at the end the game crashes (not in the vid)

Re: CE mono crash

Posted: Mon Oct 03, 2022 2:50 pm
by BabyGroot
1. Try using this method.
Settings Cheat Engine like this
Image

2. And make this CODE as SCRIPT

Code: Select all

[ENABLE][/b]

{$lua}
OpenProcess("Replace this with the name of the game in the list process.exe")
if (LaunchMonoDataCollector())==0
then error ('Failure To Launch')
end

if getCEVersion() < 7.4 then showMessage("If you are getting this message means your Cheat Engine software is outdated. Please update to the latest Cheat Engine version! Latest official public release version can be found at https://cheatengine.org/\nYour Cheat Engine Version : "..getCEVersion().."\nLatest Public Cheat Engine Version : 7.4") --[[MainForm.close()]]
return end

{$asm}

luacall(function cycleFullCompact(sender,force); local state = not(compactmenuitem.Caption == 'Compact View Mode'); if force~=nil then state = not force end; compactmenuitem.Caption = state and 'Compact View Mode' or 'Full view Mode'; getMainForm().Splitter1.Visible = state; getMainForm().Panel4.Visible = state; getMainForm().Panel5.Visible = state; end; function addCompactMenu(); if compactmenualreadyexists then return end; local parent = getMainForm().Menu.Items; compactmenuitem = createMenuItem(parent); parent.add(compactmenuitem); compactmenuitem.Caption = 'Compact View Mode'; compactmenuitem.OnClick = cycleFullCompact; compactmenualreadyexists = 'yes'; end; addCompactMenu(); cycleFullCompact(nil,true))

[DISABLE]

luacall(cycleFullCompact(nil,false))
Example
Image
Hope this helps