• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Other Question] Fly don’t work

In the error message, I see : Kernel.pbMessageLINTL("Sorry, a new Badge is required.,")
Find that pbMessageLINTL( and replace it with pbMessage(_INTL( (note the parentheses). It's probably a typo you made ^^

I checked, the script is spelled correct (_INTL etc. so I don't know what I need to correct now haha
 
In the error message, I see : Kernel.pbMessageLINTL("Sorry, a new Badge is required.,")
Find that pbMessageLINTL( and replace it with pbMessage(_INTL( (note the parentheses). It's probably a typo you made ^^

Holy God, I'm an idiot! I missed a " to close the text!

I used fly, but No sentence comes out that you made me enter, so it doesn't trigger the move I know
 
Holy God, I'm an idiot! I missed a " to close the text!

I used fly, but No sentence comes out that you made me enter, so it doesn't trigger the move I know

Hi, sorry I completely forgot to check that part of the forum ^^"
In the script: PScreen_PauseMenu, look for this piece of code:

Code:
      elsif cmdPokemon>=0 && command==cmdPokemon
        hiddenmove = nil
        pbFadeOutIn {
          sscene = PokemonParty_Scene.new
          sscreen = PokemonPartyScreen.new(sscene,$Trainer.party)
          hiddenmove = sscreen.pbPokemonScreen
          (hiddenmove) ? @scene.pbEndScene : @scene.pbRefresh
        }
        # Add these two lines: 
        Kernel.pbMessage(_INTL("hiddenmove = {1}", hiddenmove.class.name))
        Kernel.pbMessage(_INTL("hiddenmove = {1} ; {2}", hiddenmove[0], hiddenmove[1])) if hiddenmove.is_a?(Array)
        if hiddenmove
          $game_temp.in_menu = false
          pbUseHiddenMove(hiddenmove[0],hiddenmove[1])
          return
        end
And tell me what hiddenmove is.
 
Hi, sorry I completely forgot to check that part of the forum ^^"
In the script: PScreen_PauseMenu, look for this piece of code:

Code:
      elsif cmdPokemon>=0 && command==cmdPokemon
        hiddenmove = nil
        pbFadeOutIn {
          sscene = PokemonParty_Scene.new
          sscreen = PokemonPartyScreen.new(sscene,$Trainer.party)
          hiddenmove = sscreen.pbPokemonScreen
          (hiddenmove) ? @scene.pbEndScene : @scene.pbRefresh
        }
        # Add these two lines: 
        Kernel.pbMessage(_INTL("hiddenmove = {1}", hiddenmove.class.name))
        Kernel.pbMessage(_INTL("hiddenmove = {1} ; {2}", hiddenmove[0], hiddenmove[1])) if hiddenmove.is_a?(Array)
        if hiddenmove
          $game_temp.in_menu = false
          pbUseHiddenMove(hiddenmove[0],hiddenmove[1])
          return
        end
And tell me what hiddenmove is.

He told me "TriggerUseMove1" and "TriggerUseMove2" but it worked! It makes me fly
 
He told me "TriggerUseMove1" and "TriggerUseMove2" but it worked! It makes me fly

What? XD
Did you do anything else? Adding messages shouldn't solve the problem XD
I guess you can remove all Kernel.pbMessage then XD
 
What? XD
Did you do anything else? Adding messages shouldn't solve the problem XD
I guess you can remove all Kernel.pbMessage then XD

I don't know haha I just know it works now, it doesn't make sense haha but I owe you life
 
Back
Top