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

[Error] What does this mean?

StCooler

Mayst thou thy peace discover.
9,301
Posts
4
Years
    • Seen May 5, 2024
    Wait, I have already seen this error!

    You replaced the tileset of a map with another tileset. This error happens because the new tileset has less tiles than the old tileset. In Paint or whatever software you are using, change the size of the new tileset to match the old one.

    If it doesn't save the issue, go to the script Tilemap_XP, and find the line:
    Code:
          spriteZ = (priority==0) ? 0 : ypos+priority*32+32
    Replace this line with these ones:
    Code:
          begin 
          spriteZ = (priority==0) ? 0 : ypos+priority*32+32
          rescue 
          raise _INTL("id={1}, xpos={2}, ypos={3}", id, xpos, ypos)
          end.
     
    Back
    Top