Inactive [Inactive][FUN] NPCX + Civilizations! [1.8] Everquest style BOTS, paths, aggro, loot, guard, shops,.

Discussion in 'Inactive/Unsupported Plugins' started by mixxit, Mar 19, 2011.

  1. Offline

    mixxit

    npcx!
    Version: See thread title for bukkit compatibility (usually RB)
    Test Server: world.soliniaonline.com:25565

    [​IMG]

    Implements everquest style npc spawngroups using the npc library allowing you to make persistent npcs/rare npcs spawn around your map. Npcs will fight back if attacked and even talk on right click. They will sell items and can even have loot assigned and be given factions and paths to walk and npc trading

    Install / Changelog / Commands / README

    All of this has now moved to http://soliniaonlinemc.wordpress.com/2011/09/24/npcx/

    Addendum

    I will be updating NPCX in the future with a rewrite for 1.9 bot functionality
     
  2. Offline

    dev10us

    I figured as much... no problem though..

    If I can make a suggestion. Since there is no way to change the skin on the NPC can the ability to add armor/weapons be implemented, to get the custom name NPC's looking a bit different?

    Also adding the ability to have the NPC say something when approached.
     
  3. Offline

    Evan Melvin

    You need a mysql server.
     
  4. Offline

    mixxit

  5. Offline

    David McCahon

    kinda lame how when a npc kills you all items just dissapear and you cant get em back
     
  6. Offline

    moonjokes

    I have an npc set to have loot 10 of item 15 and when I kill him I only get 1 of the item and when I use the item it just disappears from my inventory without placing it or anything.
     
  7. Offline

    averad

    Maybe the NPC already traded all your loots to his friends =)
     
  8. Offline

    David McCahon

    Haha possibly, good thing it was only a diamond sword...
     
  9. Offline

    averad

    Lol, the NPC should be able to pick up your items and wear them. Then when you come back it should taunt you with your own gear =P
     
  10. Offline

    mixxit

    Adding equipment to npcs

    You will need to do an update in your properties file or alter the npc table manually with this query

    Code:
    ALTER TABLE `npcx`.`npc` ADD COLUMN `primary` INT(11) NULL  AFTER `loottable_id` , ADD COLUMN `helmet` INT(11) NULL  AFTER `primary` , ADD COLUMN `chest` INT(11) NULL  AFTER `helmet` , ADD COLUMN `legs` INT(11) NULL  AFTER `chest` , ADD COLUMN `boots` INT(11) NULL  AFTER `legs` ;
     
  11. Offline

    Novemberman

    will you ever have this plugin do the mysql auto ?
     
  12. Offline

    mixxit

    armour added, enjoy :D

    also added triggerword variable 'playername' (similar to how 'bankbalance' works)

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

    averad

    mixxit would it be possible to set it so if a npc kills a player it picks up the droped items and adds it to a temp loot table for that NPC instance only? There is a plugin that sucks in dropped items to a chest that code might be usable (I can ask the plugin dev he logs into my server).

    http://forums.bukkit.org/threads/mech-dropchest-v0-6-2-chests-that-suck-dropped-items-516.3835/

    If this is possible it would be funny if the NPC would wear the items droped if armor or a sword and if the player returns says things like:

    Hi <%player name> did you come back for <%item droped>
    Oh, <%player name> did you notice my new <%item droped>
    <%player name> does this <%item droped> make me look fat?

    =)
     
  14. Offline

    mixxit

    it would need mysql root access for that
     
  15. Offline

    Novemberman

    all other plugins work like this

    but my main problem is when i start the server i dont even get a npcx folder with the properties file in it .......
    if i had that i would change it to go with my current mysql files......
     
  16. Offline

    mixxit

    you need to to copy the mysql-connector-java-5.1.6-bin.jar into bukkit/libs

    added commands to create database and user in the instructions

    Code:
    ALTER TABLE `npcx`.`npc` CHANGE COLUMN `primary` `weapon` INT(11) NULL DEFAULT NULL  ;
    Fixed npc create, please run above statement or flush tables

    0.044 added

    /npcx npc list [searchword]
    /npcx spawngroup list [searchword]

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

    dev10us

    Dude that was quick, awesome.
     
  18. Offline

    mixxit

    tweaked the a shop a bit, it will now remember prices for item types and adjust its prices accordinly

    0.046
    * Changed shop to support item names like 'stone'

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

    Novemberman

    i already did that and still nothing.....
     
  20. Offline

    mixxit

    added shop list command
     
  21. Offline

    Nafds

    love how quick you are adding new options/fixing bugs!

    Keep up the great work!

    :)
     
  22. Offline

    mixxit

    the shop might be broke atm lol with the way the price climbs

    eugh fixed a balance check bug

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

    Nate204

    I'm going to look like "that guy" by saying this~

    But, any Idea on when walking NPC's will be working? Once we have a walking NPC (The first I've ever seen in MC) I will probably pee a little. I was just curious... =)

    Keep up the amazing work!!!
     
  24. Offline

    mixxit

    I was going to get as many features in as possible before working on the npcs pathing, thats needed so much for alot of things and it can be replaced pretty easily i think, just need to read into a good way of doing it

    New Changes
    Added 'npcattack' event to triggerword responses - If you setup a response for example: /npcx npc response add 1 default NPCATTACK then npc will only attack when spoken to

    Or a scenario like this:
    /npcx npc response add 1 default Dont call me an idiot
    /npcx npc response add 1 idiot NPCATTACK
     
  25. Offline

    Shadowlordz

    Oh man! I reallr really really need this awesome awesome awesome plugin, but I haven't got a CLUE how to do all the MySql stuff, and since I'm on a Mac, it makes it just that much harder. Could you please and SqLite support, because that would help a lot of newbs like me! Anyway, if you don't support SqLite, I will have to try to do the MySql but it won't be easy.
     
  26. Offline

    mixxit

    For new pathgroup changes
    Code:
    ALTER TABLE `npcx`.`spawngroup` ADD COLUMN `pathgroupid` INT(10) NULL  AFTER `pitch` ;
    Version 0.14
    * Added simple patrol paths to spawngroups
    Create a pathgroup container
    Code:
    /npcx pathgroup create Name
    then
    Code:
    /npcx pathgroup list
    to get the ID
    Stand where you want position 1 to be
    Code:
    /npcx pathgroup add PATHGROUPID POSITIONNO
    Stand where you want position 2 to be
    Code:
    /npcx pathgroup add PATHGROUPID POSITIONNO
    Then assign the path to a spawngroup
    Code:
    /npcx spawngroup pathgroup SPAWNGROUPID PATHGROUPID
    0.142 - Some pathing changes

    Leaving it at that for tonight

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

    Delodien

    Hey great plugin first of all, but I think I found a problem (or bug) when I create a spawngroup and add my guard NPC to it, it constantly respawns even while the guard is still alive. So I went off to do something and I ended up with about 20 guards, all stacked on top of each other. Is it supposed to do that?
     
  28. Offline

    mixxit

    that doesn't sound right - do you have any errors in your server.log?

    might be worth grabbing the latest version and clearing your database by removing the npcx folder in plugins
     
  29. Offline

    swedish2011

    Version 0.01
    Version 0.044
    Version 0.041
    Version 0.04
    Version 0.03
    Version 0.02
    Version 0.01 :eek:
     
  30. FIXED ---- Appears 10 or so restarts and it started to work.. very odd.
    This Plugin is great, and i hope it keeps getting better.

    Not sure what i'm doing wrong here. I have tested my MySQL connection and the user/pword are all set up correct.
    Still keep getting :
    Code:
    14:17:31 [INFO] npcx : initialising database connection
    14:17:31 [INFO] *****************************************
    14:17:31 [INFO] npcx : ERROR - Error during MySQL login
    14:17:31 [INFO] *****************************************
    
    
    Doesnt seem to be creating the npcx folder or properties in plugins.

    Any ideas?
     
  31. Offline

    Evan Melvin

    I get the following error whenever I try to create an npc now.

    Code:
    [WARNING] npcx: error: Unknown column 'weapon' in 'field list'[Ljava.lang.StackTraceElement;@135a92b
    2011-03-24 09:35:42 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'weapon' in 'field list'
    2011-03-24 09:35:42 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2011-03-24 09:35:42 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:35:42 [SEVERE]     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:35:42 [SEVERE]     at java.lang.reflect.Constructor.newInstance(Unknown Source)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.Util.getInstance(Util.java:382)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1986)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2140)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2626)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2111)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2407)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2325)
    2011-03-24 09:35:42 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2310)
    2011-03-24 09:35:42 [SEVERE]     at net.gamerservices.npcx.npcx.onCommand(npcx.java:2157)
    2011-03-24 09:35:42 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-03-24 09:35:42 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
    2011-03-24 09:35:42 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:229)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:645)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:608)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:602)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetworkManager.a(SourceFile:230)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:76)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:357)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
    2011-03-24 09:35:42 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-24 09:36:19 [WARNING] npcx: error: Unknown column 'weapon' in 'field list'[Ljava.lang.StackTraceElement;@8d241b
    2011-03-24 09:36:19 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'weapon' in 'field list'
    2011-03-24 09:36:19 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2011-03-24 09:36:19 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:36:19 [SEVERE]     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:36:19 [SEVERE]     at java.lang.reflect.Constructor.newInstance(Unknown Source)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.Util.getInstance(Util.java:382)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1986)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2140)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2626)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2111)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2407)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2325)
    2011-03-24 09:36:19 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2310)
    2011-03-24 09:36:19 [SEVERE]     at net.gamerservices.npcx.npcx.onCommand(npcx.java:2157)
    2011-03-24 09:36:19 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-03-24 09:36:19 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
    2011-03-24 09:36:19 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:229)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:645)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:608)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:602)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetworkManager.a(SourceFile:230)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:76)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:357)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
    2011-03-24 09:36:19 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-24 09:36:50 [WARNING] npcx: error: Unknown column 'weapon' in 'field list'[Ljava.lang.StackTraceElement;@18a92e7
    2011-03-24 09:36:50 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'weapon' in 'field list'
    2011-03-24 09:36:50 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2011-03-24 09:36:50 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:36:50 [SEVERE]     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:36:50 [SEVERE]     at java.lang.reflect.Constructor.newInstance(Unknown Source)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.Util.getInstance(Util.java:382)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1986)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2140)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2626)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2111)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2407)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2325)
    2011-03-24 09:36:50 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2310)
    2011-03-24 09:36:50 [SEVERE]     at net.gamerservices.npcx.npcx.onCommand(npcx.java:2157)
    2011-03-24 09:36:50 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-03-24 09:36:50 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
    2011-03-24 09:36:50 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:229)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:645)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:608)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:602)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetworkManager.a(SourceFile:230)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:76)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:357)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
    2011-03-24 09:36:50 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-24 09:37:07 [INFO] [MineQuest] 0 damage to Raznos
    2011-03-24 09:37:07 [INFO] [MineQuest] [INFO] Raznos - 30/43
    2011-03-24 09:37:10 [INFO] [MineQuest] 2 damage to Raznos
    2011-03-24 09:37:10 [INFO] [MineQuest] [INFO] Raznos - 28/43
    2011-03-24 09:37:11 [INFO] [MineQuest] 2 damage to Raznos
    2011-03-24 09:37:11 [INFO] [MineQuest] [INFO] Raznos - 26/43
    2011-03-24 09:37:12 [INFO] [MineQuest] 0 damage to Raznos
    2011-03-24 09:37:12 [INFO] [MineQuest] [INFO] Raznos - 26/43
    2011-03-24 09:37:12 [INFO] [MineQuest] 0 damage to Raznos
    2011-03-24 09:37:12 [INFO] [MineQuest] [INFO] Raznos - 26/43
    2011-03-24 09:37:32 [WARNING] npcx: error: Unknown column 'weapon' in 'field list'[Ljava.lang.StackTraceElement;@8436ec
    2011-03-24 09:37:32 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'weapon' in 'field list'
    2011-03-24 09:37:32 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2011-03-24 09:37:32 [SEVERE]     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:37:32 [SEVERE]     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    2011-03-24 09:37:32 [SEVERE]     at java.lang.reflect.Constructor.newInstance(Unknown Source)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.Util.getInstance(Util.java:382)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1986)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2140)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2626)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2111)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2407)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2325)
    2011-03-24 09:37:32 [SEVERE]     at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2310)
    2011-03-24 09:37:32 [SEVERE]     at net.gamerservices.npcx.npcx.onCommand(npcx.java:2157)
    2011-03-24 09:37:32 [SEVERE]     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    2011-03-24 09:37:32 [SEVERE]     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
    2011-03-24 09:37:32 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:229)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:645)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:608)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:602)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetworkManager.a(SourceFile:230)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:76)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:357)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
    2011-03-24 09:37:32 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-24 09:37:35
    Worked fine before I updated. CB 556.
     

Share This Page