- Aug 8, 2017
- 822
- 1,286
That tells me near nothing. Again, I need EXACTLY and STEP-BY-STEP, what you did.I put the files from the githhub straight into the game file. Then I couldn't do the second step cause I'm using windows to play it
That tells me near nothing. Again, I need EXACTLY and STEP-BY-STEP, what you did.I put the files from the githhub straight into the game file. Then I couldn't do the second step cause I'm using windows to play it
Download from the pixeldrain link. You are assuming that github, the SOURCE CODE REPOSITORY SITE, CONTAINING THE ENTIRE SOURCE CODE FOR MAKING THIS .BAT FILE, is needed and needs to be downloaded and ran from within the source code. You are also somehow ignoring the ERRORS THAT THE SCRIPT IS GENERATING (from your .webm movie):Im having the same problem too
What's the error?Does this need an update or am I doing something wrong? I used the script on v8.15 and it keeps giving me errors when Looking at pokemon stats causes error.
Just tested it against 8.15b. Had no problems.Does this need an update or am I doing something wrong? I used the script on v8.15 and it keeps giving me errors when Looking at pokemon stats causes error.
If you run into that, this is why:```
I'm sorry, but an uncaught exception occurred.
<snip>
File "game/screens.rpy", line 1842, in <module>
action SetDict(pkmn.Stats, Stats.SpecialAttack, pkmn.GetStat(Stats.SpecialAttack) + 1 )
File "game/classes/pokemon.rpy", line 883, in GetStat
if (WeatherIs("sunny") and self.HasAbility("Solar Power", triggerAbilities)):
File "game/battlescripts/battlehelpers.rpy", line 128, in WeatherIs
return (CurrentWeather != None and CurrentWeather[0] == weather) and (ignoreairlock or not AbilityOnField("Cloud Nine"))
NameError: name 'CurrentWeather' is not defined
Bro i need help when i go to my pokemon this error occurs i cant change my pokemones value
Basically, if that's your error and you're just starting the game anew or are pretty early on in the game, play far enough where you can free roam (or when weather exists) OR don't examine a pokemon with abilities whose stats may depend on the weather.Oh, that's interesting. It may be my fault, but it really shouldn't be.
Short version: I would report to the game dev that the variable "CurrentWeather" is not defined globally or, at least in the scope of "game/battlescripts/battlehelpers.rpy" in line 128. Variables like that should be initialized globally as soon as possible.
Long version: My cheat inject looks up the special attack of a pokemon using the game's own GetStat() functon. Specifically to get the special attack of a pokemon. The special attack of a pokemon, depends on whether or not the pokemon has the ability "solar power" and what weather it is currently. You've entire entered a part in the game that doesn't have weather or are too early in the game where the variable for current weather is not defined at all. Meaning that, most likely, the dev wasn't expecting for people to call this funcion at this point, place or time in the game or this was a deliberate choice to not have the variable initialized. I might be able to engineer a workaround for this, but a workarounds, in general are very problem specific and, without knowing the lifespan of the program, can cause additional problems in the future. The best solution, and the standard practice within programming going back to C (not even C++. Just C), is to initialize all variables, especially global ones (even though global variables are not considered good practice but acceptable under certain conditions.) as soon as possible to avoid this very thing.
Anyways, I would ask the dev to fix this first, if possible. Because, chances are, other people will eventually run into this with or with the cheat, sooner or later, as the game continues to get new content.
Okay. That means the errors only happened cause I was early in the game huh? It is fine as now thank you.Just tested it against 8.15b. Had no problems.
There is an error that someone else ran across:
If you run into that, this is why:
Basically, if that's your error and you're just starting the game anew or are pretty early on in the game, play far enough where you can free roam (or when weather exists) OR don't examine a pokemon with abilities whose stats may depend on the weather.
Any other error messages, please copy and paste them here.
Yep. That's it exactly. Can't use the weather to determine the pokemon's sp.atk if the weather doesn't yet exist.Okay. That means the errors only happened cause I was early in the game huh?
Also for social, can you increase over 10 or is it only limited to 10.Yep. That's it exactly. Can't use the weather to determine the pokemon's sp.atk if the weather doesn't yet exist.
For social, I only modified the exp bar into a slider bar. I didn't modify the levels nor the level caps. So whatever the caps on those are in game are the caps.Also for social, can you increase over 10 or is it only limited to 10.
I see. I already silde to the max which was ten but it was going over the numbers. Even if it shows 30, I would only able to slide to 10. Thanks for the reply.For social, I only modified the exp bar into a slider bar. I didn't modify the levels nor the level caps. So whatever the caps on those are in game are the caps.
That usually means you're running it from the wrong location. Are you running it from the games directory of the game?i'm having trouble the mod but i've also never done Bat. files but my screen keeps saying cannot locate python.exe unable to continue. View attachment 4037972
yep ive tried running it in the main the game folder the renpy folder and the lib folder keeps saying the same thingThat usually means you're running it from the wrong location. Are you running it from the games directory of the game?
The game comes with its own python in "lib\py3-windows-x86_64\python.exe". That's what the .bat file is looking for. Can you make sure that path AND FILE exists?yep ive tried running it in the main the game folder the renpy folder and the lib folder keeps saying the same thing
yep both exist tried running the cheat injector while python.exe is running as well an got nothingThe game comes with its own python in "lib\py3-windows-x86_64\python.exe". That's what the .bat file is looking for. Can you make sure that path AND FILE exists?
Just want to make this clear, running the injector while python.exe is running does nothing. You're essentially keeping a second car running while trying to drive the first car.yep both exist tried running the cheat injector while python.exe is running as well an got nothing
if not exist "%pythondir%python.exe" (
echo ! Error: Cannot locate python.exe, unable to continue.
echo Are you sure we're in the game's root directory?
echo.
pause>nul|set/p=. Press any key to exit...
exit
)
Uhm... that says you're trying to run the .bat from a temp directory. Is that a winrar temp directory? Why are you running the .bat file from a temporary winrar directory? Are you trying to run the game from within the temp rar directory?did the same thing and with the new one i got this View attachment 4042425