Difference between revisions of "Sandbox"

From Cheat Engine
Jump to navigation Jump to search
(Blanked the page)
(Major overhaul of the post.)
 
(32 intermediate revisions by 16 users not shown)
Line 1: Line 1:
 +
{{NeedWork}}
  
 +
== Cheat Engine Wiki Formatting Guide ==
 +
This guide provides a clear overview of how to format content in Cheat Engine Wiki pages.
 +
 +
=== Line Breaks ===
 +
Use <<nowiki/>br> to create a new line:
 +
 +
<pre>
 +
First line<br>Second line
 +
</pre>
 +
 +
'''Output''':
 +
 +
First line<br>Second line
 +
 +
=== Tables ===
 +
Tables are created with the {| ... |} syntax.
 +
 +
Two-column example:
 +
 +
<pre>
 +
{| border="0" cellpadding="5" cellspacing="0"
 +
|-
 +
| List Item One
 +
| Description of list item one
 +
|-
 +
| List Item Two
 +
| Description of list item two
 +
|}
 +
</pre>
 +
 +
'''Output''':
 +
{| border="0" cellpadding="5" cellspacing="0"
 +
|-
 +
|List Item One
 +
|Description of list item one
 +
|-
 +
|List Item Two
 +
|Description of list item two
 +
|}
 +
 +
Multiple-column example:
 +
 +
<pre>
 +
{| border="0" cellpadding="5"
 +
|-
 +
|Long item 1
 +
|Description 1
 +
|Extra info 1
 +
|-
 +
|Short item 2
 +
|Description 2
 +
|Extra info 2
 +
|}
 +
</pre>
 +
 +
'''Output''':
 +
{| border="0" cellpadding="5"
 +
|-
 +
|Long item 1
 +
|Description 1
 +
|Extra info 1
 +
|-
 +
|Short item 2
 +
|Description 2
 +
|Extra info 2
 +
|}
 +
 +
Tables automatically align columns based on the widest first column.
 +
 +
=== Headers ===
 +
Use == ... == for headers:
 +
 +
<pre>
 +
==Header Level 2==
 +
===Header Level 3===
 +
====Header Level 4====
 +
</pre>
 +
 +
'''Output''':
 +
==Header Level 2==
 +
===Header Level 3===
 +
====Header Level 4====
 +
 +
=== Signatures ===
 +
Add user signatures:
 +
 +
<pre>
 +
--~~~  # username
 +
--~~~~  # username + timestamp
 +
--~~~~~ # full timestamp
 +
</pre>
 +
 +
'''Output''':
 +
 +
--[[User:Leunsel|Leunsel]] ([[User talk:Leunsel|talk]])
 +
 +
--[[User:Leunsel|Leunsel]] ([[User talk:Leunsel|talk]]) 15:37, 3 December 2025 (UTC)
 +
 +
--15:37, 3 December 2025 (UTC)
 +
 +
=== Lists ===
 +
 +
* Bulleted list
 +
* Second item
 +
  ** Nested item
 +
 +
# Numbered list
 +
 +
# Second number
 +
 +
=== Text Formatting ===
 +
 +
* ''Italic''
 +
* '''Bold'''
 +
* '''''Bold & Italic'''''
 +
 +
<pre>
 +
''Italic''
 +
'''Bold'''
 +
'''''Bold & Italic'''''
 +
</pre>
 +
 +
=== Special Templates ===
 +
<pre>{{NeedWork}}</pre>        # Marks a section as needing work
 +
 +
'''Output''':
 +
 +
{{NeedWork}}
 +
 +
=== LUA Forms ===
 +
Create new forms via "Table -> Create Form". Forms appear in the menu with options to show or edit them.
 +
 +
[[File:FormMenu.png]]
 +
 +
=== Using Forms in LUA ===
 +
Forms can be accessed from LUA scripts to automate tasks or collect input.
 +
 +
=== Forum References ===
 +
*[http://forum.cheatengine.org/viewtopic.php?t=566695(http://forum.cheatengine.org/viewtopic.php?t=566695) Post] - Script for creating LUA scripts from forms
 +
 +
== Examples ==
 +
{| border="0" cellpadding="5"
 +
|-
 +
| a
 +
| b
 +
| c
 +
|}
 +
 +
Always preview edits to verify formatting and layout before saving.

Latest revision as of 15:37, 3 December 2025

⚠️ This page still needs significant improvements.

Please help by expanding or correcting this article where possible.
For suggestions or discussion, see the talk page.

Cheat Engine Wiki Formatting Guide[edit]

This guide provides a clear overview of how to format content in Cheat Engine Wiki pages.

Line Breaks[edit]

Use <br> to create a new line:

First line<br>Second line

Output:

First line
Second line

Tables[edit]

Tables are created with the {| ... |} syntax.

Two-column example:

{| border="0" cellpadding="5" cellspacing="0"
|-
| List Item One
| Description of list item one
|-
| List Item Two
| Description of list item two
|}

Output:

List Item One Description of list item one
List Item Two Description of list item two

Multiple-column example:

{| border="0" cellpadding="5"
|-
|Long item 1
|Description 1
|Extra info 1
|-
|Short item 2
|Description 2
|Extra info 2
|}

Output:

Long item 1 Description 1 Extra info 1
Short item 2 Description 2 Extra info 2

Tables automatically align columns based on the widest first column.

Headers[edit]

Use == ... == for headers:

==Header Level 2==
===Header Level 3===
====Header Level 4====

Output:

Header Level 2[edit]

Header Level 3[edit]

Header Level 4[edit]

Signatures[edit]

Add user signatures:

--~~~   # username
--~~~~  # username + timestamp
--~~~~~ # full timestamp

Output:

--Leunsel (talk)

--Leunsel (talk) 15:37, 3 December 2025 (UTC)

--15:37, 3 December 2025 (UTC)

Lists[edit]

  • Bulleted list
  • Second item
 ** Nested item
  1. Numbered list
  1. Second number

Text Formatting[edit]

  • Italic
  • Bold
  • Bold & Italic
''Italic''
'''Bold'''
'''''Bold & Italic'''''

Special Templates[edit]

{{NeedWork}}

# Marks a section as needing work

Output:

⚠️ This page still needs significant improvements.

Please help by expanding or correcting this article where possible.
For suggestions or discussion, see the talk page.

LUA Forms[edit]

Create new forms via "Table -> Create Form". Forms appear in the menu with options to show or edit them.

FormMenu.png

Using Forms in LUA[edit]

Forms can be accessed from LUA scripts to automate tasks or collect input.

Forum References[edit]

  • Post - Script for creating LUA scripts from forms

Examples[edit]

a b c

Always preview edits to verify formatting and layout before saving.