• 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.

Adding the Border in Essentials 7?

xalien95

Developer of Pokémon Omicron
  • 76
    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