KitsuneKouta
狐 康太
- 442
- Posts
- 15
- Years
- Seen Nov 20, 2017
For the second question, I answered that before. Go to Pokebattle_battle (line 2019 I think) and findI actually have two questions >.<
1)Why won't "\G" work in Kernel.pbConfirmMessage?
I wrote this line in a script, "Kernel.pbConfirmMessage(_INTL("\GWould you like me to make your Pokemon shiny?"))
And in the game, it shows:
"GWould you like me to make your Pokemon shiny?"
2) How can I disable EXP Gain for one battle? Is it possible?
Code:
exp=newexp-thispoke.exp;
Code:
if $game_switches[500]
exp=0
else
exp=newexp-thispoke.exp;
end