ROM Hack Suggestion Pokemon Quest editor?

  • Thread starter Thread starter justinbug2
  • Start date Start date
  • Views Views 95,384
  • Replies Replies 316
Would someone able to explain to me how to get my save to have it edited.....i have suscessfuly booted into to homestretch launcher. Just need to know what programs to use to get it. Could someone link me to a tutorial
 
Heya everyone! Nice work for the people who are making these things possible.
I tried to read around on how to edit my own save, but I really have no idea how to use the things in the links people posted. And I honestly am too slow to understand them anytime soon.

So if anyone's kind enough, would it be possible to have my save edited as well? Just max tickets would make me more than grateful. Thank you!
 

Attachments

Heya everyone! Nice work for the people who are making these things possible.
I tried to read around on how to edit my own save, but I really have no idea how to use the things in the links people posted. And I honestly am too slow to understand them anytime soon.

So if anyone's kind enough, would it be possible to have my save edited as well? Just max tickets would make me more than grateful. Thank you!

Here you go
 

Attachments

  • Like
Reactions: SaintEX
Hi I was wondering if someone could kindly edit my save and add only tickets. Sorry I have no idea how to actually edit the save so maybe in the future if someone could create a guide that would be greatly appreciated :)

Thanks.
 

Attachments

Hi I was wondering if someone could kindly edit my save and add only tickets. Sorry I have no idea how to actually edit the save so maybe in the future if someone could create a guide that would be greatly appreciated :)

Thanks.

Here you go :)
 

Attachments

  • Like
Reactions: ShibaN
So, anyone know how to edit the moves your pokemon have? Seems like the move Flatter is pretty broken right now, so I wanted to edit either my Nidoran or my Nidorino, but I'm not sure how to do it...
 
So, anyone know how to edit the moves your pokemon have? Seems like the move Flatter is pretty broken right now, so I wanted to edit either my Nidoran or my Nidorino, but I'm not sure how to do it...
Seconding this
 
Well, in the end I got a shiny Charizard with Dragon Claw and Fire Blast, a Mewtwo with Psystrike and Recover and a Porygon 2 with Tri-Attack and Recover.

just by having max items basically. You can spam Pokémon and use them to learn moves. Also by spamming I got a Shiny Charmander (and also a Shiny Articuno and a Shiny Nidoran, that I transformed into a Shiny Mew).
 

Attachments

  • 2018060500401400-E4B364C957D95017CA1171810D655865.jpg
    2018060500401400-E4B364C957D95017CA1171810D655865.jpg
    160.2 KB · Views: 299
This script will set the slots of all your Pokemon to multi types

Code:
foreach (var character in Save.characterStorage.characterDataDictionary)

{
    var slotTypes = character.Value.data.potential.slotPropertyTypes;
    for (int i = 0; i < slotTypes.Count; i++)
    {
        slotTypes[i] = 2;
    }
}

This one will set everyone's moves to Flatter
Code:
foreach (var character in Save.characterStorage.characterDataDictionary)
{
    foreach (var skill in character.Value.data.potential.potentialSkill)
    {
        if (skill.skillID > 35 && skill.skillID < 1000)
        {
            skill.skillID = 147;
        }
    }
}
 
This script will set the slots of all your Pokemon to multi types

Code:
foreach (var character in Save.characterStorage.characterDataDictionary)

{
    var slotTypes = character.Value.data.potential.slotPropertyTypes;
    for (int i = 0; i < slotTypes.Count; i++)
    {
        slotTypes[i] = 2;
    }
}

This one will set everyone's moves to Flatter
Code:
foreach (var character in Save.characterStorage.characterDataDictionary)
{
    foreach (var skill in character.Value.data.potential.potentialSkill)
    {
        if (skill.skillID > 35 && skill.skillID < 1000)
        {
            skill.skillID = 147;
        }
    }
}
Eh, could you make a version of the second one that only sets the "first" team member's first move to Flatter? Changing everyone's moves to flatter would probably set off a red flag (if they have the ability to check)
 

Site & Scene News

Popular threads in this forum