CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 03:15:39 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=5bd40e7dc1548297fe194da75afcc974e6ec0c26e163e54392fb9b5fcfcad231a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22I8bOJH0ht4T4tPqU9Yx9LuOER4YE6MyW%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d36f19ebb5c17c-BLR
Kid Friendly Basic Quest - Map Name Position - Pastebin.com
SHARE
TWEET

Kid Friendly Basic Quest - Map Name Position
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ╔═════════════════════════════════════╦════════════════════╗
- # ║ Title: KFBQ Map Name Position ║ Version: 1.00 ║
- # ║ Author: Roninator2 ║ ║
- # ╠═════════════════════════════════════╬════════════════════╣
- # ║ Function: ║ Date Created ║
- # ║ ╠════════════════════╣
- # ║ FFMQ Style Map Name Shown ║ 09 Mar 2023 ║
- # ╚═════════════════════════════════════╩════════════════════╝
- # ╔══════════════════════════════════════════════════════════╗
- # ║ Instructions: ║
- # ║ ║
- # ║ Script sets the position and display of the Map Name ║
- # ║ on the screen. ║
- # ╚══════════════════════════════════════════════════════════╝
- # ╔══════════════════════════════════════════════════════════╗
- # ║ Terms of use: ║
- # ║ Free for all uses in RPG Maker - Except nudity ║
- # ╚══════════════════════════════════════════════════════════╝
- #==============================================================================
- # ** Window Map NAme
- #==============================================================================
- class Window_MapName < Window_Base
- #--------------------------------------------------------------------------
- # * Initialize
- #--------------------------------------------------------------------------
- def initialize
- x = (Graphics.width - window_width) / 2
- y = Graphics.height - 150
- super(x, y, window_width, fitting_height(1))
- self.opacity, self.contents_opacity, @show_count = 0, 0, 0
- refresh
- end
- #--------------------------------------------------------------------------
- # * Update Fadein
- #--------------------------------------------------------------------------
- def update_fadein
- self.opacity += 32 unless $game_map.display_name.empty?
- self.contents_opacity += 16
- end
- #--------------------------------------------------------------------------
- # * Update Fadeout
- #--------------------------------------------------------------------------
- def update_fadeout
- self.opacity -= 16 unless $game_map.display_name.empty?
- self.contents_opacity -= 16
- end
- #--------------------------------------------------------------------------
- # * Refresh
- #--------------------------------------------------------------------------
- def refresh
- contents.clear
- return if $game_map.display_name.empty?
- draw_text(contents.rect, $game_map.display_name, 1)
- end
- end
- #==============================================================================
- # ** Scene_Map
- #==============================================================================
- class Scene_Map < Scene_Base
- #--------------------------------------------------------------------------
- # * Start
- #--------------------------------------------------------------------------
- alias r2_map_start_name start
- def start
- r2_map_start_name
- display_name
- end
- #--------------------------------------------------------------------------
- # * Display Name
- #--------------------------------------------------------------------------
- def display_name
- return if @shown_name == true
- @map_name_window.open
- @shown_name = true
- end
- end
Tags:
rpg maker vx ace
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ O
JavaScript | 1 sec ago | 0.25 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 7 sec ago | 0.25 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 9 sec ago | 0.10 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ G
JavaScript | 16 sec ago | 0.25 KB
-
⭐⭐⭐MAKE $500 IN 15 MIN⭐⭐
Java | 20 sec ago | 0.10 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ X
JavaScript | 25 sec ago | 0.25 KB
-
⭐⭐⭐GMAIL Logs (2FA disabled)⭐⭐
Java | 30 sec ago | 0.10 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ X
JavaScript | 34 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand