ROM Hack Suggestion Pokemon Quest editor?

utslerrichard

New Member
Newbie
Joined
Nov 23, 2011
Messages
3
Trophies
0
XP
4
Country
United States
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
 

SaintEX

Well-Known Member
Member
Joined
May 24, 2018
Messages
129
Trophies
0
Location
Somewhere I don't belong.
XP
794
Country
United Arab Emirates
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

  • user.zip
    11.3 KB · Views: 80

Torem

Active Member
Newcomer
Joined
Nov 16, 2016
Messages
31
Trophies
0
Age
33
XP
218
Country
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

  • user.zip
    10.9 KB · Views: 158
  • Like
Reactions: SaintEX

ShibaN

New Member
Newbie
Joined
May 13, 2018
Messages
4
Trophies
0
Age
23
XP
54
Country
United Kingdom
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

  • user.rar
    12.8 KB · Views: 148

Torem

Active Member
Newcomer
Joined
Nov 16, 2016
Messages
31
Trophies
0
Age
33
XP
218
Country
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

  • user.zip
    12.5 KB · Views: 100
  • Like
Reactions: ShibaN

Garblant

Well-Known Member
Member
Joined
Apr 1, 2016
Messages
726
Trophies
0
Age
25
Location
Alola
XP
508
Country
United States
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...
 

Lykon

Well-Known Member
Newcomer
Joined
May 26, 2018
Messages
70
Trophies
0
Age
36
XP
142
Country
Italy
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: 270

moosehunter

Well-Known Member
Member
Joined
Nov 26, 2008
Messages
219
Trophies
0
XP
342
Country
United States
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;
        }
    }
}
 

Garblant

Well-Known Member
Member
Joined
Apr 1, 2016
Messages
726
Trophies
0
Age
25
Location
Alola
XP
508
Country
United States
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

General chit-chat
Help Users
    BigOnYa @ BigOnYa: Ok thanks, I love my X but have not messed with a S yet.