• 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.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • 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.

Adding the Border in Essentials 7?

xalien95

Developer of Pokémon Omicron
  • 72
    Posts
    14
    Years
    Hi guys!
    How can I put the border in Pokemon Essentials version 7?
    I have to edit only PokemonOptions?
     
    Pretty much, I think. You need to change the "Screen Size" EnumOption back to what it used to look like. I didn't remove all traces of the border options, so I think that's all you need to do.
     
    I've added this:
    Code:
    EnumOption.new(_INTL("Screen Size"),[screensize1,screensize2,_INTL("3DS")],
              proc { $PokemonSystem.screensize },
              proc {|value|
                 oldvalue=$PokemonSystem.screensize
                 $PokemonSystem.screensize=value
                 $ResizeOffsetX=([0,0,80][value])
                 $ResizeOffsetY=([0,0,80][value])
                 pbSetResizeFactor([0.5,1.0,0.5][value])
                 if value!=oldvalue
                   ObjectSpace.each_object(TilemapLoader){|o| next if o.disposed?; o.updateClass }
                 end
              }
           )
    If I play, I go in OptionsScene and I set the 3DS size... the border's viewed.
    But if I save with the 3DS size and I open the game.. there's this pop-up message:
    Code:
    Script 'SpriteResizer' line 147: NoMethodError occurred.
    undefinited method '*' for nil:NilClass

    At that line there's this:
    Code:
       $ResizeFactorMul=(factor*100).to_i
    It doesn't know "factor"?

    How can I do now?
    Thanks in advance! ;D
     
    Thanks it works now! :D

    Errrr.. can I ask you for another problem?
    Sometimes, there's "skin1.png" windowskin instead of "frlgtextskin.ong" windowskin.. if the bug begins, continues even if you delete the save data (sorry for the bad english, I'm italian ^^")..
    Is it possible to restore the true windowskin?
     
    Back
    Top