Save-Point
Parellel Proccess Checker - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Material Development (https://www.save-point.org/forum-8.html)
+--- Forum: Scripts Database (https://www.save-point.org/forum-39.html)
+--- Thread: Parellel Proccess Checker (/thread-5303.html)



Parellel Proccess Checker - DerVVulfman - 10-15-2014

Parellel Proccess Checker
Version: 1.1





Introduction

This script is designed to examine if one (or more) parallel processes are currently running in your game. It will search through both map events and common events, and only deliver information on the parallel processes that have been triggered and are currently running.

Unlike my more recent additions, this merely delivers a pop-up window that informs game developers of the needed data, and will only execute when the game developer presses the hotkey combination in debug mode.




Script

The Script






Instructions

Too simple. Install it under your scripts and run the game. Press the hotkey combo to see if any parallel processes are running.





Credits

Thanks given to MechanicalPen who put forth the request. It was a fun exercise.






Compatibility
Designed for use with RPGMaker XP and currently with the Beta version of the ReGaL gaming system in the works.


RE: Parellel Proccess Checker - yamina-chan - 10-15-2014

*edit*

Well, that was quick. XD Nice work =D

(Sorry, was watching a Livestream in german and got mixed up in the language there for a second Xb)


RE: Parellel Proccess Checker - Kain Nobel - 10-18-2014

This is awesome!

The only thing I'd probably change is to have it read from $data_common_events directly instead of allocating the @common_list instance variable; both copies of data would exist throughout the game session. Essentially you could remove the set_resource_database method and replace it with the following...

Example:
Code:
def common_list
    $data_common_events
  end

Then just Replace-All the @common_list instance for common_list hook function and you should be good to go :)


RE: Parellel Proccess Checker - penguwin - 11-10-2014

Amaze!