I tried a few different CMS's (Ring Menu, Side Menu, etc.), and never had any problems with it. Both use the RGSS, which is based off of Ruby, a fairly common programming language, so it wouldn't make any sense why any scripts wouldn't work in both. That's probably more of a problem with the font from the Main script. All you'd would need to do is replace it with this and it should work:
Code:
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
$fontface = $defaultfonttype = $fontname = Font.default_name = "Arial"
$fontsize = $defaultfontsize = Font.default_size = 22
# Prepare for transition
Graphics.freeze
# Make scene object (title screen)
$scene = Scene_Title.new
# Call main method as long as $scene is effective
while $scene != nil
$scene.main
end
# Fade out
Graphics.transition(20)
rescue Errno::ENOENT
# Supplement Errno::ENOENT exception
# If unable to open file, display message and end
filename = $!.message.sub("No such file or directory - ", "")
print("Unable to find file #{filename}.")
end
It changes the default font from "Tahoma" to "Arial", and is the most common fix if text isn't showing up. You can also change the word "Arial" in the script to any font your computer has and it will use that (Times New Roman, Broadway BT, etc.).