Version: 1.0.0

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+

Preview:

spoiler

Instruction:

spoiler
The 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 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[index] = value;
}
  return acc;
}, {});

3. Enabled switches:
data.enabledSwitches = $gameSwitches._data.reduce((acc, value, index) => {
if (value) {
  acc.push(index);
}
  return acc;
}, []);

“Help” languages: English, Russian

Terms of use

How to get a commercial license

Downloads:

Plugin:

DK_Send_Error.js (18.5 KB)
(Last update: 23 September 2020 13:16)


Related Posts