[GEN] General 3.6.2 (Webern) -- A plugin for general commands, now on BukkitDev! [1060]

Discussion in 'Inactive/Unsupported Plugins' started by Celtic Minstrel, Mar 6, 2011.

  1. Offline

    Celtic Minstrel

    General 3.6.2 [Webern]
    NOTE: If you are updating from 3.4.1 or earlier, you must copy the aliases section from the sample config file into your own config file. If you don't do this, many commands will not work.
    Download from the BukkitDev page (Older versions | Source)

    General provides a small set of basic commands for your server. See more details on the BukkitDev page.

    General is a fork of Nijikokun's plugin. It adds a few commands to the original set provided by General.

    Without Nijikokun's original General plugin, this plugin would never have been possible. Or at least, I would not have made it. General Essentials (the source of the /kit command) was created by wjykk and has had some input from cjc343. The SpawnMob plugin, from which I adapted the code for the /mobspawn command, was created by xmlns and is now maintained by jordanneil23.

    I recommend using sk89q's CommandHelper in conjunction with this plugin. Starting from 3.4.5, there is a command-helper.txt file included with the download which you can copy to CommandHelper's config.txt for some handy aliases, such as /spawn and /home.

    Differences from cjc343's now-inactive fork
    • Does not detect that another plugin has registered the same command.
    • /playerlist and /who are two separate commands
    • Different items.db format
    • Does not support setting or viewing the raw time.
     
  2. Offline

    Mountaineer

    I've got a question about possible conflict with WeatherGod. If I just leave out the permission node for weather, will General still conflict with WeatherGod? I like WG quite a bit and don't feel like switching a bunch of plugins to avoid conflicts and still have plugin functionality. I guess I should say, I don't want to experience Essentials again, lol.
     
  3. Offline

    LithiumFox

    so... it keeps saying my general.motd is missing.. :(
     
  4. Offline

    MrKrucible

    Ok for some reason my guests, visitors, friends, and some moderators and admins can't use /spawn.
    i have tried for a good 3 days trying to fix this. Please help, so here is my permissions and general file.

    General.yml
    Code:
    # The ops-only flag is used if the permissions system is set to Basic, and specifies which actions
    # should be restricted to ops. If any other permissions system is specified, it is ignored.
    # Valid permission systems: Basic, Permissions, GroupManager, WorldEdit, CraftBukkit
    
    permissions:
      system: Permissions
      ops-only:
       - general.time.set
       - permissions.system
       - general.teleport
       - general.teleport.other
       - general.teleport.coords
       - general.teleport.other.mass
       - general.summon
       - general.give
       - general.give.infinite
       - general.give.group.notitem
       - general.give.group.bedrock
       - general.give.group.fluid
       - general.spawn.set
       - general.spawn.other
       - log-commands
       - general.getpos.other
       - general.clear.other
       - general.take.other
       - general.heal
       - general.mobspawn
       - general.kit.<kitname>
       - general.kit-now
       - general.admin
    
    # This section lets you restrict certain items to particular groups in the /give command.
    # The default configuration shown here restricts items that either are not an item (ie they
    # have a different ID for the corresponding inventory item) or are duplicates of another
    # item (eg the burning furnace). It also restricts bedrock and fluids.
    #
    # Note that this only blocks the user from using the /give command to get these items.
    # If they are obtained in any other way, there is nothing to prevent the user from
    # placing them. Use WorldGuard for that.
    #
    # The others-for-all setting specifies whether items not in a group are accessible by default.
    # If false, items not in a group can be considered as belonging to the group "other".
    
    give:
      groups:
        notitem: [26, 55, 59, 62, 63, 64, 68, 71, 74, 75, 83, 90, 93, 94]
        bedrock: [7]
        fluid: [8, 9, 10, 11]
      others-for-all: true
    
    playerlist:
      show-health: true
      show-coords: false
      show-world: true
    
    # If true, show the message of the day on login.
    show-motd: true
    
    time:
      format-24-hour: true
      show-ticks: true
    
    # This section is for if you want economy enabled. Currently the only accepted option is system,
    # which should be either None or iConomy.
    
    economy:
      system: None
      commands:
        timeset: 0
        heal: 0
        mobspawn: 0
        kit: 0
      items:
        351: 0
        276: 0
        # etc
    
    # The format that a chat message's first word must take for General to assume that the player
    # may be tagging another player. For example, if you set it to '@name', it will use Twitter-style
    # tagging. Tagging currently only means that the tagger will be informed if the player is away.
    tag-fmt: 'name:'
    World1.yml
    Code:
    plugin:
        permissions:
            system:
    groups:
        Guest:
            default: false
            info:
                prefix: '&2'
                suffix: null
                build: true
            inheritance: Visitor
            permissions:
            - lwc.protect
            - general.spawn
        Visitor:
            default: true
            info:
                prefix: '&5'
                suffix: null
                build: false
            inheritance: null
            permissions:
            - general.spawn
        Land Lord M:
            default: false
            info:
                prefix: '&1'
                suffix: null
                build: true
            inheritance:
            - Moderator
            permissions: null
        Land Lord A:
            default: false
            info:
                prefix: '&4'
                suffix: null
                build: true
            inheritance:
            - Admin
            permissions: null
        Moderator:
            default: false
            info:
                prefix: '&1'
                suffix: null
                build: true
            inheritance:
            - Friend
            permissions:
            - general.*
            - mywarp.*
            - kiwiadmin.*
            - myhome.*
            - tombstone.*
            - lwc.mod
            - guestprev.is.admin
        Admin:
            default: false
            info:
                prefix: '&4'
                suffix: null
                build: true
            inheritance:
            - Moderator
            permissions:
            - general.*
            - mywarp.*
            - kiwiadmin.*
            - myhome.*
            - citizens.*
            - tombstone.*
            - lwc.admin
            - creaturebox.set
            - creatureboc.give
            - creaturebox.creature.*
            - creativebox.placespawner
        Friend:
            default: false
            info:
                prefix: '&3'
                suffix: null
                build: true
            inheritance:
            - Default
            permissions:
            - tombstone.*
            - general.*
            - mywarp.*
            - myhome.home.basic.*
            - myhome.home.soc.*
            - lwc.protect
        Owner:
            default: false
            info:
                prefix: '&6'
                suffix: '&6'
                build: true
            inheritance:
            - honored Admin
            permission:
            - '*'
        Honored Admin:
            default: false
            info:
                prefix: '&6'
                suffix: '&6'
                build: true
            inheritance:
            - land lord a
            permission:
            - '*'
    users:
        mrkrucible:
            group: Owner
            permissions: null
        slimdevin:
            group: Honored Admin
            permissions: null
        mikeym:
            group: Honored Admin
            permissions: null
        death_cycle:
            group: land lord a
            permissions: null
        wafflezzman:
            group: moderator
            permissions: null
        xdreadreaper:
            group: moderator
            permissions: null
        gman1234rose:
            group: Admin
            permissions: null
        matrecon123:
            group: land lord a
            permissions: null
        b24jhon:
            group: friend
            permissions:
            - general.spawn
        00snipa:
            group: friend
            permissions:
            - general.spawn
        harry_staines:
            group: guest
            permissions: null
        duckbomb435:
            group: moderator
            permissions:
            - general.spawn
        buzzkill37:
            group: guest
            permissions:
            - general.spawn
        kerutheminer:
            group: guest
            permissions:
            - general.spawn
        maskedtrash:
            group: guest
            permissions: null
        gemogee:
            group: guest
            permissions: null
        jakester03:
            group: guest
            permissions:
            - general.spawn
        pwnsilentninja:
            group: guest
            permissions:
            - general.spawn
        thehilg:
            group: guest
            permissions:
            - general.spawn
        whocarrot:
            group: guest
            permissions: null
        kino373:
            group: moderator
            permissions: null
        mattcas88:
            group: friend
            permissions:
            - general.spawn
        dark97night:
            group: guest
            permissions:
            - general.spawn
     
  5. Offline

    LithiumFox

    and now it's saying my help is missing too... :(
     
  6. Offline

    Celtic Minstrel

    This is something to do with permissions. What does General print when the server starts up, and can I see your config.yml? Use [ code ] tags to preserve spaces.

    General will conflict with any plugin that defines a /weather command, but if you edit the plugin.yml inside the jar and remove "weather" in the aliases section, then WeatherGod will get the command instead.

    Most likely this is because it is missing. To silence the MOTD complaint, either create a general.motd file in the General folder, or edit the config.yml to set show-motd to false. As for help, it looks for player.help unless you call it from the console. Check the configuration link in the first post for more detail.


    I don't really remember what the required permissions node is for /spawn. It's possible you might need general.teleport, so you could try that. You could also click the Permissions link in the first post and see if that solves it. I can't really check my code to see what's needed, because I completely rewrote the entire teleporting system, which includes the /spawn command.
     
  7. Offline

    MrKrucible

    The node is general.spawn and i don't want people using the /tp commands so i cant add those nodes. Well only for the guests and visitors, i don't want them using the tp commands.
     
  8. Offline

    Celtic Minstrel

    Well, /spawn in version 3.4 has been moved over to be a part of the /tele command, so you'll have to give them access to that command when it is released... that said, you will be able to restrict their use of teleport to just going to spawn.
     
  9. Offline

    Celtic Minstrel

    General 3.4 beta is available. I'll post a full changelog later, when I get around to testing it (or someone does it for me). It has not yet been tested, so there may be problems. I don't think there will be any major bugs, though. The most notable rewrites (teleportation and mob spawning) were both tested, at least.
     
  10. Offline

    Jan Tojnar

    I will test it on my server tomorrow. What is this repo: https://github.com/craftstars/General?
     
  11. Offline

    Celtic Minstrel

    That's for General 4.0, which someone else is supposedly working on. Not much progress has been made yet.
     
  12. Offline

    Jan Tojnar

    Where can I get 3.4 beta? File not found.
     
  13. Offline

    Teteros

    I get a yaml error :/
    Code:
    2011-05-15 13:55:03 [SEVERE] Could not load 'plugins\General.jar' in folder 'plugins': 
    mapping values are not allowed here
     in "<reader>", line 45, column 12:
            notitem: [26, 55, 59, 62, 63, 64, 68, 7 ... 
                   ^
    
    	at org.yaml.snakeyaml.scanner.ScannerImpl.fetchValue(ScannerImpl.java:745)
    	at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:307)
    	at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:183)
    	at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:564)
    	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:73)
    	at org.bukkit.plugin.java.JavaPlugin.initialize(JavaPlugin.java:158)
    	at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:166)
    	at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:191)
    	at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:115)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:100)
    	at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:218)
    	at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:205)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:145)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:260)
     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)

    My general config:
    Code:
    # The ops-only flag is used if the permissions system is set to Basic, and specifies which actions
    # should be restricted to ops. If any other permissions system is specified, it is ignored.
    # Valid permission systems: Basic, Permissions, GroupManager, WorldEdit, CraftBukkit
    
    permissions:
      system: Permissions
      ops-only:
       - general.time.set
       - general.teleport
       - general.teleport.other
       - general.teleport.coords
       - general.teleport.other.mass
       - general.summon
       - general.give
       - general.give.infinite
       - general.give.group.notitem
       - general.give.group.bedrock
       - general.give.group.fluid
       - general.spawn.set
       - general.spawn.other
       - general.getpos.other
       - general.clear.other
       - general.take.other
       - general.heal
       - general.mobspawn
       - general.kit.<kitname>
       - general.kit-now
       - general.admin
    
    # This section lets you restrict certain items to particular groups in the /give command.
    # The default configuration shown here restricts items that either are not an item (ie they
    # have a different ID for the corresponding inventory item) or are duplicates of another
    # item (eg the burning furnace). It also restricts bedrock and fluids.
    # 
    # Note that this only blocks the user from using the /give command to get these items.
    # If they are obtained in any other way, there is nothing to prevent the user from
    # placing them. Use WorldGuard for that.
    #
    # The others-for-all setting specifies whether items not in a group are accessible by default.
    # If false, items not in a group can be considered as belonging to the group "other".
    
    give:
      groups: Admins,Moderators
        notitem: [26, 55, 59, 62, 63, 64, 68, 71, 74, 75, 83, 90, 93, 94]
        bedrock: [7]
        fluid: [8, 9, 10, 11]
      others-for-all: true
    
    playerlist:
      show-health: true
      show-coords: false
      show-world: true
    
    # If true, show the message of the day on login.
    show-motd: false
    
    time:
      format-24-hour: false
      show-ticks: true
    
    # This section is for if you want economy enabled. Currently the only accepted option is system,
    # which should be either None or iConomy.
    
    economy:
      system: None
      commands:
        timeset: 0
        heal: 0
        mobspawn: 0
        kit: 0
      items:
        351: 0
        276: 0
        # etc
    
    # The format that a chat message's first word must take for General to assume that the player
    # may be tagging another player. For example, if you set it to '@name', it will use Twitter-style
    # tagging. Tagging currently only means that the tagger will be informed if the player is away.
    tag-fmt: 'name:'
    Whats wrong?
     
  14. Offline

    Celtic Minstrel

    Did I put the wrong link in the opening post? You should be able to find it by clicking the "old versions" link, anyway.


    EDIT: Ah, I see what I did, I just copied the link for the normal versions and edited it, but I never put that version on Github like the rest.
     
  15. Offline

    Bruno Lanevik

    I got this error when I updated the plugin for my server.

    Code:
    :
    00:31:07 [SEVERE] [General-3.4b1] Full command string: [who]
    00:31:07 [SEVERE] java.lang.NoSuchMethodException: net.craftstars.general.command.info.whoCommand.<i
    nit>(net.craftstars.general.General)
    00:31:07 [SEVERE]       at java.lang.Class.getConstructor0(Class.java:2706)
    00:31:07 [SEVERE]       at java.lang.Class.getConstructor(Class.java:1657)
    00:31:07 [SEVERE]       at net.craftstars.general.General.onCommand(General.java:240)
    00:31:07 [SEVERE]       at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    00:31:07 [SEVERE]       at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    00:31:07 [SEVERE]       at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:27
    00:31:07 [SEVERE]       at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java
    
    So I checked the source code and found this.

    Reason?:
    Code:
        protected whoCommand(General instance) {
            super(instance);
        }
     
  16. Offline

    fimas

    You can inherit from a protected function, but you cannot instantiate it.

    I mean you can use it in a class that inherits, but you cannot use it to instantiate the class itself.

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

    Celtic Minstrel

    Eclipse stupidity. Redownload for the fix.


    @fimas – You can use a protected constructor to instantiate the class from a static function in the same class, so your statement isn't strictly accurate. :)
     
  18. Offline

    Ethan1991

    Code:
    14:48:56 [INFO] [General-0.0] Loaded.
    14:48:56 [WARNING] [General-3.3.3] The names section of items.yml is missing or
    invalid.
    14:48:56 [WARNING] [General-3.3.3] No aliases were defined in items.yml.
    14:48:56 [SEVERE] null loading General v3.3.3 (Is it up to date?)
    java.lang.NullPointerException
            at net.craftstars.general.items.Items.loadHooks(Items.java:137)
            at net.craftstars.general.items.Items.setup(Items.java:132)
            at net.craftstars.general.General.onEnable(General.java:117)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:127)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:632)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:218)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:116)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:94)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:217)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:204)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:144)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:259)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    Has this error been resolved? Because I can't figure it out.
     
  19. Offline

    cjc343

    Your items.yml file is probably corrupt. You should replace it.
     
  20. Offline

    Celtic Minstrel

    No, it has not been resolved because I have been unable to identify its cause, largely because I can't reproduce it myself and those who have experienced it have been unable to give me any useful information.

    Sorry.
     
  21. Offline

    Inarus

    Hi, what permissions system does this use? I read the config instructions and it listed "Basic" - is that just Minecraft's normal permissions and, if so, does that mean I do not need to install any other system?

    Basically: I set permissions to "Basic" and all permissions are now controlled by /OP <PlayerName> ?
     
  22. Offline

    DaddyCool64

    In the MOTD the +$ / &balance don't work. it shows me "0,"
     
  23. Offline

    effse7en

    I am getting the following error on my server:
    Code:
    2011-05-18 14:33:37 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:33:37 [SEVERE] [General-3.4b2] Full command string: [i door]
    2011-05-18 14:33:37 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:33:37 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:33:37 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:33:37 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:33:37 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:33:37 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:33:37 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:33:37 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:33:37 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:33:37 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:33:43 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:33:43 [SEVERE] [General-3.4b2] Full command string: [i door]
    2011-05-18 14:33:43 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:33:43 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:33:43 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:33:43 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:33:43 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:33:43 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:33:43 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:33:43 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:33:43 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:33:43 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:33:53 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:33:53 [SEVERE] [General-3.4b2] Full command string: [i cobblestone]
    2011-05-18 14:33:53 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:33:53 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:33:53 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:33:53 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:33:53 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:33:53 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:33:53 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:33:53 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:33:53 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:33:53 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:34:11 [INFO] <RogueWolfer> Yo Sean, there?
    2011-05-18 14:34:39 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:34:39 [SEVERE] [General-3.4b2] Full command string: [i seeds 64]
    2011-05-18 14:34:39 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:34:39 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:34:39 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:34:39 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:34:39 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:34:39 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:34:39 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:34:39 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:34:39 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:34:39 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:39:12 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:39:12 [SEVERE] [General-3.4b2] Full command string: [i seeds 64 roguewolfer]
    2011-05-18 14:39:12 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:39:12 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:39:12 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:39:12 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:39:12 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:39:12 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:39:12 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:39:12 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:39:12 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:39:12 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:39:56 [INFO] <RogueWolfer> t/i 395 200
    2011-05-18 14:40:19 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:40:19 [SEVERE] [General-3.4b2] Full command string: [i 295 200]
    2011-05-18 14:40:19 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:40:19 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:40:19 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:40:19 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:40:19 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:40:19 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:40:19 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:40:19 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:40:19 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:40:19 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:42:00 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:42:00 [SEVERE] [General-3.4b2] Full command string: [i 295]
    2011-05-18 14:42:00 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:42:00 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:42:00 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:42:00 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:42:00 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:42:00 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:42:00 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:42:00 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:42:00 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:42:00 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    2011-05-18 14:42:15 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 14:42:15 [SEVERE] [General-3.4b2] Full command string: [i seed]
    2011-05-18 14:42:15 [SEVERE] java.lang.NullPointerException
    2011-05-18 14:42:15 [SEVERE]     at java.util.ArrayList.toArray(ArrayList.java:303)
    2011-05-18 14:42:15 [SEVERE]     at net.craftstars.general.items.ItemID.canGive(ItemID.java:190)
    2011-05-18 14:42:15 [SEVERE]     at net.craftstars.general.command.inven.giveCommand.fromPlayer(giveCommand.java:93)
    2011-05-18 14:42:15 [SEVERE]     at net.craftstars.general.command.CommandBase.runCommand(CommandBase.java:23)
    2011-05-18 14:42:15 [SEVERE]     at net.craftstars.general.General.onCommand(General.java:241)
    2011-05-18 14:42:15 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-05-18 14:42:15 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:85)
    2011-05-18 14:42:15 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:278)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:682)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:645)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:639)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:32)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetworkManager.a(NetworkManager.java:196)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:372)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:287)
    2011-05-18 14:42:15 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
    
    This is running Bukkit 766 with all the latest versions of Permissions, WorldEdit, and World Guard. This happened whenever anyone tried to give themselves an item.
     
  24. Offline

    KazukiMutou


    Getting the exact same error. But I'm running CB 733.

    Code:
    2011-05-18 23:23:21 [SEVERE] [General-3.4b2] There was a big problem executing command [inven.give]! Please report this error!
    2011-05-18 23:23:21 [SEVERE] [General-3.4b2] Full command string: [i 1]
     
  25. Offline

    Celtic Minstrel

    That's correct. Set it to Permissions to use Permissions.

    What General version, and what economy plugin?

    Looks like that was an easy-to-fix problem; now uploading.
     
  26. Offline

    DaddyCool64

    Bukkit version - git-Bukkit-0.0.0-729-g5ee3f0f-b766jnks (MC: 1.5_02)
    General - 3.4b2
    iConomy - 5.01

    EDIT: same in General - 3.4b3
     
  27. Offline

    amunro

    same as me! It was working fine until a few days ago, the server crashed suddenly and the plugin broke. I have reinstalled, tried the beta version. It outputs how to use the command in chat, and posts severe errors in the console. Is this a problem with the plugin or our configuration?
     
  28. Offline

    Celtic Minstrel

    Try redownloading; I think I fixed that bug.

    Probably a stupid question, but the iConomy commands report a balance other than zero?

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

    DaddyCool64

    yes, it show me the correct money
     
  30. Offline

    Celtic Minstrel

    Apart from the iConomy problem, are there any more bugs in the 3.4 beta? If not, I'll probably officially release it no later than this weekend (and then 3.4.1 would be a 1.6 update soon afterwards).
     
  31. Offline

    NotoriousPyro

    Not sure if this has been covered before but can we get a complete permissions node listing?
     

Share This Page