Difference between revisions of "Lua:fuckCheatEngine"

From Cheat Engine
Jump to navigation Jump to search
m (Reverted edits by CENSORSHIP (Talk) to last revision by TheyCallMeTim13)
(Major overhaul of the post.)
 
Line 1: Line 1:
 
[[Category:Lua]]
 
[[Category:Lua]]
'''fuckCheatEngine'''()
+
{{CodeBox|'''function''' fuckCheatEngine() ''':''' void}}
  Removes the ad window if it was showing
+
 
 +
Removes the Cheat Engine ad window if it is currently showing.
 +
 
 +
===Function Parameters===
 +
This function has no parameters.
 +
 
 +
===Returns===
 +
This function does not return a value.
 +
 
 +
===Examples===
 +
 
 +
====Remove the ad window====
 +
<syntaxhighlight lang="lua" line highlight="1">
 +
fuckCheatEngine()
 +
</syntaxhighlight>
 +
 
 +
====Call after Cheat Engine starts====
 +
<syntaxhighlight lang="lua" line highlight="3">
 +
sleep(500)
 +
 
 +
fuckCheatEngine()
 +
</syntaxhighlight>
 +
 
 +
====Use in an autorun script====
 +
<syntaxhighlight lang="lua" line highlight="2">
 +
if fuckCheatEngine ~= nil then
 +
  fuckCheatEngine()
 +
end
 +
</syntaxhighlight>
 +
 
 +
{{LuaSeeAlso}}

Latest revision as of 20:07, 25 June 2026

<> Lua API Reference

function fuckCheatEngine() : void

Removes the Cheat Engine ad window if it is currently showing.

Function Parameters[edit]

This function has no parameters.

Returns[edit]

This function does not return a value.

Examples[edit]

Remove the ad window[edit]

1 fuckCheatEngine()

Call after Cheat Engine starts[edit]

1 sleep(500)
2 
3 fuckCheatEngine()

Use in an autorun script[edit]

1 if fuckCheatEngine ~= nil then
2   fuckCheatEngine()
3 end

Main Pages

Core Lua documentation entry points

Lua
Script Engine