• 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.
  • There is an important update regarding account security and 2FA. Please click here for more information.
  • Our Witching Week events are now on! If you'd like to participate in some fun activities with the community, check out the list of events!
  • 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.
  • Imgur has blocked certain regions from viewing any images uploaded to their site. If you use Imgur, please consider replacing any image links/embeds you may have on PokéCommunity so everyone can see your images. Click here to learn more.

[Script] FireRed: XSE script

  • 14
    Posts
    7
    Years
    Hey everyone,
    I made a script where a npc gives you a metal coat. But when I talk to the npc in game it just plays the beep sound and nothing else. I don't know what to do and would like some input. Heres my script:

    #dynamic 0x800657

    #org @start
    lock
    faceplayer
    checkflag 0x1273
    if 0x1 goto @nomore
    msgbox @talk1 0x6
    giveitem 0x199 0x1 0x0
    setflag 0x1273
    release
    end

    #org @nomore
    msgbox @talk2 0x6
    release
    end

    #org @talk1
    = Hey there! I found this by the\nMILTANK the other day.\pYou probably know what this is.

    #org @talk2
    = My favorite POKeMON is SCIZOR! I\nwonder how SCYTHER evolves into\lSCIZOR.
     
    Hey everyone,
    I made a script where a npc gives you a metal coat. But when I talk to the npc in game it just plays the beep sound and nothing else. I don't know what to do and would like some input. Heres my script:

    Since you are using #dynamic, make sure when you compile you copy the offset of your @start and put that as the script offset in A-Map. That's all I can really think of.
     
    Back
    Top