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

[Custom Feature Question] Map Connection Error

211
Posts
7
Years
    • Seen May 5, 2024
    Hi All...
    I have trouble with Map Connection in editor.
    Every My map get connected, and reopen the game, from Map A to Map B lost or can't connected again.

    Thank you!
     

    StCooler

    Mayst thou thy peace discover.
    9,301
    Posts
    4
    Years
    • Seen May 5, 2024
    Hi All...
    I have trouble with Map Connection in editor.
    Every My map get connected, and reopen the game, from Map A to Map B lost or can't connected again.

    Thank you!

    Can you send your PBS file "connections.txt"?
    And tell us what map has problems.
     
    Last edited:

    StCooler

    Mayst thou thy peace discover.
    9,301
    Posts
    4
    Years
    • Seen May 5, 2024

    The last two lines are wrong:
    Code:
    # Rute 1 (76) - Desa Pireo (78)
    76,0,0,78,0,38
    # Desa Pireo (78) - Desa Velora (32)
    78,0,76,32,0,0

    Ok, I will assume that the towns in the first photo are in this order:
    Desa Velora (32)
    \/
    Rute 1 (76)
    \/
    Desa Pireo (78)
    (If it's the contrary, just invert what I am saying).

    According to the docs, you didn't write the right thing.
    You need to connect adjacent maps. So Desa Velora should be connected to Rute 1, and Rute 1 should be connected to Desa Pireo:
    Code:
    # Desa Velora (32) - Rute 1 (76)
    <Something>
    # Rute 1 (76) - Desa Pireo (78) 
    <Something>
    Now you have to tell that Desa Velora's South connects to Rute 1's North, and that Rute 1's South connects to Desa Pireo's North.
    Code:
    # Desa Velora (32) - Rute 1 (76)
    32,South,XX,76,North,XX
    # Rute 1 (76) - Desa Pireo (78) 
    76,South,XX,78,North,XX
    Now the "XX" need to be set lke this:
    They are distances from the top (for east-west connections) or from the left (for north-south connection) of the respective maps.
    Now I am not sure what number you should put here. It depends on your map.
    Can you post a screenshot of Rute 1 and Desa Pireo in RPG Maker for example?
     
    Back
    Top