Sign in to follow this  
Followers 0
Soramar0

dinero en el mapa

3 posts in this topic

un script muy interesante

CODE
# ------------------------------------
def main
  @spriteset = Spriteset_Map.new
  @message_window = Window_Message.new

  @stat = Window_Gold.new
  @stat.visible = true
  @stat.active = false

Graphics.transition
  loop do
    Graphics.update
    Input.update
    update
    if $scene != self
      break
    end
  end
  Graphics.freeze
  @spriteset.dispose
  @message_window.dispose

 @stat.dispose

     
  if $scene.is_a?(Scene_Title)
    Graphics.transition
    Graphics.freeze
  end
end
0

Share this post


Link to post
Share on other sites
i como se pone xDDD
0

Share this post


Link to post
Share on other sites
nueva clase ensima del main y ya xDD
0

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0