Sure, all the shiny overworlds were made before Darkus Shadow shared them on deviantart and I haven't updated them since. But it will take some time, and for overworlds that don't have shiny, I will recolor them myself until Darkus Shadow makes his own shiny on deviantart.
This is a known bug in the latest version you can read my comment on that in my older post.
Oh okay, so theoretically speaking if I went in to edit it right now, would every instance of has_active_ability? need to change to HasActiveAbility? or is the rest code the only issue in the file?
Oh okay, so theoretically speaking if I went in to edit it right now, would every instance of has_active_ability? need to change to HasActiveAbility? or is the rest code the only issue in the file?
Hi, I get the following errors when trying to compile the PBS files to my project. I am using Gen 8 Pack version from /OPTIONAL/ and had already compiled the Gen 8 extension (v21.1 version from Appletun) in accordance with its installation instructions, as well as the first compile from this extension's instructions. From what I can tell, there's an error in Basculegion's metrics, but I'm new to Essentials and to XP in general (MZ's file structure looks a fair bit different from this program's) so IDK how to fix it myself. If someone could tell me what to do to the .txt I'd much appreciate it.
EDIT 1: I figured out that issue; I neglected to copy the main PBS folder from the Gen 9 extension. I now get this issue on compile.
EDIT 2: Okay, figured that out. Turns out you don't take plugins out the folders they come in. Though now there's an issue with the Gen 8 pack scripts... I'll have to figure that out,
Your errorlog clearly says you have both 1.0.2 and 1.0.3. If you only have one of them in the plugins folder, there's clearly some error in the compiling of the plugins, which may also be the cause of your error. Try compiling the plugins again until, at least, only one version of the hotfixes appears.
Your errorlog clearly says you have both 1.0.2 and 1.0.3. If you only have one of them in the plugins folder, there's clearly some error in the compiling of the plugins, which may also be the cause of your error. Try compiling the plugins again until, at least, only one version of the hotfixes appears.
I guess you may not have completely deleted one of the versions.
You can try searching for 'alias palda_pbTryUseMove pbTryUseMove', which I think may have appeared twice in different versions of your scripts.
I guess you may not have completely deleted one of the versions.
You can try searching for 'alias palda_pbTryUseMove pbTryUseMove', which I think may have appeared twice in different versions of your scripts.
Yes, its important to remove all previous script files before installing updates. Many times, plugins may have to rename or reorganize files, so just dragging & dropping the updated files to replace the old ones wont work, since they may no longer have the same file names.
Fix with
# Added Mind's Eye
alias paldea_effectiveness_of_type_against_single_battler_type effectiveness_of_type_against_single_battler_type
def effectiveness_of_type_against_single_battler_type(type, defend_type, user = nil)
ret = paldea_effectiveness_of_type_against_single_battler_type(type, defend_type, user)
if Effectiveness.ineffective_type?(type, defend_type)
if user&.has_active_ability?(:MINDSEYE) && defend_type == :GHOST
ret = Effectiveness::NORMAL_EFFECTIVE_MULTIPLIER
end
end
return ret
end
Fix with
# Added Mind's Eye
alias paldea_effectiveness_of_type_against_single_battler_type effectiveness_of_type_against_single_battler_type
def effectiveness_of_type_against_single_battler_type(type, defend_type, user = nil)
ret = paldea_effectiveness_of_type_against_single_battler_type(type, defend_type, user)
if Effectiveness.ineffective_type?(type, defend_type)
if user&.has_active_ability?(:MINDSEYE) && defend_type == :GHOST
ret = Effectiveness::NORMAL_EFFECTIVE_MULTIPLIER
end
end
return ret
end
ahh both standalone and gen 9. What's the order to add in the PBS files? I'll try doing the PBS additions on a fresh copy of 21.1 with the hotfixes and see if it can sort itself out. I'll edit with results.
This section is for the discussion of the tutorials and resources on Eevee Expo. To find tutorials and resources, check out the Tutorial and Resource Manager for optimal navigation.