Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Just a little request

Hey dear rmxp.rg users

I need a little script here for my new game...
I would be very grateful to the one that can fix this ^_^

The Request: I need a script that skip the player selection when you want to eiqup or use skills.
I need this script for a game with only 1 main hero

When I choose eiqups or skills I want the game to direct to actor 1's inventory or skills.

It is possible that this script has been made before but I couldent

The one that can fix this problem for me will of course be credited ^_^
 
This is so simple it's almost funny :P
Find the "Scene_Menu" script and replace this:
Code:
when 2  # equipment
        # Play decision SE
        $game_system.se_play($data_system.decision_se)
        # Make status window active
        @command_window.active = false
        @status_window.active = true
        @status_window.index = 0
on lines 136-142
with this
Code:
when 2 #Equipment
# Play decision SE
$game_system.se_play($data_system.decision_se)
$scene = Scene_Equip.new
there ya go
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top