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.
[VX]Two patch requests...

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 82
#1:  OriginalWij's minimap and Yggdrasil 1.5

For the most part they work just fine, but when a state is inflicted that inhibits player movement (Sleep, Stun, Paralysis) and I enter and exit the main menu, all I get in the minimap is a blank space:
Spoiler for:
Before:


After:

#2:  This one involves a custom script I'm working on that displays the actor states on the map.  By itself it works fine, but when I add ziifee's animated states script to the project, the states don't get drawn at all.
Spoiler for:
WIP Script:

Code: [Select]
class Window_State < Window_Base
  def initialize
    super(0,0,544,416)
    self.z = 100
    self.opacity = 255
  end
  def update
    self.contents.clear
    draw_actor_state($game_party.members[1], x-24, y, 544)
  end
end
class Scene_Map < Scene_Base
  alias munkis_state_start start
  alias munkis_state_terminate terminate
  alias munkis_state_update update
  def start
    munkis_state_start
    @state_window = Window_State.new
  end
  def terminate
    munkis_state_terminate
    @state_window.dispose
  end
  def update
    munkis_state_update
    @state_window.update
  end
end

 :sdog:

**
Rep: +0/-0Level 82