• 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.
Ashedragon
Reaction score
6

Profile posts Latest activity Postings About

  • Well, I can't really fix them, since the D/P sprites are 80x80, and therefore resizing them will always make them look distorted.
    Anyway, I think there's a bug in Essentials regarding using differently-sized sprites. Find these lines in PokemonUtilities:
    def pbPositionPokemonSprite(sprite,left,top)
    if sprite.bitmap && !sprite.bitmap.disposed?
    sprite.x=left+(sprite.bitmap.width-128)/2
    sprite.y=top+(sprite.bitmap.height-128)/2
    else
    sprite.x=left
    sprite.y=top
    end
    end
    And replace them with these:
    def pbPositionPokemonSprite(sprite,left,top)
    if sprite.bitmap && !sprite.bitmap.disposed?
    sprite.x=left+(128-sprite.bitmap.width)/2
    sprite.y=top+(128-sprite.bitmap.height)/2
    else
    sprite.x=left
    sprite.y=top
    end
    end
  • Loading…
  • Loading…
  • Loading…
Back
Top