Leaderboard
Popular Content
Showing content with the highest reputation since 07/18/26 in all areas
-
No turning back. It all ends here. With or without you. ...But where are you? When are you? Instructions on what to do before and after loading can be found HERE. DOWNLOAD THE GAME HERE OR HERE Patch Notes (V14.0.0):6 points
-
Don't report bugs to the devs if you are using mods. If you have issues with the mods use this thread to report it or contact us by Discord. The rars all come with the proper folder structure, just throw their contents into the game folder. This is a compilation of mods working for V14 ported from the one I made for 13.5. They are very modular and shouldn't break on small updates. Some didn't need changes, while others needed some small touching and some have been just made from zero due to how much the code of those parts changed or me having a better idea on how to do it. Some mods have been removed because they are superflous due to being alrady something dientical or similar in the base game. Some I may just considered that are not needed. Make requests for adding things and I may do it if I have time. You can have them all or chose the ones you want. Some of them have dependencies on three scripts that don't do anything unless you have the others. They have code that can be called from other scripts. This time I am adding some modular debug that activates the debug menu in particular places only. Far more recommended to use oly those you will use to prevent errors with the debug menu. People who contibuted to this pack besides myself (detailed credits ont he specific mod): @Jarred B Dank aka Matt. Made some of the mods of the pack. He has been the main person who collaborated with me in Discord to make the QoL Mod Compilation Pack for Rejuv 13.5 from which his verson was ported. @AsNKrysis aka AsN. Ported three of the mods available on the pack. He also has his own mod releases for 13.5, so please check them too. @Waynolt a lot of his modular pack has been ported to v13. @DemICE some of DemICE's mods have been ported or have been used as references when making new ones. You have to drop the "patch" folder in the rar in your game's folder. Everything is already properly set there. Mod List: Rejuv 13.5 QoL Mod Compilation Pack Changelog: Downloads: July 20th Update (14.0.8): Rejuv V14 QoL Mod Compilation Pack Version 8.rar You can also check my ShowMoveEffectiveness Mod for V14. Old Downloads:3 points
-
Version 9: Added Z.1.3.7.Cheat_PC_AddGemPack, Z.3.2.Cheat_PC_Get100000RedEssence, and Z.6.0.Cheat_PC_GimmighoulCoinFarm.2 points
-
(Disclaimer: This post will probably be updated as time goes on today if there's anything I missed or realize I want to add later. Or maybe not!) 1.) DO NOT MERGE YOUR V14 FOLDER WITH YOUR V13.5 FOLDER Hey there! It's finally time again! This is not the release post. This is a quick post to help make your save file transition from v13.5 to v14 is as smooth as possible. First, let's start with this: PLACES THAT ARE NOT SAFE TO SAVE/LOAD UP IN: DISCORD INTEGRATION: Rejuvenation is now officially supported on Discord! No more Poker game or Age of War or whatever it's called in your activity sidebar. GEN 9 + ZA Megas: Gen 9 is now included! This includes numerous moveset updates. I said we weren't including ZA Megas and that's somewhat true. All sprites and stones have been implemented, but only those with official abilities are actually included in game. Go nuts trying to find some of them! JOIPLAY/KIRIN: We do have builds for Joiplay, but calling it official support may be a bit of stretch. These are highly experimental builds and maintaining overarching support is something we aren't putting at a high priority right now. There ARE some issues that we already know about that CANNOT be fixed by our side. The developers of these will have to take care of them. Same goes for Kirin. THE PROLOGUE + NG+: The prologue got some big changes if you weren't aware. It has an extended story if you have a completed v14 save. NG+ Is actually quite extensive this time around. So once you're done playing v14, there's more adventures to be had if you so wish to experience them! Some of them are very... very interesting. And I reward you handsomely for taking the time to play again :). I'll leave it at that. CHAPTER PASSWORDS: V13.5 brought in a Terajuma Password that allowed you to skip directly to Terajuma. v14 Brings in a new password that skips you directly to Act 2, Chapter 9. I really wanted to get a Karma Files password ready for release, but this password is already very experimental. I expect there to be some unforeseen issues with this one. Tread carefully with this one, but it should work okay. In the future I hope to have the Karma Files password skip ready as well, but ACT 2 is so extensive that it takes a lot of time and testing. I hope you all understand! RANDOMIZER SUPPORT: Unfortunately due to all the major systems changes we've had, having this in time for release was not feasible, but we are working on support later down the line! HOW TO START CHAPTER 16: But first, I have to mention something. I know a lot of you Renegade fans are itching to jump into Renegade first. I highly, highly do not recommend that you do this. Renegade acts without regard to spoilers in Paragon. And some things in Renegade will flat out NOT MAKE SENSE without context from Paragon. I HIGHLY recommend that you play and complete Chapter 16 in Paragon FIRST.2 points
-
Theres no error message. I did eveything i can think of. I tried to allow firewall access, redownloaded the game, i loaded an old save file just to make sure its not a corrupter save, extracted to game in a different folder away from v13.5, etc. I can play v13.5 normally. Do you have any ideas/reason for why this is happening? Am i missing a few files?2 points
-
Greetings, you probably donāt know who I am. Iām Falirion, one of the Programmers for Rejuvenation. So if I work on Rejuvenation what am I doing on Rebornās devblog? Well since Reborn, Rejuvenation and Desolation all share our primary codebase I was asked (yes, asked, please ignore the banging on the barricaded door in the background) to talk a bit about one of the more major code reworks that have been done during 19.6ās development, the rework of the move resolution in battle, a part of the Code that was essentially rewritten from scratch. I will give the warning right now, this is going to get technical. So letās start with the obvious first question. Why? Why fully rewrite a section of the code that was already working fine? Well, because while in the grand scheme of things it was working correctly, about 95% of cases or so, there were several existing bugs that were ultimately deeply rooted in how we actually handle the resolution of moves. We had a collection of bugs that all ultimately boil down to a certain older bug that has plagued the codebase since before I was even part of this community and probably even since the start of Rebornās development. Our older Players may remember the so-called āspread damage bugā, a bug in which, when using a damaging move that affected multiple opponents, the second affected target would take more damage than it should, if the first affected target fainted to the attack. This was due to the double battle spread damage reduction not applying to the second target because, due to the first target fainting, the game didnāt recognize anymore that it should reduce this damage for being spread damage. Now of course this bug has been fixed for a while so why is this relevant? The fix to this bug is what a programmer colloquially refers to as āduct tapeā, a more or less sloppy fix that resolves the issue but doesnāt really address the root cause, like using duct tape to try and keep your headphones from falling apart instead of replacing them. In the earlier mentioned bug collection almost all of them were a variation of this: something happened when dealing damage to target 1, and this would then affect how the move interacts on target 2 (typically the damage) when it in fact shouldnāt do this. Some examples are Moxie, Beast Boost, Soul-Heart and Water Spout or Eruption vs Rowap Berry. And the root cause is the same we were for all these years doing move resolution wrong, simple as that. The issues can be boiled down to 3 key points: Timing, Referentiality and Structure. Before explaining these, a quick aside. When explaining these I am going to refer to 2 Moves in particular Stomping Tantrum and Dragon Darts. This is because the functionality of these 2 moves taught me a fair bit about how the move execution needs to be to work correctly. And while I assume that most people reading this are familiar with PokĆ©mon mechanics, for clarity a quick rundown: Stomping Tantrum is a damaging ground type move which doubles in power if the previous move the attacker used has failed⦠for most reasons, hitting protect for example does not activate this power boost. Dragon Darts in single battles is just a 2 hit attack, kinda like dragon type double hit. In double battles however this move has a quality we will call smart targeting, it will attempt to hit both opponents once each, if however the move would fail against one of the targets, it will ignore that target and instead hit the remaining target twice. So since we are now on the same page... Of the primary issues Structure is by far the most important one, but I will keep it for last so letās start with Timing. Now, in the old move execution the general order of things isnāt inherently wrong; first check that the move doesnāt fail, then calculate and apply the damage and then handle the effects. Itās just the logical order of things. However the failure check was happening way too late, in particular for dragon darts, by the time the failure check was happening we had already determined which targets we are hitting and how often. Which is a problem for Dragon Darts because it needs to know whether it would fail or not to determine who to hit and how often in the first place. As such we had to move failure checks a lot earlier and while doing so we noticed, a lot of specific failure conditions were checking at the wrong time entirely, in fact type immunities and primal weathers were part of the damage calculation which is just wrong on so many levels. So letās talk real quick about failure conditions, in Reborn 19.5 code they are generally in 2 places, at the start of move execution in a method called āpbTryUseMoveā, which covers things like being asleep, paralyzed and other things that prevent the move from happening and as such not using PP, and āpbSuccessCheckā which covers just about all the rest just before the move would deal damage. If only it was so easy⦠After the rework we categorize them into 4 categories (numbered 0 to 3 because we are programmers so we start counting at 0). category 0 is āpbTryUseMoveā and is largely the same as before so moving right along. category 1 is new entirely, timing wise it happens after subtracting PP, but before the activation of protean for example. This includes things like primal weathers and queenly majesty, the move is canceled in its entirety, usually irrespective of the explicit target (queenly majesty is a side effect ability, who actually has the ability is irrelevant). Only exceptions here are sucker punch and poltergeist, which directly check for the target here. category 2 and category 3 are both equivalent to āpbSuccessCheckā and are still in this method. Why are these categories separate if they are in the same place? Well I personally also call Category 3 "the group of random move specific failure conditions that exists because PokĆ©mon code always has to be weird and wacky" but thatās a mouthful. The difference between Category 2 and 3 is that Category 2 conditions are checked before checking Accuracy while Category 3 conditions are checked afterwards. To be frank I was tempted to ignore this but there is a quirk about this that is relevant to Stomping Tantrum. Which leads us to Referentiality, an issue largely specific to Stomping Tantrum, as mentioned earlier not all failure conditions actually activate Stomping Tantrumās power boost. Hitting into a targetās Protect (or equivalent) for example. Another group of failure conditions which donāt count for Stomping Tantrum are in fact all Category 3 failures. Any Failure condition that happens after the accuracy check will not activate the damage boost. Which brings us to the key problem, how do we even recognize why a move failed? Can we even? In the old move execution, we could not, the move failed and there was no reference as to why. Additionally in the Timing category I mentioned that we are checking move failure before determining who and how often we hit them. There is a problem with this, when we check whether a move fails against a certain target now, we are before the point where we handle anything, so we have to delay the effects and player feedback for these failures. Which means we need to know why a move failed after the check is finished. As such we are using what we call hit flags. In the above screenshot you see a bit of the failure handling, along with a lot of examples of these hit flags. They are kept for each target the move targets and make note of what happens to the move against that target. For Stomping Tantrumās case we can check against these hit flags and make the effect not activate if any of the ones that shouldnāt trigger it are included. So lastly Structure. The primary problem was that when handling moves damaging multiple targets, we were handling targets sequentially, which is to say one after the other. We were checking failure conditions, calculating damage, applying damage, applying effects and so on for one target fully before moving on to the next. Which is the root cause for most of the bugs I mentioned at the start. So if that is wrong what is actually correct? The targets in canon are handled in parallel so we first check for move failure for all targets before then handling those failures for all relevant targets, before calculating damage on all targets, before applying⦠you get the idea. This approach prevents what happens to the first target affecting what happens to the second, because the damage you are dealing to the second target has already been calculated. This also lets us remove the Duct tape fixes and have overall cleaner code. So how do we actually know that canon works this way? Dragon Darts is a big hint. Not only do we need to know whether the move fails against all targets before calculating damage, we can also tell that failure checking works similarly in parallel based on how Dragon Darts acts when it fails against both targets. When Dragon Darts fails against both targets the player will only receive the feedback for one of those targets, the other target being ignored entirely. The feedback received relates to the target whose failure condition has the least priority when checking failure conditions Letās look at the reworked pbSuccessCheck real quick. What we see here is that first it creates an Array of hit flags, one hit flag for every target the move targets. Initially the hit flag is on ā:Successā, indicating a move that connects with the target. Then it checks each possible failure condition, in order for all targets before checking the next one, in order on this screenshot, whether the target is hidden via the effect of the ability Commander (gen 9 ability jumpscare!), whether the target is in a semi-invulnerability turn (like Fly or Phantom Force), whether a priority move is blocked by psychic terrain and whether the move is blocked by Wide Guard. Between each of these it runs a method called āsuccessCheckFinished?ā which ends the check when it detects that the move would fail against all targets at this point and also does some filtering for Dragon Darts to remove the first target that failed. The point here is that the failure condition check also runs in parallel and has a very specific order it checks these conditions for and this order matters. Structure was also significant in a different way, fixing this required a ton of work. Depicted here is the method "pbEffect" as it is in 19.5 Reborn the primary method of move handling, each move with an effect subclasses (overwrite it with their own modified version which can still call into this higher level version of the method) this method. The issue is this method bundles together, everything; damage calculation, damage application, move animation, move effects, literally everything. And to make the previously mentioned fixes to the structure we had to untangle this method, separate the components so we can do each step separately for all targets instead of doing it all for one target. Which due to the subclassing meant, we had to rewrite every single move, all the several hundred moves that exist in the game, we had to fully rewrite in a new structure. I have to give a shoutout to the Community Cooperation Initiative, modders that signed up to work directly on the codebase without being part of the dev teams, maybe even canonize their mods and such things. Without the help of all of them, rewriting all these moves in the new structure would have taken much longer than it did. Thank you for your help in this and everything else since. Now there is more I could talk about here, but I have probably already been rambling way too much. As a TLDR: we rewrote the entirety of the move execution because the rebornian games had some key things wrong here for several years if not more than a decade, which allowed us to fix some long standing bugs which were not fixable otherwise. So why should you, the player, care? Under the hood it changed completely but for gameplay it remained essentially the same except we fixed some bugs, right? Essentially yes, but all this also allowed us to streamline things, for example this: Nice, right? enu asked me to ensure when rewriting the move execution that we can implement simultaneous damage dealing and health bar movement. Doesnāt just look nice but also speeds up move execution a fair bit. Uhh⦠looks like the door barricade isnāt gonna hold much longer, so I gotta bounce, hope you found this interesting, I know I can get way too much into details, so excuse the long explanation. Have a nice day! Sounds of a door breaking open You will never take me alive!2 points
-
I posted this on Reddit a few months ago, but I thought I'd share it here as well. I've managed to find all versions of Rejuv and saved all of them to my own Google Drive to make sure they're archived. Thought some of you here might be interested in trying out old Rejuv and see how far the game has evolved. 1. https://drive.google.com/file/d/1FtbfenFuUL_ff-E3nAZ4Ceexbgm6bGGR/view?usp=sharing 2. https://drive.google.com/file/d/1wYLzGvjXk4gmNmwxk6aB66SdGbo375Et/view?usp=sharing 3. https://drive.google.com/file/d/1LDiW3cuhuPjcdkfJkXIdr4sHdm5f-heL/view?usp=sharing - (Credit goes to MoonPaw for digging this one up) 4. https://drive.google.com/file/d/19boRjZ0_PbRzL_pQS8Fwk8p0x44x6SqI/view?usp=sharing 5. https://drive.google.com/file/d/1HBdGbwg5IxOAsKT-OWwI-1j-IEn7IYxW/view?usp=sharing 6. https://drive.google.com/file/d/1S3x9ktKr3SR16byDlPK28ufHODo3Bjrd/view?usp=sharing 7. https://drive.google.com/file/d/1g9FmMfiXSaG3mPEk2H8089LU4Ln1kjUl/view?usp=sharing 8. https://drive.google.com/file/d/1r9HDCZEigPNfrFonGcsO_ZQBEy74a_Kt/view?usp=sharing 9. https://drive.google.com/file/d/13KYoKIvlTJFOMzm2mo-0GI_vOci-xIOg/view?usp=sharing 10. https://drive.google.com/file/d/1arnJn5IaIQXLAZ0WTQdepmiEG4MJfY5X/view?usp=sharing 11. https://drive.google.com/file/d/1pOwQQUUgjRFmvWow5DJbleAfz1FTn23s/view?usp=sharing 12. https://drive.google.com/file/d/1lfUV-qajIEYrNqN-tMNjZ6MrHjkg5a7o/view?usp=drive_link 13. https://drive.google.com/file/d/1O7f89eOvRHPoeZ2HjzuEIz4GRIWz2nTl/view?usp=sharing 13.5. https://drive.google.com/file/d/1SyWyQ7WCaIZX_PgUTMPHr3Sy_-JgVc-w/view?usp=sharing (patched to 13.5.7)2 points
-
1 point
-
Don't report bugs to the devs if you are using mods. If you have issues with this mod use this thread to report it or contact me by Discord. The rar comes with the proper folder structure, just throw the contents into the game folder. You don't need the old versions unless the current one is giving you issues that an old one didn't. V14 Just released, so you can expect updated to break this. I will try to fix any bugs as soon as I can. Ported the mod for rejuvenation V14, the old one won't work due to changes made in the code. This mod adds a QoL present in recent games (and champions specifically for x4 and 1/4), the one that shows the effectiveness of our moves. We can already check the types of the enemy, so this is saving us time from checking that if you don't know the types and have to check what works better. Some people love this, others hate it, which is why I am providing it separate from everything else. Of course, bonus effects from the fields are also shown but thatās already available in non-modded Rejuv. The graphics to show the bonus of the fields differ with this mod to being able to show everything while looking good though. There are five indicators: Ineffective, 1/4, 1/2, x2, and x4, which is shown with colors and symbols very similar to how buffs and debuffs fields were shown on vanilla. Now fields are shown with a big + or - of green or red color on the left side instead. There is also a big brown X when a field make a move ineffective since Update 7. On double battles you are shown both enemies, with the icons on left or right matching the opponent in question. If you think this mod can be improved further because something isn't being shown properly, please tell me. I know I can get more into specifics to get it better. I know some niche cases may need to be implemented, but I am not always active in the forum, so I may miss messages for quite a long. V14 has jsut released so I should be checking frequently though. Download: ShowMoveEffectivenessV14_Update7.rar Old donwloads:1 point
-
If you go to the weather institute there should be 1 more quest that doesn't appear at the help centre. Afterwards if you return to the help centre you'll be able to progress.1 point
-
I see! Maybe it depends on how the devs use pokemon essentials's resources to create the game, I guess. Anyways, thanks for your help! :D1 point
-
If you completed that part on any save, it is considered NG+ for that content. It is tracked between saves on Unidata.1 point
-
Reuploaded Spork UPDATES: -new custom shinies: custom shiny Glaceon made by me custom shiny Corphish line made by me custom shiny Smoochum line made by me -added third skin tone for Gentlemen, Ace Trainers, Beauties, and Ladies -Hex Maniac skin tones now have different outfit colors, with one still Gen 6 and the others being the two different ZA outfit colors -update to Mulder's Earth Plate quest: added the two new Marvelous Marsh Trainers that were added last reupload, you now only need to beat one wrestler (but Mulder does acknowledge if you've beaten more), and they now all have unique names for their moves -the Floettite now has a quest instead of being found in the overworld: after obtaining the Mega Ring, go to Aretha's Gym and battle a new Trainer there (if you've already done Aretha's Gym before this reupload, you'll have to do the Trainer's initial battle first, as the Floettite battle is a rematch) -Couragi now has a party hat in Alumia's Gym (sprite made by Punkeev) -Kyle, a Couragi relative, has a cameo at Happy Hot Springs (sprite made by Punkeev) -added NPCs in the water at Bolaii Beach that give items (they're like new BCC volunteers) -Apple Acid updated to 90 power -updated the overworld Mega Stone graphic to Rejuvenation's new one in V14 -added a few Trainers -team changes: Dylan's Crawdaunt is now shiny Portal Agent Yuki: Froslass, Espathra -> shiny Jynx, shiny Glaceon -Fishermens' Pokemon are now sent out in Lure Balls -updated several Trainer sprites to have the Poke Ball they're holding match the ones they use in battle (Sushi, Belinda, Fisherman, Hex Maniac, Gentleman, and Pokemon Ranger) FIXES: -the correct Trainer sprites now pop up when wrestling Sire Quag and Whiskerweight for Mulder's Earth Plate quest -filled in white space for two Pokemon Ranger Trainer sprites' legs For the shinies, we've got two Ice-types and a Water-type to help cool you off this summer! Glaceon: resembles Glacia from the Hoenn Elite Four, since Glaceon's Japanese name is Glacia. I wonder why they didn't give Glacia a Glaceon in ORAS...either way, I'm really happy with how this one turned out! Corphish line: based on Atlantic/Chesapeake blue crabs. I made the sprites, but the inspiration was Punkeev's idea! It's not a 1:1 match to the real animal in terms of which body parts are which colors, I just went with the arrangement I thought looked the coolest Smoochum line: based on the Lochladies in Lake Kingdom in Super Mario Odyssey, since I saw a resemblance to Jynx! Punkeev's quote on the Smoochum: "This is so cute, I wanna feed it whole milk and watch tellytubies with it and give it jelly beans." As promised in the last post, we've also got third skin tones for more Trainer classes! Only Team Portal remains, which will be next reupload. New outfit color inspirations: Beauty: continuing the moth Pokemon theme, we had Volcarona and Frosmoth, and now we have Venomoth! Lady: the orange dress is from the orange on Regirock, since Regirock is a rapper in Spork! I thought about changing the other two Ladies to Regice and Registeel dresses to have a consistent theme, but I like their current colors Hex Maniac: they had three skin tones before, but now they also have three outfits! As mentioned further up, one of them keeps the Gen 6 colors, and the other two have the ZA colors Thanks to Punkeev for helping expand the Couragiverse in Spork! There are currently no special events tied to Kyle, he's just napping. But there may be more Couragi relatives and lore in the future!1 point
-
Reuploaded: -new custom shiny Crawdaunt made by me -Dylan's Crawdaunt is now shiny -Apple Acid updated to 90 power -changed Poke Ball in Sushi's Trainer sprite to Dream Ball -changed Poke Ball in Belinda's Trainer sprite to Dusk Ball1 point
-
I'm running into a game-breaking crash in version 14.0.8 and wanted to see if there's a known workaround for this specific trigger. Whenever I try to load my current save file, the game crashes immediately during the loading screen with this error: Exception: NoMethodError Message: undefined method 'maxBoxes' for nil:NilClass this happen when i'm playing as melia in the pearl route1 point
-
1 point
-
Miss G is Katsu, Nastasias Mom, and by Ren's room I mean the one on the 100th floor of the Xen HQ, the open door second from the right by the stairs1 point
-
The unlocked relearner mod seems to bug when trying to teach any TM. Tutors, Egg moves, and relearning work fine but TMs specifically crash the game. Tested on multiple mons.1 point
-
1 point
-
All A form and location From the google doc community madein spoiler above1 point
-
New version released. Version 5 Fixed modularity of all PC_ mods especially the PC_Z_ReorderOptions that cuased crashes is a single PC_ mod was missing, now they require 0000.ModularInit, but no more issue of needing therm all. Now the animation of the sprite for hiddden items when using ItemfinderUnhideItems works properly. Fixed NoDDPass. Also I tested the FISHINGAUTOHOOK and works perfeclty for me, I don't know what issue @TheIsolatedWizard is having.1 point
-
Pokemon Rejuvenation (Warning)!! The New Renegade Route v14 Get My Save file from Below or click link shared from Google drive: Game.rxdata1 point
-
Why make a new post to ask when you can just go to the all gen thread or the discord thread in the reborn discord?1 point
-
Added pokemon rejuvenation version!1 point
-
Yup! I did it without any spaces so results may vary.1 point
-
Don't report bugs to the devs if you are using mods. If you have issues with the mods use this thread to report it or contact us by Discord. The rars all come with the proper folder structure, just throw their contents into the game folder. This is a compilation of mods working for 13.5 and should all work with 13.5.6. They are very modular and shouldn't break on small updates. Some are original for this version, some had ones with similar effects but aren't actually ported from those while others are ports of mods of other rebornlike games and versions. You can have them all or chose the ones you want. Some of them have dependencies on three scripts that don't do anything unless you have the others. They have code that can be called from other scripts. People who contibuted to this pack besides myself (detailed credits ont he specific mod): @Jarred B Dank aka Matt. Made some of the mods of the pack. He has been the main person who collaborated with me in Discord to make this QoL Mod Compilation Pack for Rejuv 13.5. @AsNKrysis aka AsN. Ported three of the mods available on the pack. He also has his own mod releases for 13.5, so please check them too. @EvGym aka Gym. Battle_SpeedUp is based on his mod for v13, and I also helped him on porting it to v13.5. That said, the version here is slightly different than Gym's. @Lillietea ported the SortPc made by @VeryBasic for Reborn. @Waynolt a lot of his modular pack has been ported to v13. @AiedailEclipsed the Mining Overhaul has been ported from him. @DemICE some of DemICE's mods have been ported or have been used as references when making new ones. @Anddy for the original mods used to create ItemReplaceRestore. You have to drop the folder in your game's folder. The Subfolder Data/Mods is already created with the correct structure. Mod List: Rejuv 13.5 QoL Mod Compilation Pack Changelog: Small Bug Fixes I found small bugs when playing that aren't a big deal and no priority for the mods to fix, but they irked me so I fixed them. The method to apply them is the same as with the mods, but you will have to accept replace the files. Note that fixes depend on the version. These have been updated for Rejuv 13.5.6. List of Small Bug Fixes: Small Bug Fixes Changelog: Downloads: August 12th Update: QoL Mod Compilation Pack Update 21.rar Alternative SystemScreenshootFix.rb by @CrystalStar (May 5th 2025). Save scrrenshot on dedicated folder with current time as file name and png format: System_ScreenshotFix.rb Downloads for fixes: Small Bug Fixes.rar Map119.rxdata You can also check my ShowMoveEffectiveness Mod. Old Downloads:1 point
-
1 point
-
gosh, it's dusty here, isn't it? well... i suppose that's the nature of a finished game. most of my efforts in recent times have gone to things that are not reborn... but most is not at all. in our last post, orsan teased the following about finally updating the protagonist OW (OverWorld) sprites for 19.6: today, we're going to show and talk about these in a bit more detail. (a note for our blind players-- this is a purely visual update most and so this is probably not for you. with apologies, i will be sparing myself the task of IDing each image). OW updates were something that, in an ideal world, i would have done with e19. only, i was soooooo tired by the end of it, and we did a lot of shampoo-ing of VS and battle sprites, i truly did not have the stamina. however... these sprites appear in virtually every screenshot of the game ever, and so the mistakes of my past continued to haunt me until i was cow-prodded into doing something about them. fortunately, there was a lot that i wanted to fix, and my skill in spriting had grown over time, so it was quite rewarding to do. to see them in action, let's post a dizzying array of gifs: above includes both walking and running variants. our old sprites were made with very, very minimal effort to make the run sprites; i only moved the head forward and down a little bit, which is what sometimes resulted in the ability to spam the run button and appear to dance in place. i don't know if that's still possible these days, but i think that having a more dynamic running pose will feel nice anyway. truthfully, i want to develop my skills to push such poses to even more exaggerated animations than this. but alas, that is not for this little update project. when updating our protagonists, i wanted to choose a 'style' of animation and stick with it for consistency between them. this consistency was a flaw in the previous set of sprites. they were made at various times and levels of skill, and so they are not always consistent in their dimensions and animation. this is also why the shape and size of some of them will appear to have slightly changed. this was also an opportunity to fix some of the issues that had nagged me with our previous style of sprites. compare these frames. new vero (left) vs old (right): old decibel (left) vs new (right): the issue is clearer on decibel's-- the way the feet are positioned ends up making a solid black line across the bottom of the sprite. on vero's, there is a one pixel notch, which i would consider better but still visually awkward. i'm not going to claim that the updated sprites are perfect, but i think we succeeded in refining the walk and run cycles to help silhouette the feet better in all frames of animation. here is another example, demonstrating a change in the animation style i mentioned before. in the above screen, pay attention to the relative placement of the sprites' hands. in each step frame, i wanted to increase the action of the movement by making the hands appear to move more widely. i think this helps 'running' vs 'walking' come across much clearer. for aspiring spriters: I find that starting with the positions of the hands is a great way to tackle these little bodies. it'll help you refine the silhouette early on. also look how much better alice looks! i haven't liked her very much in the past-- and with her OW sprite previously looking so different from her other graphics, it's no wonder! it looks like she had buns or something. i hope everyone enjoys the new hair-floof. i think i'll be using her more in the future myself. perhaps the most notable new detail of the animation overall is the hair animation. in the current set of sprites, most character's hair hardly animates at all. much as we love lucia, hers in particular has been very awkward in the past. bouncy hair is a nice way to add a lot of life to sprites, and it's also one of my favorite things to do in sprites now. it's fun to make it go swoowsh-swoosh-swoosh! here's some frames, and how i think of animating them: frames 1 and 3 are always identical in these sprites, the work is on 2 and 4. in either case, i choose a direction, either clockwise or counter clockwise to think of each 'tuft' of hair as moving. then it's just a matter of moving the pixels as little as possible while finding a shape for the points that looks nice in pixel form, and doesn't create awkward movement when applied to the height change (frames 2 and 4 bend at the knees, and thus the head sinks 1 pixel lower, which can make some animations look awkward. testing is important!) on a different note, did you notice from the first gifs that kuro is looking different? in my view, he's kind of been the least popular protagonist. originally, i imagined him having kind of a deliberately shaggy hair style, but i don't really like that as much these days, and more importantly it doesn't really seem to be a hit with players either. so i took the opportunity to kind of shore his hair up to a nicer shape in general. here's his updated VS sprite: we wouldn't want to change him tooooo much for the players that are used to him as he is, but i felt this would generally be received as an improvement. and hey, we finally got his sunglasses into his OW too! because of how many variations and alterations player OW sprites have, this ended up being a significant undertaking! there are many little pieces-- walking, running, biking, fishing, surfing, tauros-riding, minecart-riding, etcetcetc... i would not have had the stamina to do all of the animations over myself-- in the end, i just made the base walking and running sprites, and then others in the community initiative helped out with the finishing details. big shoutouts to moonpaw, nephilinite, meteors, not_aza, and inserobite102. in addition to the extra animations, they also helped refine some of the cross-sprite details... enu oversaw it and contributed some scripting to avoid having to make redundant graphics (surfing, fishing while surfing, diving were all very similar...) too! thank you all! speaking of diving... i think, but i'm not sure? that the main games are doing this these days too... but we also took the opportunity to answer the question of "how does the player breathe underwater when diving?" let's close out with some before-and-after references. for fun, i also included the original versions of Alice and Vero, back in the earliest episodes when they were the only protags. if you are looking to improve your spriting from others' example, i suggest studying the differences in these images and seeing how they changed over time. softer colors, flatter hair shading, brighter outlines... what else do you notice? this kind of analytic exercise is a good way to improve your own skills. by the way, for anyone still interested in the eventual postgame continuation of our dev let's play-- it is not forgotten. only life has been getting very in the way for a long time now, and at this point i would at least wait until 19.6 anyway. thank you all, as ever, for caring about the game at all stages of its lifecycle, and i hope you can look forward to the update1 point
-
after trying to do some research on mirage woods, i found out that after the update no one has actually written up a guide to either the broken bell quest (for zorua) or actually getting to the place, so here. i may be stupid and experiencing Skill Issue. after entering mirage woods: meanwhile for the broken bell quest (zorua): move relearner: hopefully some people get use out of this1 point
-
Happy Birthday , i hope that you will have a great day1 point
-
Happy Birthday , i hope that you will have a fun day1 point
-
Happy Birthday , i hope that you will have a fun day1 point
-
In order to view the #emotional-support channel on our community discord, users will need to have the Trusted role on the server. In order to get the trusted role, users must be verified, have less than 3 active warning points, and must read the following:1 point