Cheat Mod Ren'Py Pokemon Academy Life Forever Cheat Injector [v1.43] [Sleepingkirby]

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
yea tbh it can be easily done by urm if people wanna do it. There is one thing i would like to request its not super importent or anything but do you think you can manipulate the shiny values in the game? maybe a 1/100 or smth?
So, funny story. I actually looked into it for personal curiosity. Shiny isn't fully implemented right now. All it really does is it'll apply a hue color over the pokemon's picture but that hue doesn't match that true shiny colors.

So here's what Marmeanie (normal vs shiny) looks like in this game:
Screenshot_2025-02-04_23-47-29.png Screenshot_2025-02-04_23-48-17.png

Here's what it looks like in mainline games (via serebii.net)
Screenshot_2025-02-04_23-48-41.png

This is especially noticeable with "shiny" pikachu:
Screenshot_2025-02-04_23-50-48.png

I actually looked at implementing a button that would make your pokemon shiny. But between not knowing where to put it where it won't mess things up and how unfinished shinys are in this game, I decided against it.

But to answer your question directly, I try to make my cheats in a way that gives people a choice. If I modify the shiny chance, there's no way to turn that on or off without possibly messing up the game. The better way is to just let people select to turn a pokemon shiny. But since shiny doesn't really work at the moment, I didn't implement it.

If you have the console available (which, if you have my cheat injector installed, it's available), you just need to set:
playerparty[#].ShinyValue=0
(where # is 0~5 for which pokemon in your party)
To turn it shiny.
 

tacosnap123

Active Member
Mar 3, 2018
689
204
At that point, I might as well just make it so that you're able to change the pokemon's level. I wouldn't have to make a new menu. I wouldn't have to run a check on if the player has the item as not give them a duplicate. And the code I inject won't possibly collide with future games additions that reintroduces rare candies back in.
But people aren't asking for that.. They're looking for an exp boost.
thje question is if you change the level would the stats also change or just the level
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
thje question is if you change the level would the stats also change or just the level
I was planning to, if I'm letting people set the level, run it through:
Code:
        def UpdateLevel(self, level, updateMoves=True, force=False, intellect=True):
            if (level + self.GetOffset() > self.Level or force):
                self.Level = min(100, max(1, level + self.GetOffset()))
                if (updateMoves):
                    self.Moves = GetMovesForLevel(self)
            if (intellect):
                self.Intelligence = self.Level >= 15
            self.Experience = self.CalculateAllExperienceNeededForLevel(self.Level)
            self.RecalculateStats()
Which, as you can see at the bottom, recalculates the stats().

The bigger question for me is, updating exp or updating stats? Because last I looked at the GUI code, it only gives me enough room for one of the two unless I want to risk messing up the GUI.
 

DumDum69420

New Member
Jan 24, 2025
6
0
So, funny story. I actually looked into it for personal curiosity. Shiny isn't fully implemented right now. All it really does is it'll apply a hue color over the pokemon's picture but that hue doesn't match that true shiny colors.

So here's what Marmeanie (normal vs shiny) looks like in this game:
View attachment 4516104 View attachment 4516105

Here's what it looks like in mainline games (via serebii.net)
View attachment 4516108

This is especially noticeable with "shiny" pikachu:
View attachment 4516113

I actually looked at implementing a button that would make your pokemon shiny. But between not knowing where to put it where it won't mess things up and how unfinished shinys are in this game, I decided against it.

But to answer your question directly, I try to make my cheats in a way that gives people a choice. If I modify the shiny chance, there's no way to turn that on or off without possibly messing up the game. The better way is to just let people select to turn a pokemon shiny. But since shiny doesn't really work at the moment, I didn't implement it.

If you have the console available (which, if you have my cheat injector installed, it's available), you just need to set:
playerparty[#].ShinyValue=0
(where # is 0~5 for which pokemon in your party)
To turn it shiny.
Oh i get it, i also heard you can get different shiny forms of a pokemon dont know how that works though. and when you mean change the shiny value you mean the random numbers like 1.3456789 smth and change it to 0? Edit: ok nvm it worked thank you
 
Last edited:

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
Oh i get it, i also heard you can get different shiny forms of a pokemon dont know how that works though.
I'm not sure that's true. Scanning through the image files, I don't see a pokemon that has a special form for being shiny.

and when you mean change the shiny value you mean the random numbers like 1.3456789 smth and change it to 0?
Yeah. This game could have selected any value to represent shiny. 1.2345, 1, 0.22222, etc. But they specifically chose 0.
 

Noir12

New Member
Jan 5, 2022
1
0
I'm sorry can someone teach me how to install the cheat in android joiplay, sorry I'm new to this thing
 

DumDum69420

New Member
Jan 24, 2025
6
0
hey i am sorry to ask you this but i cant find it in google, how do i add an item in my inventory whenever i am trying to add something its adding a "in the start and end like if i try to add this item celebis wing which value is 257 its its being like "257" and its showing an error in inventory
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
hey i am sorry to ask you this but i cant find it in google, how do i add an item in my inventory whenever i am trying to add something its adding a "in the start and end like if i try to add this item celebis wing which value is 257 its its being like "257" and its showing an error in inventory
You mean via this cheat? That's not a feature that I've written.
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
No not via the cheat through the console, you did help me with the shiny before so i thought you could help this time...i cant seem to find it in google
You won't find it via google. This game isn't popular enough to have a ton people dive into its code to document it for the google web crawler to scrape it. It'd be like searching on google to ask where you left your keys in your house last night. You shouldn't expect an answer. But, if you do get an answer, you should be very worried about what google is doing.

But answer your question, I don't know off the top of my head to get an item into your inventory. I haven't looked into it. Sorry. What I can tell you is that a lot of the entities in this game (pokemon, player, probably items) are not stored as number values, but and instance of some sort of object. Like to set a move on a pokemon, I had to call a class constructor to set and instance into the pokemon's move slot, not just set the id of that move. I suspect you'll need to do something similar with items. Which would explain why it thinks it's an invalid item. The game is expecting a whole data structure and it just got a number.
 

DumDum69420

New Member
Jan 24, 2025
6
0
You won't find it via google. This game isn't popular enough to have a ton people dive into its code to document it for the google web crawler to scrape it. It'd be like searching on google to ask where you left your keys in your house last night. You shouldn't expect an answer. But, if you do get an answer, you should be very worried about what google is doing.

But answer your question, I don't know off the top of my head to get an item into your inventory. I haven't looked into it. Sorry. What I can tell you is that a lot of the entities in this game (pokemon, player, probably items) are not stored as number values, but and instance of some sort of object. Like to set a move on a pokemon, I had to call a class constructor to set and instance into the pokemon's move slot, not just set the id of that move. I suspect you'll need to do something similar with items. Which would explain why it thinks it's an invalid item. The game is expecting a whole data structure and it just got a number.
ok so i suppose to get a item a number of times i need to atleast have one in the inventory because i can just change the value in whatever but i cant add new items. alright thx for helping even though its not releated to the injector.
 

JuanathanTf2

New Member
Feb 11, 2025
1
0
Hey I'm struggling here. I've added the bat file to the game folder and installed it on both my old copy and a fresh copy and the cheats never show. The heal party works just fine but im not sure if theres like a setting im missing or a menu is supposed to pop up but it isn't.
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
Hey I'm struggling here. I've added the bat file to the game folder and installed it on both my old copy and a fresh copy and the cheats never show. The heal party works just fine but im not sure if theres like a setting im missing or a menu is supposed to pop up but it isn't.
The cheats are embedded into the GUI of the game. Please refer to the screenshots at the OP for where/what they are.
 

Gobita

New Member
Feb 14, 2025
2
0
Hey I wanted to know why does the font changes when I install this injector and is there any way to change the font to default?
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
Hey I wanted to know why does the font changes when I install this injector and is there any way to change the font to default?
Because text and text button have different ways to style them, and not all of them are interchangeable and/or have an equivalent on the other side. This cheat injector works by turning non-interactable elements into interactabled ones. i.e. text to textbutton.

As for any way, it would take a lot of work. I try to keep the styles the same as much as I can. If you figure out a way that doesn't require a complete re-write of the original code, please tell me.
 

Gobita

New Member
Feb 14, 2025
2
0
Because text and text button have different ways to style them, and not all of them are interchangeable and/or have an equivalent on the other side. This cheat injector works by turning non-interactable elements into interactabled ones. i.e. text to textbutton.

As for any way, it would take a lot of work. I try to keep the styles the same as much as I can. If you figure out a way that doesn't require a complete re-write of the original code, please tell me.
Unfortunately i have no knowledge about stuff like this, i do have request if its not too much work is it possible to get a alternate version of this injector where i only get the time loop thing(pressing the button on the top right to go to morning again) and maybe heal party. in that way the text isnt being changed to textbutton?
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
Unfortunately i have no knowledge about stuff like this, i do have request if its not too much work is it possible to get a alternate version of this injector where i only get the time loop thing(pressing the button on the top right to go to morning again) and maybe heal party. in that way the text isnt being changed to textbutton?
Making it is easy. Maintaining it is hard. This literally means that if the game ever changes something that requires a rewrite, I'd have to rewrite and compile 2 versions and hope I didn't fat-finger something when updating both or writing a whole process/procedure/framework to maintain 2 versions just for one person. Not to mention, if any new features that ever come up, I'd have to consider whether or not it goes into this individualized version. Like, sure, you say you only want the heal party and the time reset. But what about trainer exp which is a slider bar? What about EXP chaining? If I implement shiny pokemon, that shouldn't affect the GUI. What about that? So something like this will literally double (or more) my workload for a single person. So, sorry, but no. Especially since this isn't the only cheat injector I write/maintain and especially if it's just for one person.

If you want to do it yourself, however, I've open sourced the cheat injector for a reason. Feel free to fork it and make your own version.
 

sleepingkirby

Active Member
Aug 8, 2017
987
1,521
where is the .sh version? im playing on steamdeck.
This is the only cheat injector I've made that doesn't have a linux version due to the fact that the game didn't mark itself as linuxable/include a .sh to start the game when I first started this cheat injector.
I can make a linux version, but it'd take a bit. But also, anyone else want a linux version? It's hard to justify doing all that work just for one person.
 
  • Like
Reactions: vMarik