Inactive [SEC] GriefAlert Reborn 0.8 - Supports both Group Manager and Permissions [1317]

Discussion in 'Inactive/Unsupported Plugins' started by Gandalf, Feb 27, 2011.

  1. Offline

    Gandalf

    I didn't imagine it being an issue, but it turns out for some users it is, thank you. I have now standardized the fix amongst all my releases.
     
  2. Offline

    anonymous

    So far i have it logging chest right clicks and it runs prefectly, now how many things is it safe to log before it starts straining the server? I would imagine its not good to log every block of dirt and wood that people break correct?
     
  3. Offline

    Kano

    One Problem solved but the next comes up :/ Now with Player Interact
    Code:
    [SEVERE] Could not pass event PLAYER_INTERACT to GriefAlert Reborn
    java.lang.NullPointerException
        at gandalf.GriefAlertR.GriefAlertRPlayerListener.doWork(GriefAlertRPlayerListener.java:84)
        at gandalf.GriefAlertR.GriefAlertRPlayerListener.itemUse(GriefAlertRPlayerListener.java:65)
        at gandalf.GriefAlertR.GriefAlertRPlayerListener.onPlayerInteract(GriefAlertRPlayerListener.java:32)
        at org.bukkit.plugin.java.JavaPluginLoader$9.execute(JavaPluginLoader.java:217)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:255)
        at org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:162)
        at org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:133)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:415)
        at net.minecraft.server.Packet15Place.a(SourceFile:57)
        at net.minecraft.server.NetworkManager.a(NetworkManager.java:198)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:72)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:368)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:283)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:375)
    
    Code:
    ##########################################################
    #                   GriefAlertR Config                   #
    #                                                        #
    #                   Name: Gandalf                        #
    #                   Version: .5                          #
    #                                                        #
    #                                                        #
    #            Visit us at http://wdgaming.net             #
    #                                                        #
    ##########################################################
    
    #id - Decimal ID of item to check, can be found at http://www.minecraftwiki.net/wiki/Data_values
    #name - Name of the item to use
    #action - onUse(for items defined in my thread), onRightClick, onBreak, onPlace
    #restricted - Only players with the "griefalertr.use" permission will be able to use this block depending on which action you chose(all actions are supported).
    #user-message - Sets whether or not users are notified
    #mod-message - Sets whether or not groups with the "griefalertr.view" permission group will be notified by the plugin.
    #mod-exemption - Sets whether or not groups with the "griefalertr.exempt" permission will be exempted by the plugin.
    #user-color - Color that the player's name will appear in for messaging.
    #block-color - Color that the block's name will appear in for messaging.
    #Color information: f = white, e = yellow, d = pink, c = red, b = cyan, a = green, 9 = blue, 8 = gray, 7 = lightgray, 6 = orange
    #5 = dark purple, 4 = dark red, 3 = dark cyan, 2 = dark green, 1 = blue
    
    #ITEM LIST STARTS HERE, EXAMPLE IS PROVIDED BELOW, FORMAT IT EXACTLY AS SHOWN.
    
    
    #Set true to enable logging to MySQL, or else just ignore all the SQL configurations.
    Log to MySQL: 'false'
    #Username for the SQL database
    SQLusername: 'user'
    #Password for the SQL database
    SQLpassword: 'pass'
    #"localhost" is the server hostname or IP, "3306" is the port (default for MySQL) and "minecraft" is the name of the database.
    SQLdb: 'jdbc:mysql://localhost:3306/minecraft'
    
        tnt:
            id: '46'
            name: 'TNT'
            action: 'onPlace'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        tnt(for exploding):
            id: '46'
            name: 'TNT'
            action: 'onBreak'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Lighter:
            id: '259'
            name: 'Flint and Steel'
            action: 'onUse'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Water bucket:
            id: '326'
            name: 'Water bucket'
            action: 'onUse'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'false'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Lava bucket:
            id: '327'
            name: 'Lava bucket'
            action: 'onUse'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'false'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Obsidian (place):
            id: '49'
            name: 'Obsidian'
            action: 'onPlace'
            restricted: 'false'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Gold Block (Break):
            id: '41'
            name: 'Gold Block'
            action: 'onBreak'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
        Diamond Block (Break):
            id: '57'
            name: 'Diamond Block'
            action: 'onBreak'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
    
        Netherrack (Place):
            id: '87'
            name: 'Netherrack'
            action: 'onPlace'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
    
        Netherrack (Break):
            id: '87'
            name: 'Netherrack'
            action: 'onBreak'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: 'c'
    
    Thx for the good help!
     
  4. Offline

    Ancetras

    It's on "true" but I can't see the message when someone use a forbidden item T_T

    Code:
        tnt:
            id: '46'
            name: 'TNT'
            action: 'onPlace'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '6'
            block-color: '9'
    
        tnt(for exploding):
            id: '46'
            name: 'TNT'
            action: 'onBreak'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '6'
            block-color: '9'
    
        Lava_Bucket:
            id: '327'
            name: 'Lava_Bucket'
            action: 'onUse'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '6'
            block-color: '9'
    
        Bucket:
            id: '325'
            name: 'Bucket'
            action: 'onUse'
            restricted: 'false'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '6'
            block-color: '9'
    
        Flint_and_Steel:
            id: '259'
            name: 'Flint_And_Steel'
            action: 'onRightClick'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '6'
            block-color: '9'
     
  5. Offline

    looklee

    i want to give use item for specific group
    if A B C group exist
    A only sword
    B only axe
    C only box
    do it possible??
     
  6. Offline

    Neoinr

    Hi, Just updated. I have the latest craftbukkit and permissions. With the default config.txt, loading the plugin gives me:
    19:22:08 [INFO] Attempting Creation of the GriefAlertr Log File
    19:22:08 [INFO] Could Not Create The Log File for GriefAlertR
    19:22:08 [SEVERE] String index out of range: -1 loading GriefAlertR v0.71 (Is it up to date?)
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1949)
    at gandalf.GriefAlertR.ItemManager.readFromFile(ItemManager.java:186)
    at gandalf.GriefAlertR.ItemManager.setUp(ItemManager.java:43)
    at gandalf.GriefAlertR.GriefAlertR.onEnable(GriefAlertR.java:50)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:127)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:578)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:216)
    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:115)
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:93)
    at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:285)
    at org.bukkit.command.SimpleCommandMap$ReloadCommand.execute(SimpleCommandMap.java:196)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:246)
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:391)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:377)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:283)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:375)


    Any idea what I can try?
     
  7. Offline

    Gandalf

    Delete everything that has to do with GriefAlertR and download again. It should work.

    No sorry group permissions are not as of yet supported on a item basis.

    Re-download version .71 and try again please.

    It is not very resource intensive so you can log pretty much whatever you want, even dirt if you wanted to.

    When exactly does that come up? I have been unable to duplicate this error.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 10, 2016
  8. Offline

    Madmonkey

    gandalf mind if you do another custom build for me when it logs all blocks? on break on interact on place on use
     
  9. Offline

    Darkenvy

    Hey I want my mods to be able to break diamond blocks and glowstone. I set both to "mod-exemption: 'true'" and tired both "griefalertr.ignore" and "griefalertr.view" for their permissions but neither lets then be exempt! please help!
     
  10. Offline

    Kano

    Everytime someone use a watched Item for exmaple that was a Water Buket
     
  11. Offline

    Exolas

    No need anymore, got fixed with 0.72 :] thanks alot
     
    Gandalf likes this.
  12. Offline

    Gandalf

    Give them the griefalertr.use permission.

    I could not recreate the error, can you please re-download just the jar, and see if it happens for you again?

    Do you use Group Manager or Permissions?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 10, 2016
  13. Offline

    Neoinr

    Hi thanks, I thought I had already done that, but after I posted that I tried once more and got it working. and unlike previous builds its actually reading the config file :D
     
    Gandalf likes this.
  14. Offline

    Ancetras

    Why are my users able to use Lava Bucket / Flint And Steel and not TNT?

    Here my config file:

    Code:
    ##########################################################
    #                   GriefAlertR Config                   #
    #                                                        #
    #                   Name: Gandalf                        #
    #                   Version: .6                          #
    #                                                        #
    #                                                        #
    #            Visit us at http://wdgaming.net             #
    #                                                        #
    ##########################################################
    
    #id - Decimal ID of item to check, can be found at http://www.minecraftwiki.net/wiki/Data_values
    #name - Name of the item to use
    #action - onUse(for items defined in my thread), onRightClick, onBreak, onPlace
    #restricted - Only players with the "griefalertr.use" permission will be able to use this block depending on which action you chose(all actions are supported).
    #user-message - Sets whether or not users are notified
    #mod-message - Sets whether or not groups with the "griefalertr.view" permission group will be notified by the plugin.
    #mod-exemption - Sets whether or not groups with the "griefalertr.exempt" permission will be exempted by the plugin.
    #user-color - Color that the player's name will appear in for messaging.
    #block-color - Color that the block's name will appear in for messaging.
    #Color information: f = white, e = yellow, d = pink, c = red, b = cyan, a = green, 9 = blue, 8 = gray, 7 = lightgray, 6 = orange
    #5 = dark purple, 4 = dark red, 3 = dark cyan, 2 = dark green, 1 = blue
    
    #ITEM LIST STARTS HERE, EXAMPLE IS PROVIDED BELOW, FORMAT IT EXACTLY AS SHOWN.
    #The indentation doesn't matter that is for your own organizational purposes.
    
    #Set true to enable logging to MySQL, or else just ignore all the SQL configurations.
    Log to MySQL: 'false'
    #Username for the SQL database
    SQLusername: ''
    #Password for the SQL database
    SQLpassword: ''
    #"localhost" is the server hostname or IP, "3306" is the port (default for MySQL) and "minecraft" is the name of the database.
    SQLdb: 'jdbc:mysql://localhost:3306/minecraft'
    
        tnt:
            id: '46'
            name: 'TNT'
            action: 'onPlace'
            restricted: 'true'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        tnt(for exploding):
            id: '46'
            name: 'TNT'
            action: 'onBreak'
            restricted: 'true'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        Lighter:
            id: '259'
            name: 'Flint and Steel'
            action: 'onUse'
            restricted: 'true'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        Lava bucket:
            id: '327'
            name: 'Lava bucket'
            action: 'onUse'
            restricted: 'true'
            user-message: 'false'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
     
  15. Offline

    Gandalf

    Your configuration file works fine for me, and I had someone test it on another server. If it is blocking TNT, then it is blocking Lava buckets as well.

    You need to download the latest version, you have .6 which had a bug in it for some users that didn't allow Buckets to be restricted.

    Delete your GriefAlertR.jar, download the latest one, try again, and tell me what happens. Your problem will most likely be fixed.
     
  16. Offline

    Ancetras

    I already tried to do this T_T i downloaded the latest GriefAlertR.zip for permissions from the link in the Open Post.
    Dunno, maybe there's another mirror? o_o I didn't see.
     
  17. Offline

    Gandalf

    Are you sure you are loading the correct version? It should say version .71. That is the only explanation.
     
  18. Offline

    Ancetras

    I download this link: http://www.wdgaming.net/minecraft/GriefAlertRPM.zip
    This is the .6 version, not the .71 T_T
    In the Open Post there isn't .71 T_T
     
  19. Offline

    Gandalf

    No, that is the .71 version, you are using an outdated version which is your problem. I don't know why you are not succeeding in downloading it. Try clearing your cache, and re-downloading.
     
  20. Offline

    Color42

    Would it be possible to get some sort of function where I could call on logs in MySQL for a player and get the plugin to spit out a flat file with the logged actions for that player?
     
  21. Offline

    Gandalf

    You would have to make a php script for that to happen, ask around and if anyone is willing to make one, please pass it on to me as well.
     
  22. Offline

    Ancetras

    Thank you >_<.

    However, now I have the .75 version but it works like the .6 ...
    Users cannot place TNT and I receive the message, but Lava Bucket and Flint and Steel can be used T_T

    Here my config.

    Code:
    ##########################################################
    #                   GriefAlertR Config                   #
    #                                                        #
    #                   Name: Gandalf                        #
    #                   Version: .75                         #
    #                                                        #
    #                                                        #
    ##########################################################
    
    #id - Decimal ID of item to check, can be found at http://www.minecraftwiki.net/wiki/Data_values
    #name - Name of the item to use
    #action - onUse(for items defined in my thread), onRightClick, onBreak, onPlace
    #restricted - Only players with the "griefalertr.use" permission will be able to use this block depending on which action you chose(all actions are supported).
    #user-message - Sets whether or not users are notified
    #mod-message - Sets whether or not groups with the "griefalertr.view" permission group will be notified by the plugin.
    #mod-exemption - Sets whether or not groups with the "griefalertr.exempt" permission will be exempted by the plugin from logging and alerts.
    #user-color - Color that the player's name will appear in for messaging.
    #block-color - Color that the block's name will appear in for messaging.
    #Color information: f = white, e = yellow, d = pink, c = red, b = cyan, a = green, 9 = blue, 8 = gray, 7 = lightgray, 6 = orange
    #5 = dark purple, 4 = dark red, 3 = dark cyan, 2 = dark green, 1 = blue
    
    #ITEM LIST STARTS HERE, EXAMPLE IS PROVIDED BELOW, FORMAT IT EXACTLY AS SHOWN.
    #The indentation doesn't matter that is for your own organizational purposes.
    
    #Set true to enable logging to MySQL, or else just ignore all the SQL configurations.
    Log to MySQL: 'false'
    #Username for the SQL database
    SQLusername: ''
    #Password for the SQL database
    SQLpassword: ''
    #"localhost" is the server hostname or IP, "3306" is the port (default for MySQL) and "minecraft" is the name of the database.
    SQLdb: 'jdbc:mysql://localhost:3306/minecraft'
    
        tnt:
            id: '46'
            name: 'TNT'
            action: 'onPlace'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        tnt(for exploding):
            id: '46'
            name: 'TNT'
            action: 'onBreak'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        Lighter:
            id: '259'
            name: 'Flint_and_Steel'
            action: 'onUse'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
    
        Lava Bucket:
            id: '327'
            name: 'Lava_Bucket'
            action: 'onUse'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'e'
            block-color: '6'
     
  23. Offline

    MatCat

    I think I have isolated a major server crash to this plugin... I have it configured to alert me to Lava and water bucket usage, however I noticed that as a new member started building a large project that uses a lot of lava my server has been crashing a lot with a rather cryptic Too many files open error. I deduct it is this plugin because of the fact that there is no warning that a lava or water bucket was used. I am using 0.71, I haven't tried 0.75 can you confirm this possibility or check into it? I have disabled the plugin for now to see if the crashing stops. I will report the results.
     
    Gandalf likes this.
  24. Offline

    Gandalf

    Please do, I fixed a couple of grotesque bugs in .75, if the crashing stops, try .75.
     
  25. Offline

    MatCat

    Ok I have come to the conclusion it's not your plugin :). It seems to be NoCheats doing it, confirming it the same way I confirmed yours isn't.
     
    Gandalf likes this.
  26. Offline

    anonymous

    Having some problems when I try to log Lava. I get this error spammed in my cosnole:

    Code:
    java.lang.NullPointerException
            at gandalf.GriefAlertR.GriefAlertRPlayerListener.stickCheck(GriefAlertRPlayerListener.java:98)
            at gandalf.GriefAlertR.GriefAlertRPlayerListener.onPlayerInteract(GriefAlertRPlayerListener.java:37)
            at org.bukkit.plugin.java.JavaPluginLoader$9.execute(JavaPluginLoader.java:217)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:255)
            at org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:162)
            at net.minecraft.server.ItemInWorldManager.a(ItemInWorldManager.java:64)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:356)
            at net.minecraft.server.Packet14BlockDig.a(SourceFile:42)
            at net.minecraft.server.NetworkManager.a(NetworkManager.java:198)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:72)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:368)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:283)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:375)
    Config file:

    Code:
    ##########################################################
    #                   GriefAlertR Config                   #
    #                                                        #
    #                   Name: Gandalf                        #
    #                   Version: .7                          #
    #                                                        #
    #                                                        #
    #            Visit us at http://wdgaming.net             #
    #                                                        #
    ##########################################################
    
    #id - Decimal ID of item to check, can be found at http://www.minecraftwiki.net/wiki/Data_values
    #name - Name of the item to use
    #action - onUse(for items defined in my thread), onRightClick, onBreak, onPlace
    #restricted - Only players with the "griefalertr.use" permission will be able to use this block depending on which action you chose(all actions are supported).
    #user-message - Sets whether or not users are notified
    #mod-message - Sets whether or not groups with the "griefalertr.view" permission group will be notified by the plugin.
    #mod-exemption - Sets whether or not groups with the "griefalertr.exempt" permission will be exempted by the plugin.
    #user-color - Color that the player's name will appear in for messaging.
    #block-color - Color that the block's name will appear in for messaging.
    #Color information: f = white, e = yellow, d = pink, c = red, b = cyan, a = green, 9 = blue, 8 = gray, 7 = lightgray, 6 = orange
    #5 = dark purple, 4 = dark red, 3 = dark cyan, 2 = dark green, 1 = blue
    
    #ITEM LIST STARTS HERE, EXAMPLE IS PROVIDED BELOW, FORMAT IT EXACTLY AS SHOWN.
    #The indentation doesn't matter that is for your own organizational purposes.
    
    #Set true to enable logging to MySQL, or else just ignore all the SQL configurations.
    Log to MySQL: 'false'
    #Username for the SQL database
    SQLusername: ''
    #Password for the SQL database
    SQLpassword: ''
    #"localhost" is the server hostname or IP, "3306" is the port (default for MySQL) and "minecraft" is the name of the database.
    SQLdb: 'jdbc:mysql://localhost:3306/minecraft'
    
        tnt:
            id: '46'
            name: 'TNT'
            action: 'onPlace'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: 'b'
            block-color: 'c'
        tnt(for exploding):
            id: '46'
            name: 'TNT'
            action: 'onBreak'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '9'
            block-color: '7'
        Chest:
            id: '54'
            name: 'Chest'
            action: 'onRightClick'
            restricted: 'false'
            user-message: 'false'
            mod-message: 'false'
            mod-exemption: 'true'
            user-color 'b'
            block-color: 'c'
        LavaBucket
            id: '357
            name: 'Lava bucket'
            action: 'onUse'
            restricted: 'true'
            user-message: 'true'
            mod-message: 'true'
            mod-exemption: 'false'
            user-color: '9'
            block-color: '7'
     
  27. Offline

    Gandalf

    Update to the latest version .75 version, Bukkit changed again, and I had to keep it up to date.

    Sorry but I have no clue at this point.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 10, 2016
  28. Offline

    Ancetras

    Maybe it doesn't work 'cause of my version of bukkit? o,o dunno

    T_T
     
  29. Offline

    Gandalf

    What is your version of bukkit, that is probably why. If you did not update to the latest version.
     
  30. Offline

    untergrundbiber

    Same her with CB674 and GA 0.75 :(
     

Share This Page