I am using the latest ascent rev and using NCDB 2.4 DB and here are some pic's
+Rep if you are correct![]()
I am using the latest ascent rev and using NCDB 2.4 DB and here are some pic's
+Rep if you are correct![]()
ahhhh
Your Database's Arent Correct...or just press OK
Don't advertise in your signature.
Ok thanks any way.
ahhhh
Run this query to fix the first problem:
And for the second one, you could either delete to DLL or get a new core as the DLL's are broken on that one.Code:-- MySQL dump 10.11 -- -- Host: localhost Database: character -- ------------------------------------------------------ -- Server version 5.0.45-community-nt /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `playeritems_insert_queue` -- DROP TABLE IF EXISTS `playeritems_insert_queue`; CREATE TABLE `playeritems_insert_queue` ( `ownerguid` int(10) unsigned NOT NULL default '0', `entry` int(10) unsigned NOT NULL default '0', `wrapped_item_id` int(30) NOT NULL default '0', `wrapped_creator` int(30) NOT NULL default '0', `creator` int(10) unsigned NOT NULL default '0', `count` int(10) unsigned NOT NULL default '0', `charges` int(10) unsigned NOT NULL default '0', `flags` int(10) unsigned NOT NULL default '0', `randomprop` int(10) unsigned NOT NULL default '0', `randomsuffix` int(30) NOT NULL, `itemtext` int(10) unsigned NOT NULL default '0', `durability` int(10) unsigned NOT NULL default '0', `containerslot` int(11) NOT NULL default '-1' COMMENT 'couldnt find this being used in source', `slot` tinyint(4) NOT NULL default '0', `enchantments` longtext collate utf8_unicode_ci NOT NULL, KEY `ownerguid` (`ownerguid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `playeritems_insert_queue` -- LOCK TABLES `playeritems_insert_queue` WRITE; /*!40000 ALTER TABLE `playeritems_insert_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `playeritems_insert_queue` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2007-11-12 14:45:21
its really easy to solve both problems first you are missing a table in your database that is player_insert_queue that table can be inseted with a querry just copy and paste this in a notepad new info and execute the batch file in navicat and that should worknow for the other error just go into your scripts_bin folder and delete the .dll thats wrong i think in your case is serverstatuspluggin.dll but not sure just check wich .dll is not loading correct and delete it from your scripts_bin folderCode:-- MySQL dump 10.11 -- -- Host: localhost Database: character -- ------------------------------------------------------ -- Server version 5.0.45-community-nt /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `playeritems_insert_queue` -- DROP TABLE IF EXISTS `playeritems_insert_queue`; CREATE TABLE `playeritems_insert_queue` ( `ownerguid` int(10) unsigned NOT NULL default '0', `entry` int(10) unsigned NOT NULL default '0', `wrapped_item_id` int(30) NOT NULL default '0', `wrapped_creator` int(30) NOT NULL default '0', `creator` int(10) unsigned NOT NULL default '0', `count` int(10) unsigned NOT NULL default '0', `charges` int(10) unsigned NOT NULL default '0', `flags` int(10) unsigned NOT NULL default '0', `randomprop` int(10) unsigned NOT NULL default '0', `randomsuffix` int(30) NOT NULL, `itemtext` int(10) unsigned NOT NULL default '0', `durability` int(10) unsigned NOT NULL default '0', `containerslot` int(11) NOT NULL default '-1' COMMENT 'couldnt find this being used in source', `slot` tinyint(4) NOT NULL default '0', `enchantments` longtext collate utf8_unicode_ci NOT NULL, KEY `ownerguid` (`ownerguid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `playeritems_insert_queue` -- LOCK TABLES `playeritems_insert_queue` WRITE; /*!40000 ALTER TABLE `playeritems_insert_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `playeritems_insert_queue` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2007-11-12 14:45:21or recompile the ascent
i didnt know you posted that check the minutes of diference you posted yours 1 minute before me i was endindg typing when you already posted yours so dont blame me for not typing as fast as you
it was just an expression i mean that i didnt planned to copy what you put and you can easily check that i didnt copy that but whatever you want the fact is that we both helpo that guy out so why getting mad about that nonsence we must help others and be happy![]()