A downloadable Script

Download NowName your own price

ITA: è uno script per Rpg maker vx ace che aggiunge una barra in basso che mostra i comandi di gioco

All'inizio dello script c'è la configurazione. Potrete cambiare il tasto per mostrare/nascondere la barra,  settare la posizione X e Y della barra, opacità della barra e la sua altezza e anche i comandi da mostrare


ENG: 

This is a script for RPG Maker VX Ace that adds a bottom bar displaying the game controls.

The configuration is at the beginning of the script. You can change the button to show/hide the bar, set the X and Y position of the bar, its opacity and height, and even the commands to display.


Configuration translated into English

#==============================================================================
# ** Button HUD for RPG Maker VX Ace
#==============================================================================
#==============================================================================
# ** Information
# ** Version: 1.0
# ** Autor: Augu0107
# ** Script: ButtonHelperHud
#==============================================================================
#==============================================================================
# ** Start config
#==============================================================================
module ControlsHUD
  # Toggle button to show/hide HUD
  # Use the key name as a symbol: e.g. :T, :F1, :Q etc.
  TOGGLE_KEY = :T
  # ---------------------------
  #  COMMAND CONFIGURATION
  # ---------------------------
  # Each command is: [ICON_ID, TEXT, KEY]
  COMMANDS = [
    [20, "Interact", :ENTER],   #29 = icon in iconset
    [22, "Menu", :ESC],
    [28, "Run", :SHIFT]
  ]
  # HUD position
  HUD_X = 0
  HUD_Y = Graphics.height - 48
  HUD_HEIGHT = 48
  HUD_OPACITY = 180
end
#==============================================================================
# ** End config
#==============================================================================

Download

Download NowName your own price

Click download now to get access to the following files:

Augu_ButtonHelperHud.txt 4 kB

Leave a comment

Log in with itch.io to leave a comment.