=begin CSCA GameInfo version: 1.0.1(August 26, 2012) Created by: Casper Gaming (https://www.caspergaming.com/) Compatibility: Made for RPGVXAce IMPORTANT: ALL CSCA Scripts should be compatible with each other unless otherwise noted. UPDATE HISTORY: version 1.0 -original script version 1.0.1 -Bugfix, gameinfo no longer appears above load window. INTRODUCTION: This script draws some additional information on the title screen, as well as opening a file at game start/exit(commercial games may use this feature in demo's to prompt the player to buy the full version). FEATURES: -Can draw a version number on title screen. -Can draw copyright info on the title screen. -Can open a file at game start and game exit. SETUP Script requires set up below. CREDIT and TERMS: Please visit https://www.caspergaming.com/terms-of-use/ for terms of use and credit guidelines =end module CSCA module GAMEINFO # SETUP BEGIN # #Text Setup #If not using a text option, set it to "" VERSION = "Version: " # Version text. VERSION_ID = "1.0" # Version number, is using custom version. COPYRIGHT = "©CasperGaming" # Copyright text. © ® ™ WEBSITE = "www.caspergaming.com" # Website text. #Popup Setup - set all to false if not using this feature. FILE = "demoscreen.html" # File name (Same directory as Game.exe) DEBUG = false # Open file even during game test? STARTUP = true # Open file on game start? GAMEEND = true # Open file on game end? #Misc Setup FONT_SIZE = 20 # Size of the font. ONE_STRING = true # Treat all text as one string? (Alignment difference) SPACING = " " # Spacing between texts. Only valid if ONE_STRING is true. CUSTOM_VERSION = true # Use custom version number(true) # or use a generated version number(false) # END SETUP # end end $imported = {} if $imported.nil? $imported["CSCA-GameInfo"] = true #============================================================================== # ** SceneManager #------------------------------------------------------------------------------ # Opens a file on exit(optional). # Aliases: exit #============================================================================== module SceneManager #-------------------------------------------------------------------------- # * Alias Method #-------------------------------------------------------------------------- class <