じ☆ve冰风 发表于 2026-7-9 08:48:01

Send Error - Send a POST request when an error is received to the specified URL

Title: Send Error
Version: 1.0.0
Author: DKPlugins
Description: Allows you to send a POST request when an error is received to the specified URL.

Compatibility:

[*]RPG Maker MV: 1.5+
[*]RPG Maker MZ: 1.0+

Instruction:
Spoiler: instructionThe plugin allows you to send a POST request when an error is received to the specified URL.
If the standard URL is used (https://dk-plugins.ru/notify.php),
then you need to specify your email address in the "Data" setting,
to which the message will be sent, and emailTitle - the title of the message.
Attention! The standard URL (https://dk-plugins.ru/notify.php) is configured to
to send error data to your mailbox. If you don't trust my customized script,
then you will have to implement your own.

Also you can add any data you need to the message, for example:
1. Information about the error itself (setting "Include error info")
2. Additional information about the error (setting "Include reference info").
This setting adds the following information: scene, map id, event id,
event page, last command executed and its index.
3. Add your information using Javascript.
Examples of data you can add.
1. Game version:
data.gameVersion = '1.0.0';

2. Changed variables:
data.variables = $gameVariables._data.reduce((acc, value, index) => {
if (value) {
acc = value;
}
return acc;
}, {});

3. Enabled switches:
data.enabledSwitches = $gameSwitches._data.reduce((acc, value, index) => {
if (value) {
acc.push(index);
}
return acc;
}, []);
Preview:
Spoiler: gif
https://dk-plugins.ru/wp-content/uploads/2020/09/GIF.gif

“Help” languages: English, Russian

Terms of use
You can:
-To use the plugin for your non-commercial projects
-Change code of the plugin

You cannot:
-Delete or change any information about the plugin
-Distribute the plugin and its modifications

Details on obtaining a commercial license on my website

Plugin page:https://dk-plugins.ru/send-error/


本贴来自国际rpgmaker官方论坛作者:DK处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/send-error-send-a-post-request-when-an-error-is-received-to-the-specified-url.127774/
页: [1]
查看完整版本: Send Error - Send a POST request when an error is received to the specified URL