Skip to content

Releases: IcePlugins/ExtraCommandLimiter

Added blocking of certain commands *outside* of a zone

10 Mar 03:54
Compare
Choose a tag to compare

Update notes: yeah

Do not forget to add the libraries. 0Harmony.dll goes into your RocketGay library directory. (Rocket/Libraries)

A quick run-down of the plugin:

Allows you to restrict command usage to outside of safezones or deadzones, commands restricted are configurable.

Configuration:

<?xml version="1.0" encoding="utf-8"?>
<ExtraCommandLimiterConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <!-- Commands blocked in safezone -->
  <safezoneBlockedCommands>
    <!-- Single command, case is not sensitive. -->
    <string>vault</string>
  </safezoneBlockedCommands>
  <!-- Commands blocked in deadzone -->
  <deadzoneBlockedCommands>
    <string>spaghetti</string>
  </deadzoneBlockedCommands>
  <!-- Only allow these commands inside of a safezone -->
  <safezoneOnlyCommands>
    <string>vault</string>
  </safezoneOnlyCommands>
  <!-- Only allow these commands inside of a deadzone -->
  <deadzoneOnlyCommands>
    <string>meme</string>
  </deadzoneOnlyCommands>
   <!-- Allow admins to bypass the check -->
  <allowAdminOverride>true</allowAdminOverride>
   <!-- Any player that has this permission will be ignored -->
  <ignorePlayerPermission>ExtraCommandLimiter.ignore</ignorePlayerPermission>
</ExtraCommandLimiterConfiguration>

Initial Release

10 Mar 02:51
Compare
Choose a tag to compare

Do not forget to add the libraries. 0Harmony.dll goes into your RocketGay library directory. (Rocket/Libraries)

Initial release. A quick run-down of the plugin:

Allows you to restrict command usage to outside of safezones or deadzones, commands restricted are configurable.

Configuration:

<?xml version="1.0" encoding="utf-8"?>
<ExtraCommandLimiterConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <!-- Commands blocked in safezone -->
  <safezoneBlockedCommands>
    <!-- Single command, case is not sensitive. -->
    <string>vault</string>
  </safezoneBlockedCommands>
  <!-- Commands blocked in deadzone -->
  <deadzoneBlockedCommands>
    <string>spaghetti</string>
  </deadzoneBlockedCommands>
   <!-- Allow admins to bypass the check -->
  <allowAdminOverride>true</allowAdminOverride>
   <!-- Any player that has this permission will be ignored -->
  <ignorePlayerPermission>ExtraCommandLimiter.ignore</ignorePlayerPermission>
</ExtraCommandLimiterConfiguration>