Autostart one Parallel Common Event

Murakui

Warper
Member
Joined
May 1, 2019
Messages
2
Reaction score
3
First Language
German
Primarily Uses
RMMV
Hello Guys,

i needed to build a plugin to start one common event parallel, when a map is loaded.
When you need something similar you can download the plugin or see how it works in the spoiler.

Code:
//=============================================================================
// MURA_RunParalell.js v1
//=============================================================================
"use strict";
var Imported = Imported || {};
Imported.MURA_RunParalell = true;

var Murakui = Murakui || {};
Murakui.RunParalell = Murakui.RunParalell || {};

//=============================================================================
// Plugin Parameters
//=============================================================================
/*:
 * @plugindesc process one common event anytime
 * @author murakui
 *
 * @param Event ID
 * @desc 1-9999
 * @default 1
 *
 * @help This plugin runs one of the common events globally at any map.
 *
 * Please select one common event that contains the trigger: 'Paralell'
 * and select a switch.
 *
 * When the map is loaded the gameengine updates the switch to true,
 * that will trigger the common event permanently as long the game is running.
 *
 */
(function ($rp) {

    $rp.parameters = PluginManager.parameters('MURA_RunParalell');
    $rp.eventId = $rp.parameters['Event ID'];

    Game_CommonEvent.prototype.isActive = function () {
        $rp.changeSwitchForEvent(this.event());
        return $rp.isTriggerParalell(this.event().trigger) && $rp.isSwitchOn(this.event().switchId);
    };
 
    $rp.changeSwitchForEvent = function (event) {
        if (!$rp.isSwitchOn(event.switchId) && $rp.isEventIdEqual(event.id)) {
            $rp.setSwitch(event.switchId, true);
        };
    };

    $rp.isSwitchOn = function (switchId) {
        return $gameSwitches.value(switchId);
    };

    $rp.isTriggerParalell = function (trigger) {
        return trigger == 2;
    };

    $rp.isEventIdEqual = function (eventId) {
        return $rp.eventId == eventId;
    }

    $rp.setSwitch = function (switchId, bool) {
        $gameSwitches.setValue(switchId, bool);
    }

})(Murakui.RunParalell);

regards,
Mura

Terms of Use: Can be used freely.
 

Attachments

Last edited:

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Profile Posts

Day 9 of giveaways! 8 prizes today :D
He mad, but he cute :kaopride:

Our latest feature is an interview with... me?!

People4_2 (Capelet off and on) added!

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.

Forum statistics

Threads
106,037
Messages
1,018,464
Members
137,821
Latest member
Capterson
Top