Quero deixar esse script:
Nesse lugar AKie:
https://2img.net/r/ihimg/photo/my-images/16/unled2copyoz.png/
- Spoiler:
- Código:
#==============================================================================
# ** Coordenadas no Mapa
#------------------------------------------------------------------------------
# By Marlos Gama
#==============================================================================
class Coordenadas < Window_Base
def initialize
super(0,0,110,90)
self.contents = Bitmap.new(self.width-32, self.height-32)
self.back_opacity = 200
self.z = 9999999
refresh
end
def refresh
self.contents.clear
self.contents.draw_text(0, 0, 96, 32, "X: "+$game_player.x.to_s)
self.contents.draw_text(0, 25, 96, 32, "Y: "+$game_player.y.to_s)
end
end
class Scene_Map
alias coo_main main
def main
@coo = Coordenadas.new
coo_main
@coo.dispose
end
alias coo_update update
def update
coo_update
@coo.refresh
end
end
Nesse lugar AKie:
https://2img.net/r/ihimg/photo/my-images/16/unled2copyoz.png/