• 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!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist poll!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • 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.

RMXP question

  • 140
    Posts
    16
    Years
    • Seen Oct 16, 2024
    Can it load data from php text files, & then convert variables within it to variables within the game?

    ...No, I'm not using RMXP. But finding out if that's true might be the key to making my Flash 9 Pokemon game, Neo version, trade with all those RMXP ones... (Will have to use motion tween technology in Flash, which I'm not too happy about, but whatever.)
     
    RMXP can load data from any type of file if you know how to code it. I've loaded and edited data in GBA ROMs and HG/SS saves with it; php is well within its capabilities.

    It's as simple as using the File module; for example, to load a save file, you use File.load("Game.rxdata","rb"). The file extension and type don't matter, as long as you can interpret the file contents correctly.
     
    RMXP can load data from any type of file if you know how to code it. I've loaded and edited data in GBA ROMs and HG/SS saves with it; php is well within its capabilities.

    It's as simple as using the File module; for example, to load a save file, you use File.load("Game.rxdata","rb"). The file extension and type don't matter, as long as you can interpret the file contents correctly.

    Now that is really really slick for it to be able to do that. I'm jealous I'm not using that.
    It would be a good idea to mess around with RMXP loading rm2k3 data and seeing if I could cross breed my game would another.

    Thanks for teaching me that. Ya learn something new every day huh.
     
    Back
    Top