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.

I need a hot key-related script!! (RMXP)

Hey~ does anyone has a script that allows player to call battle commands (attack/skill/item/escape)
by pressing hot keys??? I could not find this script in the forum.... :crazy:

I really need this script! Thanks a lot!!! :smile:
 
You can find a keyboard script, such as the one in the MACL,  or vgvgf's Aleworks Input Library works pretty good too. I'm not sure where this is in default scripts, but if you're using SDK just alias phase3_update_command or something of that nature you should be able to alias something like...

Code:
if Input.trigger?(Keys::A)
  $game_system.se_play($data_system.decision_se)
  phase3_command_attack
elsif Input.trigger?(Keys::S)
  # etc, etc...
end

Aleworks is just the one I'm most familiar with, there are other faster and more lightweight Input/Key scripts which you could probably find with the same functionality. Good luck :thumb:
 
Kain Nobel":3fvv216k said:
You can find a keyboard script, such as the one in the MACL,  or vgvgf's Aleworks Input Library works pretty good too. I'm not sure where this is in default scripts, but if you're using SDK just alias phase3_update_command or something of that nature you should be able to alias something like...

Code:
if Input.trigger?(Keys::A)
  $game_system.se_play($data_system.decision_se)
  phase3_command_attack
elsif Input.trigger?(Keys::S)
  # etc, etc...
end

Aleworks is just the one I'm most familiar with, there are other faster and more lightweight Input/Key scripts which you could probably find with the same functionality. Good luck :thumb:

i don't really know how to add things or make change in the script XD
anyway...thanks
 

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