Replies: 7 comments
-
The file you are referencing is the English localization for item names in the Generation 3 games. Each line is a string that represents that index's item name. The same can be said for all the other text resources, such as move strings. If you plan on adding more total items and moves than the original game, you can modify PKHeX/PKHeX.Core/Legality/Tables/Tables3.cs Lines 5 to 15 in b8f6b5f |
Beta Was this translation helpful? Give feedback.
-
Thank you so much! |
Beta Was this translation helpful? Give feedback.
-
The project's readme has instructions on how to build and run PKHeX. |
Beta Was this translation helpful? Give feedback.
-
Thanks . I did read through them, but could not find what commands specifically to use to run the program. When I tried to do a
I am using .NET 6.0, which seems like it should work based on the tutorial, but I'm too novice in C# to be certain on what I should expect. |
Beta Was this translation helpful? Give feedback.
-
The .NET 6.0 build is experimental; you should install .NET Framework 4.6 and try building with an IDE like Visual Studio. |
Beta Was this translation helpful? Give feedback.
-
Got it. I will do what I can to install 4.6. It looks like Windows 10 doesn't make it easy since I have a later version of .NET framework installed on it by default and Windows doesn't allow an older version installed as well. I'll look into tracking down and uninstalling the newer version. |
Beta Was this translation helpful? Give feedback.
-
Hey, I got it working. I was trying with VSCode and then tried Visual Studio and its installer instead. I'm unsure why, but installing v4.6 worked through the Visual Studio install, but not through the standard install file. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'm working on a Pokemon Emerald hack and I added more items and moves.
Where can more items be added?
I see:
\PKHeX\PKHeX.Core\Resources\text\items\gen3\text_ItemsG3_en.txt
. Is that an enum?Can I just add more items there and it knows they are the next item number, or is there more that I must change?
Beta Was this translation helpful? Give feedback.
All reactions