Derxwna Kapsyla
Derxwna "The Badman" Kapsyla
- 437
- Posts
- 13
- Years
- Everywhere, yet Nowhere
- Seen Jul 23, 2024
So, for my game, I want to make my Safari Zones marginally different from how they are traditionally, but I'm not sure what I would need to change to make it possible, especially in the case of the second one.
For the first one, a Safari Zone that doesn't have a step counter, but still gives you Safari Balls - this works exactly like how the Johto Safari Zone worked in Heart Gold/Soul Silver. I imagine I would have it flip a switch when the Safari Game starts, and in the code have something like
But I'm not sure where in the code that would go.
The second one is the inverse - you're allowed to use any Pokeball you want (You still aren't allowed to bring Pokemon in, but you could allow something like that if you wanted), but you have the step counter to abide by. So basically after you pay, your step counter is active, and inside the Safari Zone you can use your regular Ultra Balls to capture a Girafarig, or whatever appears. For something like this, I have no idea how it would be handled at all.
I would really appreciate the help if it can be provided!
For the first one, a Safari Zone that doesn't have a step counter, but still gives you Safari Balls - this works exactly like how the Johto Safari Zone worked in Heart Gold/Soul Silver. I imagine I would have it flip a switch when the Safari Game starts, and in the code have something like
Code:
if $game_switches[300]
SAFARISTEPS=$null
else
SAFARISTEPS=600
The second one is the inverse - you're allowed to use any Pokeball you want (You still aren't allowed to bring Pokemon in, but you could allow something like that if you wanted), but you have the step counter to abide by. So basically after you pay, your step counter is active, and inside the Safari Zone you can use your regular Ultra Balls to capture a Girafarig, or whatever appears. For something like this, I have no idea how it would be handled at all.
I would really appreciate the help if it can be provided!