RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] Step Count To Location

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 87
I dont what the Step Counter But i do what it to be the Location Can some one help me Plz?
« Last Edit: May 30, 2008, 02:40:11 PM by Andinout »

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Just add this above Main and below the default scripts:

Code: [Select]
#==============================================================================
# ** Window Location
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  This window displays the name of the map that the player is on. It replaces Window_Steps
#==============================================================================

class Window_Steps < Window_Base
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  # * Initialize
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  def initialize
    super (320, 64, 160, 96)
    self.contents = Bitmap.new (width - 32, height - 32)
    # Draw Location Signifier
    self.contents.font.color = system_color
    self.contents.draw_text (0, 0, self.contents.width, 32, 'Location')
    # Draw location
    data = load_data("Data/MapInfos.rxdata")
    self.contents.font.color = normal_color
    self.contents.draw_text (0, 32, self.contents.width, 32, data[$game_map.map_id].name, 2)
  end
end

**
Rep:
Level 87
thanks modern algebra II  that wroked

also ty Falcon Was Busy when Posted did not have time to look but when i did i looked

hbgames.org did not find it