Main Menu
  • Welcome to The RPG Maker Resource Kit.

[VX]Two patch requests...

Started by munkis, June 09, 2014, 10:39:31 PM

0 Members and 1 Guest are viewing this topic.

munkis

#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]
Before:


After:

[/spoiler]
#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]
WIP Script:

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

[/spoiler]

:sdog:

munkis