[INACTIVE][CHAT] ScheduledAnnouncer 1.8.1 - Auto Broadcasts by a Scheduler [1.1-R4]

Discussion in 'Inactive/Unsupported Plugins' started by MiHo, Apr 7, 2011.

  1. Offline

    MiHo

    ScheduledAnnouncer [Version 1.8.1]

    Scheduled Announcer is a very simple tool, which only does what's its name told us. It automatically sends a broadcast out of a list controlled by a schedule.

    Features:

    • Sends Scheduled Broadcast to all Players
    • Easy to configure by 'config.yml' or ingame with the '/announce' command.
    • Supports colors (&1, &2... &9, &a, &b... &f) and newlines with &n.
    • Supports executing commands inside Announcements. (Like "Now it will get day!&n/time day")
    • Supports newest Bukkit permissions system!

    How To Setup (open)

    1. Download the latest Release
    2. Drag&Drop the JAR file to your 'plugin/' directory
    3. Restart or reload your server

    There's a video tutorial on how to setup and configure that plugin on YouTube too. Thanks to BrandonHopkins!

    Configuration (open)
    Code:
    #
    #
    # ScheduledAnnouncer Configuration File
    # =====================================
    #
    # Don't use tabs in *.yml file!
    #
    
    announcement:
        # Use this flag to temporary disable the announcements.
        # enabled: false, means that there wouldn't be any announcements.
        enabled: true
    
        # Set this to true will announce in random order.
        # 'false' will announce in sequential (one after another) order.
        random: false
    
        # Defines the prefix for the announcement. Use & + hex char 
        # for color codes.
        prefix: '&c[Announcement] '
    
        # The time of one interval in seconds.
        interval: 100
    
        # List of messages to announce. You could use color codes by
        # using & + hex chars too. &n will produce a new line.
        messages:
        - 'This is the first default announcement!'
        - 'Use /announce help to get info how to config this plugin.'
        - 'You can also configure this plugin with its config.yml too!'

    Commands (open)
    Code:
    /announce add <message>
    Needed Permission: announcer.add
    Adds a new announcement with the Message: <message>
    Code:
    /announce broadcast [<index>]
    Needed Permissions: announcer.broadcast
    Broadcast an existing announcement NOW.
    Code:
    /announce delete <index>
    Needed Permissions: announcer.delete
    Removes the announcement with the passed index.
    Code:
    /announce enable [true|false]
    Needed Permissions: announcer.moderate
    Enables or disables the announcer.
    Code:
    /announce interval <seconds>
    Needed Permissions: announcer.moderate
    Sets the seconds between the announcements.
    Calling it without an interval to set will return the current interval.
    Code:
    /announce list
    Needed Permissions: announcer.moderate
    Lists all announcements.
    Code:
    /announce random [true|false]
    Needed Permissions: announcer.moderate
    Enables or disables the random announcing mode.
    Only calling /announce random without true or false, will return current mode.
    Code:
    /announce reload
    Needed Permissions: announcer.admin
    Reloads the config.yml.

    Changelog (Version 1.8.1):

    • Fixed problem with announcing randomly.

    Changelog (Version 1.8):

    • Made Prefix fully customizable. (Changed the configuration a bit...)
    • Added '/announce prefix <text>' command.
    • Default configuration file is now created if there isn't any. (No more ZIP-downloads necessary, simply drag&drop the JAR-file)
    Older Changelogs (open)
    Version 1.7.1:
    • Fix problems with executing commands
    • Works with 1.1-R5-SNAPSHOT
    Version 1.7.0:
    • Implemented support for new bukkit permissions system
    • Supports /announce now as alias for /announce broadcast
    Version 1.6.3:
    • Fixed 'sendToAll' bug, caused by invalid attaching process to Permissions.
    Version 1.6.2:
    • Fixed 'sendToAll' color codes bug.
    Version 1.6.1:
    • Do not show empty tag brackets. (When setting tag to '' or null)
    Version 1.6:
    • Added pages in /announce list command.
    • Fixed saving after deleting a Announcement.
    Version 1.5:
    • Added multiline support (with &n you could produce a new line inside one Announcement).
    • Added a support for executing Announcements as commands, if they start with a backslash.
    Version 1.4:
    • Added color support (with &1, &2, ... &f in Messages)
    • Added a seperated color setting for tag and message (See Config Spoiler this Thread)
    Version 1.3:
    • Added the feature to only send Announcement with the Permission "announcer.receiver". Need to set the flag: "announcement.sendToAll" in the ScheduledAnnouncer 'config.yml'.
    Version 1.2.2:
    • Changed the example config file, cause of a mistake in it.
    Version 1.2.1:
    • Bugfix for /announce interval bug.
    Version 1.2:
    • Added many new commands to configure it ingame. (/announce reload, /announce enable, /announce broadcast and /announce random)
    • Ability to choose between Random Mode and Sequential Mode.
    • Use different Permissions for different kind of tasks.
    Version 1.1:
    • Enables to change the color of the Broadcast in config.yml
    • Calling '/announce interval' without any paramater now returns the current interval.
    • Changed the name of the JAR to "ScheduledAnnouncer.jar" (Please delete the old one before update!)
    Version 1.0.2:
    • Support for CraftBukkit 670...
    Version 1.0.1:
    • Small bug fix...
    Version 1.0:
    • First Release!
     
  2. is it possible to change the [Announcement] to like [Server] or something user defined?

    EDIT - fail didnt see that option in the config
     
  3. Offline

    Smallie07

    Great plugin but im having problems with the interval. Say i want it to display every 5 minutes i put in 300 seconds. save it reload etc etc. Then, it does it like every 2-3 minutes?? Right now i put it to 600 seconds (10 minutes) reloaded it and saved it directly at 6:50 and the next announcement came at 6:54? Please help.
     
  4. Offline

    MiHo

    There are two problems:
    - First is an implementation problem, which I'll fix in the next version. (Which causes the half time. Use 600 for 5 minutes, will be a workaround)
    - Second problem is, if your CPU is used very hard (for example on saves) the time isn't very exact, cause I use the bukkit timer.
     
  5. Offline

    Chekkaa

    I have a suggestion. Can you include an option in the config to only broadcast messages to certain groups? I wanted to have some basic help stuff show up for new members, but nobody else, because it would get annoying. I gave my "guest" group the announcer.receiver permission, but all the other groups inherited it. Then I tried adding -announcer.receiver to all of my other groups, but they still showed up for everyone (and yes, sendToAll was off).
     
  6. Offline

    MiHo

    Hm... this should work, if you are using the latest version.
    Could you check in your console if there is something like: "[ScheduledAnnouncer] Connected to Permissions."?
     
  7. Offline

    Chekkaa

    I use Groupmanager, if it makes a difference. Also, I reported this a few weeks ago, but I never saw you say it was fixed, so I assumed it was still broken. I'll have to test it again.
     
  8. Offline

    virtualism

    Thanks. This thing is pretty useful.
     
  9. Offline

    MiHo

    Do you see something like "[ScheduledAnnouncer] Connected to GroupManager." in the server log?
     
  10. Offline

    kahlilnc

    This does not work for me. RB 860.
     
  11. Offline

    MiHo

    Works with 860 too.

    Could you give a more detailed information about your problem?
    Do you checked that your config.yml uses whitespaces and no non ANSI chars?
     
  12. Offline

    christley

    it should be possible to write with å,ä and ö since minecraft is swedish.
    located the problem to be only with foreign letters
    Code:
    2011-06-14 03:40:28 [SEVERE] Could not load 'plugins\ScheduledAnnouncer.jar' in folder 'plugins':
    unacceptable character #FFFD special characters are not allowed
    in "<reader>", position 741
        at org.yaml.snakeyaml.reader.StreamReader.checkPrintable(StreamReader.java:68)
        at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:159)
        at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:117)
        at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:106)
        at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:964)
        at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:237)
        at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:183)
        at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:200)
        at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
        at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
        at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:104)
        at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:124)
        at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
        at org.bukkit.util.config.Configuration.load(Configuration.java:82)
        at org.bukkit.plugin.java.JavaPlugin.initialize(JavaPlugin.java:156)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:174)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:194)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:117)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:109)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:232)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:219)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:146)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:283)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
     
  13. Offline

    MiHo

    Configure the lines ingame, and you will be possible to write these.
     
  14. Offline

    MeinerHosen

    Just wanted to stop by and say thanks for the great plugin :)
     
  15. Offline

    ಠ_ಠ

    Multi Colored text? :D
     
  16. Offline

    spiderman555

    When I try to use /announce help I get "An internal error occured while attempting to perform this command" and the error is
    Code:
    2011-06-21 03:51:06 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'announce' in plugin ScheduledAnnouncer v1.6.3
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:128)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:287)
        at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:712)
        at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:678)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:671)
        at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:399)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:309)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: java.lang.NullPointerException
        at at.co.hohl.permissions.PermissionHandler.hasPermission(PermissionHandler.java:76)
        at at.co.hohl.Announcer.AnnouncerCommandExecutor.onHelpCommand(AnnouncerCommandExecutor.java:120)
        at at.co.hohl.Announcer.AnnouncerCommandExecutor.onCommand(AnnouncerCommandExecutor.java:52)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
        ... 12 more
    
    I can use /announce command fine though.

    I use Essentials permissions etc. (its permissions are group manager)

    RB 860
     
  17. Offline

    jobud9

    does it work with hero chat to only brodcast to certain chatrooms?
     
  18. Offline

    ಠ_ಠ

    It works for me with 680, i just dont get a folder in my plugins section, so i cant change anything.... :\
     
  19. Offline

    dark_hunter

    Not all my announcements show up on list even tho its showing in the file and showing in game, something wrong?
     
  20. Offline

    VeryInsane

    Will this work with newest RB #928?
     
  21. Offline

    dark_hunter

    From what I can tell yes.
     
    VeryInsane likes this.
  22. Offline

    MiHo

    Works with latest recommended build too! (RB #928)
     
    dark_hunter likes this.
  23. Offline

    Fallencrazy1

    Can you assist me, I started a server today on my computer and when I went to open the config.yml my computer wont open it, it doesn't know what to open it with. Can you tell me a program to download or find to open the config.yml. Also, I cant change my server.properties because my computer doesn't know what to open it with. Can you help me with that too?
     
  24. Offline

    MiHo

    You can use the Windows default 'Notepad' editor to open property files like '*.yml' or '*.properties'.
     
  25. Offline

    KarnEdge

    Code:
        broadcast-tag-color: LIGHT_PURPLE
        broadcast-tag: Announcement
    Would it be possible to change these variables to just:
    Code:
       broadcast-tag: '&d[Announcement]'
    That way you can make the tag anyway you want. I keep all my tags for different mods the same: ie; '&8[&fAnnouncement&8]'
     
  26. wtf i have this plugin, i type /announce <- nothing happens. /announce enable true <-- nothing happens? :O
    im running bukkit 935 minecraft 1.6.6
    Code:
    2011-07-02 12:22:14 [INFO] Starting minecraft server version Beta 1.6.6
    2011-07-02 12:22:14 [INFO] Loading properties
    2011-07-02 12:22:14 [INFO] Starting Minecraft server on 5.199.229.112:25565
    2011-07-02 12:22:14 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    2011-07-02 12:22:14 [WARNING] The server will make no attempt to authenticate usernames. Beware.
    2011-07-02 12:22:14 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
    2011-07-02 12:22:14 [WARNING] To change this, set "online-mode" to "true" in the server.settings file.
    2011-07-02 12:22:14 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-892-ga9ddbaa-b935jnks (MC: 1.6.6)
    2011-07-02 12:22:14 [INFO] DataSourcePool [HiddenDoor] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[20]
    2011-07-02 12:22:14 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-07-02 12:22:15 [INFO] Entities enhanced[0] subclassed[1]
    2011-07-02 12:22:15 [SEVERE] Could not load 'plugins\MinecraftRestartController.jar' in folder 'plugins':
    java.io.FileNotFoundException: Jar does not contain plugin.yml
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:64)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:199)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:122)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:118)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:89)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:52)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:132)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-02 12:22:15 [INFO] [Permissions] (Phoenix) was Initialized.
    2011-07-02 12:22:15 [SEVERE] Could not load 'plugins\ScheduledAnnouncer.jar' in folder 'plugins':
    while parsing a block mapping
     in "<reader>", line 11, column 5:
            enabled: true
            ^
    expected <block end>, but found Scalar
     in "<reader>", line 33, column 12:
            - 'Don't forget to close doors or chest ...
                   ^
    
        at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:576)
        at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
        at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
        at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:228)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
        at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
        at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122)
        at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
        at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:124)
        at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
        at org.bukkit.util.config.Configuration.load(Configuration.java:82)
        at org.bukkit.plugin.java.JavaPlugin.initialize(JavaPlugin.java:157)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:175)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:199)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:122)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:118)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:89)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:52)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:132)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-02 12:22:15 [INFO] Preparing level "world"
    2011-07-02 12:22:15 [INFO] Preparing start region for level 0 (Seed: -1352437314461818859)
    2011-07-02 12:22:16 [INFO] Preparing start region for level 1 (Seed: -2111628177631298019)
    2011-07-02 12:22:16 [INFO] Preparing spawn area: 69%
    2011-07-02 12:22:16 [INFO] [AnyoneSleep] Starting! (version 1.3 by R3ality)
    2011-07-02 12:22:16 [INFO] [AnyoneSleep] Found a permission system, using it!
    2011-07-02 12:22:16 [INFO] BOSEconomy: Located Phoenix Permissions 2.7.4.
    2011-07-02 12:22:16 [INFO] BOSEconomy 0.6.2 enabled.
    2011-07-02 12:22:16 [INFO] CommandBook 1.5.2-customized enabled.
    2011-07-02 12:22:16 [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some features have been disabled to be compatible with poorly written server wrappers.
    2011-07-02 12:22:16 [INFO] CommandBook: 0 banned name(s) loaded.
    2011-07-02 12:22:16 [INFO] CommandBook: 1 kit(s) loaded.
    2011-07-02 12:22:16 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-02 12:22:16 [INFO] CraftBukkitUpToDate version 2.5.6 is enabled!
    2011-07-02 12:22:16 [INFO] [Permissions] version [2.7.4] (Phoenix)  loaded
    2011-07-02 12:22:16 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-02 12:22:16 [INFO] CButD: CraftBukkit is Outdate, try to download new version
    2011-07-02 12:22:21 [INFO] CButD: CraftBukkit download new Build, please stop the server and copy C:\Users\Jani\Desktop\MineCraft server\bukkit_update\craftbukkit.jar to your Main-Folder.
    2011-07-02 12:22:21 [INFO] Found and will use plugin Permissions v2.7.4
    2011-07-02 12:22:21 [INFO] CursedLands version 0.6 is enabled!
    2011-07-02 12:22:21 [INFO] DropChest version 0.7.8 is enabled!
    2011-07-02 12:22:21 [INFO] File C:\Users\Jani\Desktop\MineCraft server\plugins\DropChest\dropchest.cfg not found.
    2011-07-02 12:22:21 [INFO] Duels version 0.6.1 ENABLED (Using permissions)
    2011-07-02 12:22:21 [INFO] FenceStack version 1.13 loaded.
    2011-07-02 12:22:21 [INFO] [Friendly] Version 1.0 enabled.
    2011-07-02 12:22:21 [INFO] [GravelClay] version 1.3.1 by [Darklust] is enabled.
    2011-07-02 12:22:21 [INFO] HiddenDoor: Trying to enable version 0.2 ...
    2011-07-02 12:22:21 [INFO] HiddenDoor: Configuration file loaded.
    2011-07-02 12:22:21 [INFO] HiddenDoor: Loaded 3 hidden doors.
    2011-07-02 12:22:21 [INFO] HiddenDoor: Version 0.2 enable.
    2011-07-02 12:22:21 [INFO] Lockette version 1.3.8 is being enabled!  Yay!  (Core version 1.0)
    2011-07-02 12:22:21 [INFO] Lockette: Detected craftbukkit build [935] ok.
    2011-07-02 12:22:21 [INFO] Lockette: Linked to Permissions plugin version 2.7.4
    2011-07-02 12:22:21 [INFO] Lockette: Using ops file for admin permissions.
    2011-07-02 12:22:21 [INFO] Lockette: Ready to protect your containers.
    2011-07-02 12:22:21 [INFO] [MagicCarpet] MagicCarpet version 1.5.5 is enabled!
    2011-07-02 12:22:21 [INFO] [MagicCarpet] Take yourself wonder by wonder, using /magiccarpet or /mc.
    2011-07-02 12:22:21 [INFO] [MagicCarpet] Using Permissions.
    2011-07-02 12:22:21 [INFO] Memory max: 1037959168 bytes
    2011-07-02 12:22:21 [INFO] Memory total: 1037959168 bytes
    2011-07-02 12:22:21 [INFO] Remote Toolkit Plugin V0.45b enabled!
    2011-07-02 12:22:21 [INFO] [MobBounty] v4.05 (Oxygen) enabled.
    2011-07-02 12:22:21 [INFO] [MobBounty] Developed by: [Mattera, Steven (IchigoKyger)].
    2011-07-02 12:22:21 [INFO] [MobBounty] Special Thanks to: nijikokun for the Register API.
    2011-07-02 12:22:21 [INFO] [MobBounty] Config loaded.
    2011-07-02 12:22:21 [INFO] [MobBounty] Permission plugin was found (Permissions v2.7.4).
    2011-07-02 12:22:21 [INFO] [MobBounty] Payment plugin was found (BOSEconomy v0.6.2).
    2011-07-02 12:22:21 [INFO] [OpenInv] version 1.3.1 is enabled!
    2011-07-02 12:22:21 [INFO] Loading PluginControl Version 0.57
    2011-07-02 12:22:21 [INFO] Using Nijikokun's Permission plugin
    2011-07-02 12:22:21 [INFO] Read level-name: world
    2011-07-02 12:22:21 [INFO] PluginControl started
    2011-07-02 12:22:21 [INFO] PW: Start loading of PrivateWarp 1.4.8
    2011-07-02 12:22:21 [INFO] PW: Starting initialization of PrivateWarp
    2011-07-02 12:22:21 [INFO] PW: Copyright: Wrecker Technologies
    2011-07-02 12:22:21 [INFO] PW: PrivateWarp 1.4.8 initialized
    2011-07-02 12:22:21 [INFO] PW: Just got enabled
    2011-07-02 12:22:21 [INFO] [Showcase] Registered type [basic] (0 items loaded)
    2011-07-02 12:22:21 [INFO] [Showcase] Registered type [finite] (0 items loaded)
    2011-07-02 12:22:21 [INFO] [Showcase] Registered type [infinite] (4 items loaded)
    2011-07-02 12:22:21 [INFO] [Showcase] Registered type [exchange] (0 items loaded)
    2011-07-02 12:22:21 [INFO] [Showcase] version 0.6.12 has been enabled.
    2011-07-02 12:22:21 [INFO] [Showcase] Payment method found (BOSEconomy version: 0.6.2)
    2011-07-02 12:22:21 [INFO] SupplySign: ShowErrorsInClient=true
    2011-07-02 12:22:21 [INFO] SupplySign: FixSignOnSignGlitch=SupplySignOnly
    2011-07-02 12:22:21 [INFO] SupplySign loaded 1116 items.
    2011-07-02 12:22:21 [INFO] SupplySign loaded 13 kits from kits.yml.
    2011-07-02 12:22:21 [INFO] SupplySign version 1.6.3 is enabled!
    2011-07-02 12:22:21 [INFO] UnlimitedLava 0.2 is enabled!
    2011-07-02 12:22:21 [INFO] VehicleExit started.
    2011-07-02 12:22:21 [INFO] WorldEdit 4.6 enabled.
    2011-07-02 12:22:21 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-02 12:22:21 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world) Single session is enforced.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world) Lava fire is blocked.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world) Fire spread is UNRESTRICTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-07-02 12:22:21 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world_nether) TNT ignition is PERMITTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2011-07-02 12:22:21 [INFO] WorldGuard: (world_nether) Fire spread is UNRESTRICTED.
    2011-07-02 12:22:21 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2011-07-02 12:22:21 [INFO] WorldGuard: 5 regions loaded for 'world'
    2011-07-02 12:22:21 [INFO] WorldGuard 5.2.2 enabled.
    2011-07-02 12:22:21 [INFO] [XcraftGate v0.7.1] hooked into Permissions 2.7.4
    2011-07-02 12:22:21 [INFO] [XcraftGate v0.7.1] by Engelier loaded.
    2011-07-02 12:22:21 [INFO] [XcraftGate v0.7.1] loading world world_nether (NETHER)
    2011-07-02 12:22:21 [INFO] [XcraftGate v0.7.1] loading world world (NORMAL)
    2011-07-02 12:22:21 [INFO] [XcraftGate v0.7.1] loaded 4 gates
    2011-07-02 12:22:21 [SEVERE] [Jobs] - Storage method invalid or missing
    2011-07-02 12:22:21 [SEVERE] [Jobs] - Storage method invalid or missing
    2011-07-02 12:22:21 [INFO] [Jobs] - max-jobs property not found. Defaulting to unlimited!
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Woodcutter is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Woodcutter is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Miner is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Miner is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Builder is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Builder is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Digger is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Digger is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Farmer is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Farmer is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Hunter is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Hunter is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [SEVERE] Error occurred while disabling Jobs v2.3.2 (Is it up to date?): null
    java.lang.NullPointerException
        at com.zford.jobs.config.JobsConfiguration.loadSlots(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.<init>(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.getInstance(Unknown Source)
        at com.zford.jobs.Jobs.onDisable(Unknown Source)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:128)
        at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:878)
        at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:280)
        at com.zford.jobs.Jobs.disablePlugin(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.loadGeneralSettings(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.<init>(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.getInstance(Unknown Source)
        at com.zford.jobs.Jobs.onEnable(Unknown Source)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:857)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:264)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:151)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:136)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-02 12:22:21 [INFO] [Jobs] - max-jobs property not found. Defaulting to unlimited!
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Woodcutter is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Woodcutter is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Miner is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Miner is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Builder is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Builder is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Digger is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Digger is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Farmer is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Farmer is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Hunter is missing the max-level property. defaulting to no limits !
    2011-07-02 12:22:21 [INFO] [Jobs] - Job Hunter is missing the slots property. defaulting to no limits !
    2011-07-02 12:22:21 [SEVERE] Error occurred while enabling Jobs v2.3.2 (Is it up to date?): null
    java.lang.NullPointerException
        at com.zford.jobs.config.JobsConfiguration.loadSlots(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.<init>(Unknown Source)
        at com.zford.jobs.config.JobsConfiguration.getInstance(Unknown Source)
        at com.zford.jobs.Jobs.onEnable(Unknown Source)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:857)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:264)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:151)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:136)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-02 12:22:21 [INFO] Done (0,618s)! For help, type "help" or "?"
    2011-07-02 12:22:21 [INFO] [Showcase] Autosaved
    2011-07-02 12:22:31 [INFO] The automatic update-Check only work every 6 hours, the last check was 28 minutes ago.
    
    
    it just tells me "unknown command" :D
     
  27. Offline

    MiHo

    Read your log, it already tolds you what's wrong:
    Code:
    2011-07-02 12:22:15 [SEVERE] Could not load 'plugins\ScheduledAnnouncer.jar' in folder 'plugins':
    while parsing a block mapping
     in "<reader>", line 11, column 5:
            enabled: true
            ^
    expected <block end>, but found Scalar
     in "<reader>", line 33, column 12:
            - 'Don't forget to close doors or chest ...
                   ^
    The ' isn't allowed in YAML files. So write "Do not forget to close doors and chest..." and it will work![/code]
     
  28. oo ya i got it.
    i cant have

    "Don't"
    "Can't" etc. :D the ' mark fucks it up!!
    ty!
     
  29. Offline

    Fob_Upset

  30. Seems to work fine with the lastest version of Bukkit 958, Is there a way to change the Light Purple to something else? like a list of colours?
     
  31. Offline

    MiHo

    Change this config line to something else:
    Code:
    broadcast-tag-color: LIGHT_PURPLE
     

Share This Page