• 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!
  • It's time to vote for your favorite Pokémon Battle Revolution protagonist in our new weekly protagonist poll! Click here to cast your vote and let us know which PBR protagonist you like most.
  • 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.

[Error] Original Chatter Script

mybusiness

Guest
  • 0
    Posts
    I tried to use Chatter from party screen, and this popped up.
    [PokeCommunity.com] Original Chatter Script
     
    Last edited:
    Did you check how arguments works for it? '-'
     
    Did you check how arguments works for it? '-'

    This is line 31-33 of Pokemon_Chatter:
    Code:
    HiddenMoveHandlers.addCanUseMove(:CHATTER,proc {|item,pokemon|
       return true
    });
     
    You didn't answer my question. Anyway, remove 'item' and will work fine. See the arguments.

    Code:
    HiddenMoveHandlers.addCanUseMove(:CHATTER,proc {|pokemon|
       return true
    });

    That's because I'm not familiar with that kind of procedures. But now I know better, thanks.
     
    Sorry for necroposting, but I got an error too, after applying the solution that WolfPP gave. This is the error:
    Code:
    [Pokémon Essentials version 17.2]
    Exception: NoMethodError
    Message: undefined method `species' for #<Array:0xd3786d8>
    PSystem_FileUtilities:23:in `pbLoadPokemonBitmap'
    Pokemon_Chatter:8:in `pbChatter'
    Pokemon_Chatter:36
    Pokemon_Chatter:35:in `call'
    EventHandlers:150:in `trigger'
    PField_FieldMoves:40:in `triggerUseMove'
    PField_FieldMoves:55:in `pbUseHiddenMove'
    PScreen_PauseMenu:184:in `pbStartPokemonMenu'
    PScreen_PauseMenu:145:in `loop'
    PScreen_PauseMenu:281:in `pbStartPokemonMenu'
     
    Vanilla version works fine. Maybe you added some custom script. Also inside Chatter script hasn't any 'species'. You only use 'pokemon'

    Ok, I'm stupid. I apologize for all the inconveniences. I discovered the error of my script.
     
    Back
    Top