Difference between revisions of "Sandbox"
(Major overhaul of the post.) |
|||
| Line 148: | Line 148: | ||
| c | | c | ||
|} | |} | ||
| + | |||
| + | <syntaxhighlight lang="lua"> | ||
| + | for i=1,20 do print("beep") end | ||
| + | </syntaxhighlight> | ||
| + | |||
Always preview edits to verify formatting and layout before saving. | Always preview edits to verify formatting and layout before saving. | ||
Latest revision as of 15:24, 25 June 2026
⚠️ This page still needs significant improvements.
Please help by expanding or correcting this article where possible.
For suggestions or discussion, see the talk page.
Contents
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) 15:37, 3 December 2025 (UTC)
--15:37, 3 December 2025 (UTC)
Lists[edit]
- Bulleted list
- Second item
** Nested item
- Numbered list
- 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.
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 |
for i=1,20 do print("beep") end
Always preview edits to verify formatting and layout before saving.
