You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of things like Surtling Cores for mages being a hardcoded requirement, make these things something the user can specify via the config using the <Prefab1>:<quantity>[[,<PreFab2>:<quantity>], ...] template.
Is the feature related to a problem?
Supporting the diverse difficulty requirements of all players.
Approach
Refactor the following:
ArmorLeatherScrapsRequiredConfig=plugin.Config.Bind("SkeletonWand (Server Synced)","ArmoredSkeletonLeatherScrapsRequired",5,newConfigDescription("The amount of LeatherScraps required to craft a skeleton in leather armor.",null,newConfigurationManagerAttributes{IsAdminOnly=true}));
...SurtlingCoresRequiredConfig=plugin.Config.Bind("SkeletonWand (Server Synced)","SkeletonMageSurtlingCoresRequired",1,newConfigDescription("The amount of surtling cores required to craft a skeleton mage.",null,newConfigurationManagerAttributes{IsAdminOnly=true}));
to be more like:
ArmorLeatherRequirementsConfig=plugin.Config.Bind("SkeletonWand (Server Synced)","ArmoredSkeletonLeatherRequirements","LeatherScraps:5",newConfigDescription("The items needed to craft an armored skeleton.",null,newConfigurationManagerAttributes{IsAdminOnly=true}));
...MageRequirementsConfig=plugin.Config.Bind("SkeletonWand (Server Synced)","SkeletonMageRequirements","SurtlingCore:1",newConfigDescription("The items needed to craft a skeleton mage.",null,newConfigurationManagerAttributes{IsAdminOnly=true}));
The text was updated successfully, but these errors were encountered:
Description
Instead of things like Surtling Cores for mages being a hardcoded requirement, make these things something the user can specify via the config using the
<Prefab1>:<quantity>[[,<PreFab2>:<quantity>], ...]
template.Is the feature related to a problem?
Supporting the diverse difficulty requirements of all players.
Approach
Refactor the following:
to be more like:
The text was updated successfully, but these errors were encountered: