Plugin update! Mouse System v1.5.0 [PRO]

Что нового:

It is now possible to set conditions for activating an event on mouse hover, on click, and for custom cursors.

Use an end tag to tell the plugin to check for a condition, which is written between 2 tags.

Example: to activate the event on click, the condition is set that the click will work if switch 1 is on:
<click_activate>
$gameSwitches.value(1)
</click_activate>

Example: to trigger the mouseover event, the condition is set that the mouseover will work if switch 1 is on:
<hover_activate>
$gameSwitches.value(1)
</hover_activate>

Example: for custom cursor set to condition that it will be displayed if switch 1 is on:
<custom_cursor: filename>
$gameSwitches.value(1)
</custom_cursor>

You can combine several of these comments to customize different data for different conditions.

If you specify several of these settings, then the very first one that satisfies the condition will be used!