• 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.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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] Script keeps changing by itself

jAvAcOlA

Banned
  • 152
    Posts
    16
    Years
    • Seen Feb 22, 2015
    This is my very first attempt at scripting, so I'm probably doing something stupid.


    I'm scripting the Mew event from Emerald into Firered.

    I compile this code to the Mew sprite:
    Spoiler:



    As soon as I change to a different map, the script changes to this:
    Spoiler:



    Anyone see anything I'm doing stupid? I thought it could be something in the script not existing in FR, but I don't see anything greater than 0xD5 except for 0xFE, which is supposedly in FR.
     
    You get this script from Emerald and apply it in Fire Red? if I'm not mistaken, some functions of the Emerald does not work in FireRed. Example: The applymovents "functions" are totally different on Emerald or FireRed.
    If you're using XSE (by what I saw) and editing a FR game you need to learn it:
    https://www.pokecommunity.com/threads/164276
    https://www.pokecommunity.com/threads/302347

    It's a simple battle example (insert in a person event):
    Code:
    #dynamic 0x800000
    
    #org @start
    lock
    faceplayer
    msgbox @1 0x6
    callstd 0x2
    cry 0x151 0x0 ' Mew Cry
    wildbattle 0x151 0x1E 0x8B ' Mew battle (151) - POKÉ level - Holding Item
    fadescreen 0x1
    fadescreen 0x0
    hidesprite 0x800F
    setflag 0x200
    release
    end
    
    #org @1
    = Mew: Myuu[.]!
    Do not use it without learning the basics!!!!
     
    Back
    Top