cheatengine 5.8.24 → 5.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/pipe-client.js +12 -3
package/package.json
CHANGED
package/src/pipe-client.js
CHANGED
|
@@ -200,11 +200,20 @@ class PipeClient extends EventEmitter {
|
|
|
200
200
|
const messages = {
|
|
201
201
|
[ERROR_FILE_NOT_FOUND]: (
|
|
202
202
|
"Cheat Engine MCP Bridge not running. " +
|
|
203
|
-
"
|
|
203
|
+
"Steps to fix:\n" +
|
|
204
|
+
"1. Open Cheat Engine\n" +
|
|
205
|
+
"2. Table -> Show Cheat Table Lua Script\n" +
|
|
206
|
+
"3. Load or paste ce_mcp_bridge.lua\n" +
|
|
207
|
+
"4. Click Execute\n" +
|
|
208
|
+
"5. Wait for 'MCP' label to appear in CE toolbar"
|
|
204
209
|
),
|
|
205
|
-
[ERROR_PIPE_BUSY]: "Pipe busy - another client may be connected",
|
|
210
|
+
[ERROR_PIPE_BUSY]: "Pipe busy - another client may be connected. Wait a moment and try again.",
|
|
206
211
|
[ERROR_ACCESS_DENIED]: "Access denied - try running as administrator",
|
|
207
|
-
[ERROR_BROKEN_PIPE]:
|
|
212
|
+
[ERROR_BROKEN_PIPE]: (
|
|
213
|
+
"Connection lost to Cheat Engine. " +
|
|
214
|
+
"This happens when CE is closed. " +
|
|
215
|
+
"Please restart CE and reload ce_mcp_bridge.lua"
|
|
216
|
+
),
|
|
208
217
|
};
|
|
209
218
|
|
|
210
219
|
const baseMsg = messages[winerrorCode] || `Connection failed (error ${winerrorCode})`;
|