• 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!
  • 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] How do I expand the size of my script menu so it stops LITERALLY breaking scripts in half?

  • 428
    Posts
    5
    Years
    $PokemonBag.pbStoreItem(:ROSELIBERRY,5)

    That script becomes this, thanks to the script size box limit

    $PokemonBag.pbStoreItem
    (:ROSELIBERRY,5)

    And then it fails to function because of the line break inserted by the script box.

    How fix?
     
    There are two possible fixes. The first is using extendtext.exe, included with essentials that makes that box much wider.
    The second is readjusting the way the code is written.
    Code:
    $PokemonBag.pbStoreItem(
    :ROSELIBERRY,5)
    As long as you leave the ( on the previous line, it works out.
     
    Back
    Top