Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games. Don't forget to come back September 21st to vote for your favorites!
Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
NOTE: This script will ONLY be compatible with Essentials v20. You can download a v19.1 version (v4.0.2 of the script) from the main post.
Also, please re-read the docs, as several instructions and method names have changed.
Follow the wiki, it's the same way that you would define graphics for any other NPC trainer: https://essentialsdocs.fandom.com/wiki/Defining_a_trainer#Trainer_type_graphics
Please read the documentation at the top of my script again. You cannot call "pbSwitchCharacter" and "pbTrainerName" consecutively. You have to combine them, like so:
pbSwitchCharacter(1, "NIKOLA")
and
pbSwitchCharacter(2, "PORYGON")
You can add it by going to script section 001_VoltseonMenu_Config and adding "MenuEntrySwitch" inside the MENU_ENTRIES list, then going to 005_VoltseonMenu_Entries and adding this code at the bottom:
#-------------------------------------------------------------------------------
# Entry for...
Yes, for the PC storage, you can simply comment out any lines in the script that contain PokemonStorage or PCItemStorage and start a new save.
The Pokedex info is a bit trickier because that is stored within the general $Trainer object, so it can't just be commented out because you'd be sharing...
It occurs to me that this set of instructions may have been worded incorrectly:
Did you completely remove the "pbTrainerName" script from your starting event? You actually need it to set up your character even if you're not starting with PlayerA as your first playable character. If you don't...
I haven't been able to reproduce this. Can you describe exactly which lines in my script you changed and with what? Also, do you have any code related to my script in your starting event, like anything similar to the code that Dogz mentioned in his first post? Can you outline exactly what...
NOTE: This version (and all future versions) will ONLY be compatible with Essentials v19.1. You can download a v18 version (v3.0) from the main post. If you're upgrading from a previous version of the plugin, make sure to look at the Script Installation guide again to reinstall some of the...
You can download them from the Gen 8 Project here: https://eeveeexpo.com/resources/670/. You don't need to install the whole plugin if you don't want it, just the "Followers" and "Followers shiny" folders from "Graphics/Characters/" will do.
I found a few bugs that seem to break having regular dependent events alongside following Pokemon. If I add a normal dependent event first, then try to use "pbPokemonFollow(X)" in a script command, both sprites disappear - I can still press A to toggle following and see the animation play, but...