You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-2Lines changed: 31 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,14 +50,43 @@ The installation of chalchiu is fairly simple:
50
50
* A Folder named `mods` is created in the game directory
51
51
* Your Game Window Title includes information about the loaded mods
52
52
53
+
# Coromon
54
+
55
+
<details><summary>Continue Reading...</summary>
56
+
<p>
57
+
58
+
Here you'll find information about the provided Coromon mods!
59
+
60
+
All mods are tested with the latest game version <sub><sup>(v1.1.2 at the time of writing)</sup></sub>, don't let that stop you from trying them on other game versions though!
61
+
62
+
## Available Mods
63
+
64
+
- Trainer
65
+
> A simple trainer, which allows you to fun things like noclip, max out all your coromon, and speed up the game!
66
+
>
67
+
> When using the `Mod Info` mod, you can take a look at the available hotkeys in the mod list.
> Shows information about the currently loaded mods, on game startup.
76
+
Also adds a button to the pause menu (top right corner), which allows you to bring up the menu again!
77
+

78
+
79
+
</p>
80
+
</details>
81
+
53
82
# For Modders
54
83
55
84
<details><summary>Continue Reading...</summary>
56
85
<p>
57
86
58
87
## Example Mods
59
88
60
-
You can find some example mods in the [examples](./examples/) folder.
89
+
You can find some example mods in the [scripts](./scripts) folder.
61
90
62
91
A `debug` mod is also included, which will dump all modules loaded by the game into the log.
63
92
This is especially useful when you don't want to unpack the precompiled lua scripts the game uses, as just having information on the game modules is often enough to get started.
@@ -104,7 +133,7 @@ Hooks are an essential part of mods, as they allow you to modify modules loaded
104
133
105
134
Hooks in chalchiu allow you to intercept lua `require` calls, which allows you to e.g. modify the original table and replace certain game logic with your own.
106
135
107
-
All you need is the name of a `module` you want to hook. _(To get a list of modules you can use the [debug mod](examples/debug/))_
136
+
All you need is the name of a `module` you want to hook. _(To get a list of modules you can use the [debug mod](scripts/debug/))_
0 commit comments