Ok, here's a snippet i made a while ago, for my purposes, But i think it might be quite useful to others to:
This script allows you to test the game on multiple windows, allowing you to test something, then test another without having to hit new game each time. If you close the main playtest window, you can also edit whilst testing (but changes only apply after)
CODE
#==============================================================================
# ** Multi-threader snippet by Omegazion
#------------------------------------------------------------------------------
# This snippet allows you to run your game in multiple threads, allowing
# you to test different things simultaneously.
#
# You can only run this during play test at the RPGVX's editor.
#==============================================================================
BEGIN {
#----------------------------------------------------------------------------
# * Set the number of additional threads here
#----------------------------------------------------------------------------
number_of_additional_threads = 4
#==============================================================================
if $TEST
number_of_additional_threads.times do
Thread.new{ system( "Game")}
end
else
$TEST = true
end
}