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.
Eevee Expo's webhost has been having technical issues since Nov. 20th and you might be unable to connect to our site. Staff are also facing issues connecting, so please send a DM to Cat on-site or through Discord directly for faster service!
Those edit the damage output, but it won't change the effectiveness (you won't see "not very effective" or "super effective"). For that, you'll need to add something to the pbCalcTypeMod function.
Use CTRL + SHIFT + F to search for "def pbCalcTypeMod(moveType, user, target)" and open the one in...
BEFORE UPDATING ANY FILES: If you have made any edits to 001_Script for settings or indication definitions, make sure to make a backup of the file before updating the plugin. If you copy over files to update, it will overwrite your changes.
Change Log
IMPORTANT: I've split out Settings from...
BEFORE UPDATING ANY FILES: If you have made any edits to 001_Script for settings or indication definitions, make sure to make a backup of the file before updating the plugin. If you copy over files to update, it will overwrite your changes.
Change Log
🛠️Reworked how you add x and y adjustments...
Aha I think I know why. I'm using a command that is in vanilla essentials to grab the comment, and I never explored it more than a few cases. Interesting that that is how it works.
I'm probably going to redo how you can define x, y values then. I already have it in mind and should be a quick...
I guess I can just keep adding nil checks.
Can you open the 001_Script file in the plugin, and edit lines 104 and 105...
@x_adj += params[1][0]
@y_adj += params[1][1]
to look like this...
@x_adj += params[1][0] if params[1] && params[1][0] &&...
Hmm that looks correct. I never saw this crash when testing though, but I did see a few others that I fixed.
Did you change the settings for the plugin at all? Specifically the x and y adjustment ones?
The problem is just that the gen 9 pack moves file exists. The current code can't handle multiple moves files, as that was added to v21 and that's why the compiler changed.
So again, updating movesx_contest isn't going to change anything. The function I mentioned needs updating.
Gen 9 moves not being in the file should have no effect. The error is saying there are the wrong number of arguments being passed. It looks like @Caruban missed a spot when making changes. Their version is still using the def compile_moves(path = "PBS/moves.txt") definition instead of v21's def...
Having the definition be a Comment is an easy way for something within an event "run" without running the event. The original suggestion was having something in the name be the definition, but then it limits it to one indicator for the entire event. Comments per page add a lot more flexibility.