• 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!
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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.

[Other] Strange Crash

Child Amnesiac

Ever changing
  • 341
    Posts
    6
    Years
    Hi, I'm having problems with getting a map to load.
    As you can see Here it crashes upon loading the map. This is using 07 under the "show name on entering" drop down box and I set it as a route under the type drop down box .
    Setting it to the underground option under type prompts a message on my emulator (VBA) about a bios file to get correct behaviors or something

    Is there any way to fix this?
     
    Are there any script tiles just in front of the mat tile in the map which is not opening?check the script if its ok.
    Sometimes, a wrongly written script causes a game to freeze.
     
    Are there any script tiles just in front of the mat tile in the map which is not opening?check the script if its ok.
    Sometimes, a wrongly written script causes a game to freeze.

    There are 2 scripts, a type 1 level script, and a script tile.
    By default the script tile isn't in front of a mat tile, but the script activates when you open the exit, the tile then becomes in front of a ladder tile.
    I can post both scripts here

    Level Script
    Code:
    compare 0x4011 0x5
    if 0x1 call 0x8829753
    end
    
    '---------------
    #org 0x829753
    setmaptile 0xB 0x2 0x296 0x0
    setmaptile 0xB 0x1 0x28E 0x1
    return
    Script tile
    Code:
    lock
    msgbox 0x883BC6C MSG_NORMAL '"A light shines down from above,\ni..."
    setflag 0x201
    addvar 0x4011 0x1
    release
    end
    
    
    '---------
    ' Strings
    '---------
    #org 0x83BC6C
    = A light shines down from above,\nit's the exit!
     
    Back
    Top