• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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

43
Posts
7
Years
    • Seen May 4, 2023
    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
     
    43
    Posts
    7
    Years
    • Seen May 4, 2023
    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
     

    StCooler

    Mayst thou thy peace discover.
    9,301
    Posts
    4
    Years
    • Seen May 5, 2024
    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.
     
    43
    Posts
    7
    Years
    • Seen May 4, 2023
    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
     

    StCooler

    Mayst thou thy peace discover.
    9,301
    Posts
    4
    Years
    • Seen May 5, 2024
    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
     
    43
    Posts
    7
    Years
    • Seen May 4, 2023
    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