- 1,541
- Posts
- 11
- Years
- Seen today
Here is where I put the code.
Yeah, you pasted it wrong. Don't you see the cut off "pbDisplayPaused" above where you pasted the code? It's giving you a syntax error because you have an open parentheses expecting there to be text to display, but its just empty and never has an ending point.
Pay close attention to the instructions when installing.
Step 6 of my installation guide:
What it looks like you did was that you didn't replace that line of code like I instructed; you only replaced half of the line (from "Oh! A wild {1} appeared!" and onwards). The entire line needs to be removed.6) In Battle_StartAndEnd, find line "pbDisplayPaused(_INTL("Oh! A wild {1} appeared!",foeParty[0].name))":
Replace it with this:Spoiler:#=======================================================================
# Dynamax - Alters encounter text (Max Raids)
#=======================================================================
if defined?(MAXRAID_SWITCH) && $game_switches[MAXRAID_SWITCH]
text = "Dynamaxed"
text = "Gigantamax" if foeParty[0].gmaxFactor?
text = "Eternamax" if isConst?(foeParty[0].species,PBSpecies,:ETERNATUS)
pbDisplayPaused(_INTL("Oh! A {1} {2} lurks in the den!",text,foeParty[0].name))
else
pbDisplayPaused(_INTL("Oh! A wild {1} appeared!",foeParty[0].name))
end
#=======================================================================
Last edited: