-
Content Count
45 -
Joined
-
Last visited
Community Reputation
19 FledglingAbout Aeodyn
-
Rank
Knight
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Here's a fix, it can just be dropped in the `Data\Mods` folder. (Only briefly tested however.) The cause: Line 4962 in PokeBattle_Battler, instead of `@battle.pbCommonAnimation("Powder",pbThis,nil)` it should be `@battle.pbCommonAnimation("Powder",self,nil)`. Powder fix.rb
-
Aeodyn started following Battle Errors
-
[E18] Un-stuck Me! The save file fixing thread
Aeodyn replied to Amethyst's topic in Troubleshooting
On the save select screen of both, there's a controls menu. If they were somehow changed you might be able to reset them with "Default" towards the bottom, or change the "Special" one to A. Otherwise, there is a different F1 menu for each exe where there are also controls. -
[E18] Un-stuck Me! The save file fixing thread
Aeodyn replied to Amethyst's topic in Troubleshooting
A couple things you can try: Temporarily using game.exe or game-z.exe instead of whatever you're using now. (Though if you can run game-z, that's way better performance anyways.) You should be able to use Windows' On-Screen Keyboard (searchable from the start menu). -
Aeodyn started following can't clone "Nill Class", Pichu bred from A-Raichu can't evolve (Fix), Glitch field stuff and 6 others
-
Line 849 in PokemonEvolution apparently prevents a Pichu bred from an Alolan Raichu from evolving. Really that form data should be stripped from the egg in the first place, but barring that, just deleting that line apparently fixes it. If anyone needs the fix, the attached script can just be put in the Mods folder. Pichu Fix.rb
- 1 reply
-
- 1
-
-
Around line 2270 in PokeBattle_Move and on, gl1 and gl2 are referred to without necessarily being initialized. Should probably be restructured. Apparently using Foul Play in the field with Eviolite can trigger the error. Screenshot, credit Sleepy_Goblin in Discord:
-
Savefile Troubleshooting V12
Aeodyn replied to Zumi's topic in Official Rejuvenation Club's Troubleshooting
When I first took the train back from Route 9 I didn't check the options and went to the stadium, and played up to the Adam fight before I realized that that was a sequence break. I was dumb though and didn't revert to before I got on the train. Since then I've played a lot and beaten Souta, but now Erin doesn't show up at the library, there's a Claydoll in the National Park, and I've gone to Sashila village, where Damien mysteriously offers to fly me back somewhere. Help pls? Edit: nvm, found an old save in a hidden recycle bin thing. -
@Maruno Something you may be interested in is that mkxp-z can be compiled to use any version of Ruby, and at least with Reborn, getting it to work with Ruby 2.7 is relatively straightforward. ~50% performance increase. There's also the Tilemap improvements/fixes I implemented in mkxp-z (used in Reborn 18.4.3), which means you can just completely toss out CustomTilemap. (Feel free to PM me about either, if you want.)
-
MKXP Port for Rejuvenation v12.2
Aeodyn replied to DemICE's topic in Official Rejuvenation Club's Guides & Resources
@DemICE Out of curiosity, what changes did you make (other than mentioned above)? I know Reborn had a bunch of annoying alignment stuff, and then there's some Essentials-specific changes (https://roza-gb.gitbook.io/mkxp-z/troubleshooting/essentials). For Mac: Honestly, I expect that taking Reborn's AppImage and replacing the stuff in (just) the Resources folder should work. At least as well as Reborn, anyways. -
That AI streamlining is soooo satisfying. And yay for memoization! TBF for the tilemap, they had to rewrite it cuz the RMXP version just doesn't support some things. Though why someone thought that meant they should sometimes render tiles as individual sprites is beyond me. Luckily ancurio & inori's mkxp-z (game-z.exe) is open-source, so I was able to implement/copy-paste what the built-in tilemap was missing.
-
You should make sure your game and all your mods are up-to-date, first. Then, if you're using SWM, the Shared PC mod might not be compatible rn:
-
The move description for Spirit Shackle seems to be that of Spotlight.
-
Something interesting: Even in version 2.7 with JIT enabled, Ruby still can't do constant folding (turning 2*3 into 6 so it doesn't run every time). Apparently the reason is that because almost anything can be redefined, even for something like 2*3 it has to look up the right definition each time. So a lot slower than you'd like. (Also ruby 1.8's optimization is much worse than 2.7, even without JIT.) For Essentials, there is at least one thing I'm aware of that's kinda-sorta reeaally bad: tiles are sometimes rendered as separate sprites, individually. ~300 tiles are on screen