KitsuneKouta
狐 康太
- 442
- Posts
- 15
- Years
- Seen Nov 20, 2017
That's strange. I just tested it out again and I didn't have that problem. Find this portion of code (line 629):One minor error in the code I just found out from having fun with the slots, is that when you get a pikachu in the reel, you get a lightning bolt icon. That's fine, but when you exit the slot game, it doesn't remove the picture. It stays there even when you change maps. I'm sure I could remove it with one line of code, but I suck with coding.
Code:
if (Input.trigger?(Input::B))&&!(@GameActive)
if Kernel.pbConfirmMessage("Quit the game?")
$PokemonGlobal.coins=$PokemonGlobal.coins+@usedcoins
$scene=Scene_Map.new
end
end
Code:
if (Input.trigger?(Input::B))&&!(@GameActive)
if Kernel.pbConfirmMessage("Quit the game?")
$PokemonGlobal.coins=$PokemonGlobal.coins+@usedcoins
[COLOR=Red]@bolts=0
boltGraphics[/COLOR]
$scene=Scene_Map.new
end
end