It is not easily doable in v4.0.2 (Essentials v19.1) due to limitations with how you define characters in the metadata. However, that has changed in the latest version of Essentials (v20.1), so the cap has been removed in the latest version of this script (v4.1.0). So if you want to increase the...
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...