Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Yes. Removing an item goes on its own script wherever in the event you want it to be removed.
If you were checking if an item was in the players bag you would put that script in a conditional branch.
Here are a couple examples from my game. Both check the players bag for a key item and then...
What you could do easily without coding is change the enemy trainers to look retro, even have their in-battle text changed to whatever retro font you like. You could also change the players character with an event (check the event in the intro). And you could give pokemon regional forms with a...
I don't believe this item is anywhere in the Pokémon Essentials PBS so I assume you made it yourself?
Are you putting $bag.remove(:OAKSPARCEL) in "script" inside the event? (make sure it doesn't have a comma)
And the player has 1 Oak's Parcel in their bag before they click on that event...
Download
https://drive.google.com/file/d/1JnOeeMPdRd2OFb1rg1BsRonllmhipq_Q/view?usp=sharing
What makes it a Souls-like?
A Bonfire system for leveling & traveling.
An emphasis on dungeon crawling and old-school RPG mechanics.
Cryptic story with an emphasis on prose. (That borders on parody at...
Yea I understand the sentiment.
In the current game I'm working on I lowered the level cap to 30. The game is shorter than your average pokemon game with only 4 major bosses. The only section of the game that is "at level cap" is the final section after the 3rd major boss fight. But prior to...
I found this code that let's me change a pokemon's ability. The only problem is that when the player presses B it crashes the game. (other than that the code works great!
------------------------------------------------------------------------------------------------
def pbChangeChoose...
>Mid battle dialogue
This would be quit difficult. The code for battle proceedings are pretty complex. An easier half-solution would be to split battles in half and put dialogue between the battles.
>regional variants
This as easy as creating a custom pokemon, just copy the format of other...
1. I believe this has what you're looking for. https://www.mediafire.com/file/4hbt3wiuhoc2ugy/Pokemon+Essentials+GS+v1.1.rar
Creating a new tileset is as simple as extracting it, importing it, and adjusting certain values in the databass (such as collision and bridges)
2. Making fully originally...
Thanks for responding!
I just came back to this post to update it with the fix I found. But it looks like you beat me too it! Thanks for helping everyone that found this thread.
The only way I know to edit the entire players party is to first check if the player has 1,2,3,4,5 or 6 ($player.pokemon_count = 2) pokemon in their party and then create separate branches that revive each pokemon slot.
pkmn = $player.party[0]
pkmn.heal
Unfortunately there isn't a default way...
My idea is to have a trainer that uses Rain Dance and/or Perish Song (Not the Pokémon the trainer uses. But the trainer as a separate extra action).
I've done a bit of coding but I'm really not sure how to get started on this. Because activating an ability requires (as far as I can tell) a lot...