Search the Community
Showing results for tags 'PKHex'.
-
Hello everyone, I am wanting to ask this community if someone can please tell me how to install PKHeX on my MacBook Pro in detail because I am a complete dunce. I know I’m the not the brightest knife in the crayon box, and I've tried so many different ways in order to have the software on my system. I'll be honest and admit that I hardly know what I am doing and don’t know how to use Wine and its multiple counterparts. If it is possible for someone to reach out to me in the direct messages or get in touch with me through discord ( Kingg._.Kidd#8467 ) I would greatly appreciate it.
-
Hello, I wanted to create a shiny channel Jirachi with pkhex, but since I don't understand everything about pid and seed, I don't know if it's somehow possible to make the Pokemon legal. If someone could please check if the Jirachi is even possible and if it is please send me a .pk3 and .pk5 file I would be very grateful. The Pokemon should have these values: Shiny = yes Nature = Bashful lang = GER Origin Game = Ruby (Since I unfortunately lost my Ruby. ) If possible with the IVs HP = 23 Atk = 28 Def = 26 SpA = 20 SpD = 20 Spe = 31 OT = CHANNEL (Since it's supposed to be from Pokemon CHANNEL) For this I tried PokeFinder and maybe made a few helpful screenshots.
-
In the FAQ it is stated that PKHeX doesn't work in Linux. With the latest wine (8.12 at date of writing) however, it is possible to run PKHeX in Linux. Instructions: Make sure you run the latest version of wine. Download it here. Install winetricks according the instructions according to your distribution. Update it with sudo winetricks --self-update Install dot.net 7 and dot.net desktop 7 with winetricks -q dotnet70 dotnetdesktop7 You can now run PKHeX in Linux.
-
PKHeX on Mac A User Friendly Guide for WINE Intro This guide will hopefully clarify a few things regarding WINE and PKHeX running on MacOS as well as help anyone start from scratch with WINE [in order to run PKHeX]. WINE is a fickle thing; it's not guaranteed to work (at all) but the success rate these days is impressive! So, don't get discouraged if things do not work the first time around. Nothing we do in this guide is permanent, although I encourage you to make a Time Machine backup of your system or at least backup your important data. With that being said, I have been using WINE for quite some time. Regarding PKHeX, It's going on almost a year and I have yet to experience any depressive issues using WINE to run it. I have done several clean installs of macOS Sierra and macOS High Sierra in order to give you the most accurate information possible. If I have missed something or you know any tips or tricks, I would appreciate the feedback! Also, you'll find only the bare minimum information in this guide of what you will need to get PKHeX up and running. I say this because without any theming, the app will look like an old school Windows program. NOTE: Aesthetics may not be the most important thing to consider (especially if you're in a hurry or maybe don't care) however there are some dependencies (winetricks) that are absolutely necessary for some programs to run. Fortunately PKHeX isn't too picky. Choices Download the PKHeX app in the PKHeX for Mac thread Use Winebottler to make a PKHeX.app for yourself Use Wineskin Winery to make a PKHeX.app for yourself (no support here) Use WINE to run the PKHeX executable via Terminal Use a Virtual Machine (VM) or something along those lines (no support here) Winebottler Pretty straight forward process. Tick all of the items with arrows next to them, like in the screenshot below. Also necessary winetricks for PKHeX: dotnet461; corefonts; cjkfonts; tahoma. May need to change security preferences to run the app: NOTE: Winebottler is the fastest, easiest "DIY" option for a beginner. (Some argue that Wineskin Winery is the fastest and most easy way to whip up an app. I'll say it just depends on your skill level, though I agree.) Another thing, apps may be less stable than if they were launched using other methods basically because of the lack of options Winebottler has to fine tune things (e.g.; adding a string in the Registry Editor to enable Retina compatibility.) Install WINE on your Mac [Run PKHeX Using Terminal] Installing WINE on your system using Homebrew is the most noob-friendly way [to install WINE on Mac] that I have found, so let us just use that. To start, I'll tell you that you will be installing 4-5 minuscule things on your Mac; Xcode CLT, Homebrew Package Manager, XQuartz, WINE, and some Winetricks depending on the executable your are attempting to run. In this instance, our target is PKHeX. So onto the first thing, Homebrew. Before you can use "brew commands" in Terminal, you must have Xcode Command Line Tools installed. If you already have Xcode installed on your Mac, you should be peachy. If not, no problem! Open Terminal to get started! Xcode CLT: xcode-select --install If you're asked to agree to Xcode's ToS, next type: sudo xcodebuild -license Homebrew Package Manager: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" When that finishes up, you'll want to make sure everything is in order: brew doctor For future reference, you can update Homebrew using: brew upgrade XQuartz: brew cask install xquartz WINE: brew install wine brew upgrade wine # For future reference That will create a 64-bit WINEPREFIX which will be located at: ~/.wine NOTE: If you would rather use the developer version of WINE, use these instead: brew install wine --devel brew upgrade wine --devel # For future reference Winetricks: brew install cabextract brew install winetricks brew upgrade winetricks # For future reference NOTE: You DO NOT need to install every winetrick available, just the ones your programs depend on to function. For PKHeX, you will need to install these; dotnet461, corefonts, cjkfonts, and tahoma (why not). Install the "tricks": winetricks "trick" # (e.g.; winetricks dontnet461) Complete list of Winetricks For some, the winetricks process will be easier with a GUI. I suggest installing Zenity if you want one: brew install zenity # After installation finishes, you will have a neat GUI for winetricks. Use: winetricks --gui Attention Okay, this is important, so listen up. It's a known issue that .NET Framework 4.5 and up, (dotnet45 and up) does not install properly on a 64-bit WINEPREFIX, which was installed by default earlier (brew install wine). That is okay because a 64-bit WINEPREFIX may come in handy in the future. To get around this issue, you will create a 32-bit WINEPREFIX. Creating the 32-bit prefix: WINEPREFIX=~/.wine32 WINEARCH=win32 wine wineboot You will now have a 32-bit prefix located at: ~/.wine32 Next, install the aforementioned winetricks in your new prefix. It is important that you use these next commands any time you want to run or install ANYTHING inside of that 32-bit WINEPREFIX. Remember, we need at least .NET Framework 4.6 to run PKHeX and we must install .NET Framework 4.6 in the 32-bit prefix, therefore we will be running PKHeX from inside of the 32-bit prefix. (I know, don't ask, lol) WINEPREFIX=~/.wine32 WINEARCH=win32 wine "Program.exe" WINEPREFIX=~/.wine32 WINEARCH=win32 winetricks "trick" Senario: You have done all of the above and you're ready to run "PKHeX.exe". Download PKHeX and remember its location. It's usually in the Downloads folder. Open Terminal and change directories to the PKHeX (version) folder. For example: cd ~/Downloads/PKHeX\ \(171205\) Then, run the executable: WINEPREFIX=~/.wine32 WINEARCH=win32 wine PKHeX.exe
-
I have files for all the mythicals and legendaires from Pokemon Go, only issue ive run into is that uxie,mesprit,and azelf cant seem to be shiny even though they're available in Go. Comes up with the error, "Met date outside of distribution window". Googled that and got 0 results for the lake trio. Any help would be appreciated.
-
So in March of 2023, my copy of Alpha Sapphire got corrupted by my 3ds being in sleep mode after I tried to wake it up. I then shut it off and the save was corrupted. I never used cheats on the game. I was devastated at the time and couldn't fix it. I heard that somebody had a corrupted SWSH file and it got resolved so can anybody help me on this one? I will link the saved file to download. It has the entire game complete (including Delta Episode) and I didn't catch Deoxys. main
-
Hello! Okay, I need some serious help here So I tried updating my copy of PKHeX Wineskin by subbing out the exe file with the latest version's exe file, but I got a critical error. It was too late to go back, and the original PKHeX Wineskin file I found before seems to have been lost. I tried downloading what I thought was the file I had before, but it says "PKHeX is damaged and cannot be opened. You should move it to the Trash." So yeah, I'm in a real tough spot. Can anyone here who is experienced w/ Wineskin make a Wineskin app file for the current version of PKHeX that I can use on Mac? I don’t really have any other options besides Wineskin. Regular Wine doesn’t work on current Mac versions; I can't afford Crossover, nor do I have the space to partition my Mac and get Bootcamp. Honestly at this rate I don't see why an official Mac version of PKHeX is made; sure Windows apps are easier to develop from what I hear, but a lot of people use Mac and it's unfair that so many useful apps don’t have alternatives on Mac.
-
Guys, I need your help to find out what is wrong with this .pk8 file since SysBOT detects it as illegal but PkHex doesn't, I've looked everywhere but I don't know what the problem is. I need this one to have as many legal tapes as possible up to Generation 7 as it is a long lost Gengar. Greetings!! 0094 - Hexis - 01D9FD8DA04C.pb8
-
I just got PkHex to mess around with so I was going to test it out on radical red so I went to go add in a yamask but realised there is no gen 8 pokemon cause it sees the save file as a gen 3 file not the rom hack so I was wondering if There was a way to get a gen 8 mon into radical red
- 1 reply
-
- radical red
- pkhex
-
(and 1 more)
Tagged with:
-
Hello. So my situation I'm stuck in is originally I made a Tapu Koko to have hidden power fire and then I went to hyper train it. Well now I want it to be hidden power ice but I can't seem to change the stats without the hack check telling me I can't change them due to the hyper training. What do I do?
-
-
Recieved this error while trying to run pkhex egg generator Exception Details: System.MissingMethodException: Method not found: 'PKHeX.Core.Learnset PKHeX.Core.GameData.GetLearnset(PKHeX.Core.GameVersion, UInt16, Byte)'. at BulkImporter.BulkImporterPlugin.GeneratePokemon(PKM pkmn, SaveFile sav, GameVersion version) at BulkImporter.BulkImporterPlugin.AddToBoxesButtonClick(Object sender, EventArgs events) at System.Windows.Forms.Button.OnClick(EventArgs e) at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ButtonBase.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, WM msg, IntPtr wparam, IntPtr lparam) Loaded Assemblies: -------------------- System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Private.CoreLib.dll PKHeX, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\AppData\Local\Temp\.net\PKHeX\Nd7w9hWR1IBIjfbZnE8u2Zg1Oi_DQ9U=\PKHeX.dll System.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Runtime.dll System.Threading.Thread, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Threading.Thread.dll System.Windows.Forms, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Windows.Forms.dll System.ComponentModel.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.ComponentModel.Primitives.dll System.Windows.Forms.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Windows.Forms.Primitives.dll System.Runtime.InteropServices, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Runtime.InteropServices.dll System.Drawing.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Drawing.Primitives.dll System.Collections.Specialized, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Collections.Specialized.dll System.Collections, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Collections.dll System.Threading, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Threading.dll System.Diagnostics.TraceSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Diagnostics.TraceSource.dll System.Drawing.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Drawing.Common.dll Microsoft.Win32.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\Microsoft.Win32.Primitives.dll System.ComponentModel.EventBasedAsync, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.ComponentModel.EventBasedAsync.dll Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\Accessibility.dll System.Resources.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Resources.Extensions.dll System.Memory, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Memory.dll System.Drawing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Drawing.dll System.Numerics.Vectors, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Numerics.Vectors.dll PKHeX.Core, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\AppData\Local\Temp\.net\PKHeX\Nd7w9hWR1IBIjfbZnE8u2Zg1Oi_DQ9U=\PKHeX.Core.dll System.Linq, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Linq.dll Microsoft.Win32.SystemEvents, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\Microsoft.Win32.SystemEvents.dll System.Collections.NonGeneric, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Collections.NonGeneric.dll System.Text.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Text.Json.dll System.Text.Encodings.Web, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Text.Encodings.Web.dll System.Text.Encoding.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Text.Encoding.Extensions.dll System.Runtime.Intrinsics, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Runtime.Intrinsics.dll System.Collections.Concurrent, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Collections.Concurrent.dll System.ComponentModel.TypeConverter, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.ComponentModel.TypeConverter.dll PKHeX.Drawing.PokeSprite, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\AppData\Local\Temp\.net\PKHeX\Nd7w9hWR1IBIjfbZnE8u2Zg1Oi_DQ9U=\PKHeX.Drawing.PokeSprite.dll System.ComponentModel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.ComponentModel.dll System.ObjectModel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.ObjectModel.dll System.Runtime.Loader, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Runtime.Loader.dll System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Private.Uri.dll System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.Http.dll System.Net.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.Primitives.dll System.Diagnostics.Tracing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Diagnostics.Tracing.dll System.Diagnostics.DiagnosticSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Diagnostics.DiagnosticSource.dll System.Net.Security, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.Security.dll System.Security.Cryptography, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Security.Cryptography.dll System.Net.Quic, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.Quic.dll PKHeX.Drawing, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\AppData\Local\Temp\.net\PKHeX\Nd7w9hWR1IBIjfbZnE8u2Zg1Oi_DQ9U=\PKHeX.Drawing.dll PKHeX.Drawing.Misc, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\AppData\Local\Temp\.net\PKHeX\Nd7w9hWR1IBIjfbZnE8u2Zg1Oi_DQ9U=\PKHeX.Drawing.Misc.dll System.Threading.ThreadPool, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Threading.ThreadPool.dll System.Net.Sockets, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.Sockets.dll System.Threading.Overlapped, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Threading.Overlapped.dll System.Net.NameResolution, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Net.NameResolution.dll System.Security.Principal.Windows, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Security.Principal.Windows.dll System.Security.Claims, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Security.Claims.dll System.Text.RegularExpressions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Text.RegularExpressions.dll System.Windows.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\7.0.5\System.Windows.Extensions.dll AutoModPlugins, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\Downloads\pkhex\plugins\AutoModPlugins.dll System.IO.Compression, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.IO.Compression.dll PKHeX.Core.Injection, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null BulkImporter, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null C:\Users\yunba\Downloads\pkhex\plugins\BulkImporter.dll System.Reflection.Emit.Lightweight, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Reflection.Emit.Lightweight.dll System.Reflection.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Reflection.Primitives.dll System.Reflection.Emit.ILGeneration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Reflection.Emit.ILGeneration.dll System.Console, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Console.dll PKHeX.Core.AutoMod, Version=23.5.11.0, Culture=neutral, PublicKeyToken=null System.Diagnostics.StackTrace, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Diagnostics.StackTrace.dll System.Reflection.Metadata, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Reflection.Metadata.dll System.Collections.Immutable, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.5\System.Collections.Immutable.dll -------------------- User Message: An unhandled exception has occurred. You can continue running PKHeX, but please report this error.
-
I recently started playing LGP and I want to get all the trainer and starter clothes using PKHeX, but the option just isn't there. I found a "FashionPlayer" and "FashionStarter" option in Block Data but they're both completely empty. I also have this file, but I don't know if it's useful at all. Thanks! female fashion.rar
-
Trato de cargar el main y me dice ''Attemped to load an unsupported file type/size '' Posterior a esto me abre el programa pero sin cargar la partida. Es el Pokemon Ultra Sol en la versión descargada y no me permite cargar el file Si alguien sabe como resolverlo estaré muy agradecido
-
How do I make it legal? I had someone ask for this Pokemon. Or is it not legal? I'm a total newbie at this stuff, by the way.
- 1 reply
-
- PKHex
- Roaming Ghimmighoul
-
(and 1 more)
Tagged with:
-
I've deleted my previous Pkhex folders beforehand. After downloading this new update I can't open it. It gives me an error telling me the pkhex core dll is missing. I have the laster NET7 too. Not sure if there's some hidden folders I domt know about in appdata or what.
-
I am on gen 5 using Pokemon Black on desmume. Even when I use PKHaX, i can open the file, modify my pokemon. It works properly : when I save it by overwriting the file it is said to be successfully saved. BUT when I open it to check if it worked, my pokemon was not modified though it can be moved for example if I choose to move it in my party or box, that works… Any help ? Thank you in advance
-
I’ve yet to see anyone attempt to answer this, but here goes: in Pokémon Let’s Go you are able to catch Large or Small Pokémon. When placed into HOME, these values are retained. Then, when transferred to Sword or Shield, the height is reverted to the average height of the species. When placed BACK in HOME, the new average value is what’s maintained, and the Pokémon no longer has the original LGPE height value. My hypothesis is that the values are reset back to zero in SWSH, but I have no verifiable way to test this hypothesis. Would anyone with the proper tools to research this be willing to help me? The chain would go something like this: >Catch a LGPE large/small Pokemon >Transfer to HOME >Transfer to SWSH >Record its size value in PKHEX >Transfer back to HOME >Transfer back to SWSH and record again in pkhex taking note on the height/weight values.
- 7 replies
-
- pokemonsword
- pokemonshield
-
(and 4 more)
Tagged with:
-
Are there any fashion blocks to unlock all clothing options in Scarlet?
-
Hi, I'm new to this forum and I'm just wondering, I'm playing through pokemon SS and I'd like to move a shiny Poliwag into later gens. I caught the mon normally then made it shiny with pkhex. Is this baneable by bank?
-
I know that if xor=0 pokemon can be square shiny. But I cna't find how to make sq shiny jirachi pk3 with pkhex. It's hard to match legit pid I tired Rng reporter to find pid but channel part doesn't match and pkhex database doesn't give shiny one. Is there any way to find legit square shiny jirachi pid? or get legit sq jirachi pk3?