• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

Battle Debug Menu [BDM] for Essentials v.17-v.17.2 2018-08-18

sooo does it work for EBS? .
Hollow_Ego
Hollow_Ego
For EBS you do everything as you would normally, except for the button input.

You need to find this in EBS Scripts:

[CODE=ruby]alias pbCommandMenuEx_ebs pbCommandMenuEx unless self.method_defined?(:pbCommandMenuEx_ebs)

def pbCommandMenuEx(index,texts,mode=0)[/CODE]

and in this def after

[CODE=ruby]if Input.trigger?(Input::C) || (defined?($mouse) && cw.mouseOver? && $mouse.leftClick?) # Confirm choice

pbSEPlay("SE_Select2")

@ret=cw.index

@inCMx=false if @battle.doublebattle && !USEBATTLEBASES && @ret > 0

@lastcmd[index]=@ret

break[/CODE]


add


[CODE=ruby]elsif Input.trigger?(Input::R) # is the same as S

pbPlayDecisionSE

@ret= 5

break[/CODE]


I haven't tested it much so there might be cases where it doesn't work correctly. This script was not made with EBS in mind but should work nontheless.
Back
Top