My custom flags aren't working!
If your custom item's flags (e.g., InfiniteAmmo, LifeSteal) are not functioning as expected, consider the following:
Correctly define the
CustomFlags: In your.ymlfile, make sure theCustomFlagsare listed correctly. You can combine multiple flags using a comma-separated list (e.g.,CustomFlags: InfiniteAmmo, LifeSteal).Configure the
FlagSettings: Some flags require additional configuration in theFlagSettingssection. For example, theLifeStealflag needsLifeStealSettingsto define the amount of health stolen. If you don't provide these settings, the flag may not work correctly.Check for dependencies: Some flags, like
CustomSound, require additional plugins likeAudioPlayerApiandNVorbisto be installed on your server. If these dependencies are missing, the flag will not work.
Was this helpful?