• 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!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - 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.

RMXP question

  • 140
    Posts
    15
    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