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.
Menu remover [VXA]

0 Members and 1 Guest are viewing this topic.

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
Ok, simple enough hopefully, I want a menu script that removes all bet the return to game and the end game buttons in the center of the screen when paused, and a small window at the top right that shows the characters Face, Name, and Health.



Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
Wouldn't a hud solve your face display problem?
If I was to take this request, I'm sure there are supplements to take care of that portion for me?
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
Not 100%, i'm still learning ruby, and until i understand it i'm still stuck with asking for help on allot. :/
but i'll be sure to credit you if you take the request.
Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
A hud is a custom script. You don't need to know Ruby to be able to find one ;)
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

****
Rep:
Level 71
All you need is a menu script like the one in the picture? I can do that unless D&P3 wants to.

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
You do it :) I'm working on another script right now anyway :D
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
thank you both for your input i look forward to seeing what you get for me DoctorTodd
Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
Do you actually want him to remove the default menu system entirely, or is this new menu system going to be active and inactive as you decree?
In simple terms, do you want the menu to be able to switch from default to this and vice-versa?
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

****
Rep:
Level 71
How's this?
Code: [Select]
################################################################################
#                   ***Menu requested by crow5derlock***
################################################################################
# Author: Todd (Beacon Games)
# Date of completion: 9/23/2012
# Version: 1.0
# Support: Support@beacongames.com
################################################################################

class Scene_Menu < Scene_MenuBase
  #--------------------------------------------------------------------------
  # * Start processing
  #--------------------------------------------------------------------------
  def start
    super
    create_command_window
    create_status_window
  end
  #--------------------------------------------------------------------------
  # * Create Status Window
  #--------------------------------------------------------------------------
  def create_status_window
    @status_window = Window_MenuInfo.new(Graphics.width - 110, 0)
  end
  #--------------------------------------------------------------------------
  # * Create Command Window
  #--------------------------------------------------------------------------
  def create_command_window
   @command_window = Window_MenuCommand.new
    @command_window.set_handler(:resume,  method(:command_resume))
    @command_window.set_handler(:game_end,  method(:command_game_end))
    @command_window.set_handler(:cancel,    method(:return_scene))
    @command_window.x = Graphics.width * 0.5 - 85
    @command_window.y = Graphics.height * 0.5 - 50
    end
  end
  #--------------------------------------------------------------------------
  # * [Resume] Command
  #--------------------------------------------------------------------------
  def command_resume
    return_scene
  end
  #--------------------------------------------------------------------------
  # * [Exit Game] Command
  #--------------------------------------------------------------------------
  def command_game_end
    SceneManager.call(Scene_End)
end
#===================================================================
# ** Window_MenuStatus
#------------------------------------------------------------------------------
#  This window displays the characters status on the menu screen.
#==============================================================================

class Window_MenuInfo < Window_Base
  #--------------------------------------------------------------------------
  # * Object Initialization
  #     x : window X coordinate
  #     y : window Y coordinate
  #--------------------------------------------------------------------------
  def initialize(x, y)
    super(x, y, 110, 161)
    refresh
  end
  #--------------------------------------------------------------------------
  # * Refresh
  #--------------------------------------------------------------------------
  def refresh
    self.contents.clear
     @actor = $game_party.members[0]
      draw_actor_face(@actor, 0, 0)
      draw_actor_name(@actor, 0, 95)
       draw_text(30, 117 , 180, line_height, @actor.hp)
        draw_text(0, 117 , 180, line_height, "HP")
      end
  end
#==============================================================================
# ** Window_MenuCommand
#------------------------------------------------------------------------------
#  This command window appears on the menu screen.
#==============================================================================

class Window_MenuCommand < Window_Command
  #--------------------------------------------------------------------------
  # * Initialize Command Selection Position (Class Method)
  #--------------------------------------------------------------------------
  def self.init_command_position
    @@last_command_symbol = nil
  end
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize
    super(0, 0)
    select_last
  end
  #--------------------------------------------------------------------------
  # * Get Window Width
  #--------------------------------------------------------------------------
  def window_width
    return 160
  end
  #--------------------------------------------------------------------------
  # * Get Number of Lines to Show
  #--------------------------------------------------------------------------
  def visible_line_number
    item_max
  end
  #--------------------------------------------------------------------------
  # * Create Command List
  #--------------------------------------------------------------------------
  def make_command_list
    add_main_commands
    add_original_commands
  end
  #--------------------------------------------------------------------------
  # * Add Main Commands to List
  #--------------------------------------------------------------------------
  def add_main_commands
    add_command("Resume",   :resume)
    add_command(Vocab::game_end, :game_end)
  end
  #--------------------------------------------------------------------------
  # * For Adding Original Commands
  #--------------------------------------------------------------------------
  def add_original_commands
  end
  #--------------------------------------------------------------------------
  # * Processing When OK Button Is Pressed
  #--------------------------------------------------------------------------
  def process_ok
    @@last_command_symbol = current_symbol
    super
  end
  #--------------------------------------------------------------------------
  # * Restore Previous Selection Position
  #--------------------------------------------------------------------------
  def select_last
    select_symbol(@@last_command_symbol)
  end
end

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
Yeah, that would probably be best, then it would at least be usable for many people not just me, i don't know many people who would just remove the entire menu system.

so yes please make it interchangeable.
Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.

****
Rep:
Level 71
Wait so you want an entirely different scene?

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
no, it should be fin, thank you for your work
Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.

****
Rep:
Level 71
Your welcome.  :)

If you don't mind could you credit me like this?
Code: [Select]
Todd (Beacon Games)

***
You pie feeders!
Rep:
Level 68
Everyone... Actually Everyone hates me :)
2012 Biggest Drama Whore
sure


The game its being used in is here: http://rmrk.net/index.php/topic,46812.msg532115.html#msg532115

the demo is not updated yet.
« Last Edit: September 24, 2012, 12:30:08 AM by crow5derlock »
Final Statement: I chowder5lock am a dipshit and MA is a pretty cool dude.