RPG Maker Forums

Made for a request here.

This script make uses of the map name window and let you display short texts with it that fades in and out just like the map names.

So you may use it to display achievements, chapters or any other short texts you like.



Features:

Short text that fades in and out

How to use:

[1] Paste this script below Material and above Main

[2] Use this script call to display text on screen:

quick_text("Your Text Here")Compatibility:

This script overwrites how the map name window works. If you have other custom scripts that overwrite how the map name window works, there can be conflicts.

Terms of Use:

Free for both commercial and non-commercial.

Script:

Code:
#==============================================================================# ■ Meow Face Display Quick Text#------------------------------------------------------------------------------# Display a quick text pop up in the Map window#==============================================================================# How to Use:# [1] Paste this below Material and above Main# [2] Use this script call to display the text on screen#     quick_text("your text here")#==============================================================================class Game_Map  attr_accessor :show_achievement  attr_accessor :achievement_text  alias meow_gm_achievement_init initialize  def initialize    meow_gm_achievement_init    @show_achievement = false    @achievement_text = "text"  end  def display_achievement_show    SceneManager.scene.show_achievement_text  end  alias meow_update_achievement_mn update  def update(main = false) #alias    meow_update_achievement_mn(main)     display_achievement_show if @show_achievement  endendclass Game_Interpreter  def quick_text(text)    $game_map.achievement_text = text    $game_map.show_achievement = true  endendclass Window_MapName < Window_Base  def refresh #overwrite    contents.clear    if $game_map.show_achievement == true      draw_background(contents.rect)      draw_text(contents.rect, $game_map.achievement_text, 1)      $game_map.show_achievement = false    else      unless $game_map.display_name.empty?        draw_background(contents.rect)        draw_text(contents.rect, $game_map.display_name, 1)      end    end  endendclass Scene_Map < Scene_Base  def show_achievement_text    @map_name_window.open  endend

Latest Threads

Latest Posts

Latest Profile Posts

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.
Can someone recommend some fun story-heavy RPGs to me? Coming up with good gameplay is a nightmare! I was thinking of making some gameplay platforming-based, but that doesn't work well in RPG form*. I also was thinking of removing battles, but that would be too much like OneShot. I don't even know how to make good puzzles!
one bad plugin combo later and one of my followers is moonwalking off the screen on his own... I didn't even more yet on the new map lol.
time for a new avatar :)

Forum statistics

Threads
106,017
Messages
1,018,354
Members
137,801
Latest member
topsan
Top