Results 1 to 15 of 379

Thread: EoFF RPG: Take #382

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Unimportant Passerby Rase's Avatar
    Join Date
    Aug 2003
    Location
    The United States of America.
    Posts
    5,948

    Default

    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.).
    Last edited by Rase; 10-25-2006 at 02:20 AM.
    Boy am I an unfunny ass.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •