[Help] GRR... always error with ascent.exe menu

Shout-Out

User Tag List

Results 1 to 8 of 8
  1. #1
    LordJedi's Avatar Member
    Reputation
    20
    Join Date
    Dec 2007
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Help] GRR... always error with ascent.exe

    pls help me for that error i executed some sql files but i tryed the other database too (sry about my english )


    [Help] GRR... always error with ascent.exe
  2. #2
    Clain's Avatar Banned
    Reputation
    179
    Join Date
    Jan 2008
    Posts
    1,396
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Get the structure for the tables item_randomprop_groups and item_randomsuffix_groups. I can't get you the structure for the tables atm

  3. #3
    **Sweeny**'s Avatar Member
    Reputation
    33
    Join Date
    Dec 2007
    Posts
    282
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Have you tried using other repacks/databases or just that one?

  4. #4
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Save this code as an SQL file then execute it into your world database, and it should work fine.

    Code:
    -- MySQL dump 10.13
    --
    -- Host: localhost    Database: world
    -- ------------------------------------------------------
    -- Server version 5.1.22-rc-community
    /*!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 `item_randomsuffix_groups`
    --
    DROP TABLE IF EXISTS `item_randomsuffix_groups`;
    SET @saved_cs_client     = @@character_set_client;
    SET character_set_client = utf8;
    CREATE TABLE `item_randomsuffix_groups` (
      `entry_id` int(30) NOT NULL,
      `randomsuffix_entryid` int(30) NOT NULL,
      `chance` float NOT NULL,
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    SET character_set_client = @saved_cs_client;
    --
    -- Dumping data for table `item_randomsuffix_groups`
    --
    LOCK TABLES `item_randomsuffix_groups` WRITE;
    /*!40000 ALTER TABLE `item_randomsuffix_groups` DISABLE KEYS */;
    /*!40000 ALTER TABLE `item_randomsuffix_groups` 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-10-14 22:28:52
     
    -- MySQL dump 10.13
    --
    -- Host: localhost    Database: world
    -- ------------------------------------------------------
    -- Server version 5.1.22-rc-community
    /*!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 `item_randomprop_groups`
    --
    DROP TABLE IF EXISTS `item_randomprop_groups`;
    SET @saved_cs_client     = @@character_set_client;
    SET character_set_client = utf8;
    CREATE TABLE `item_randomprop_groups` (
      `entry_id` int(30) NOT NULL,
      `randomprops_entryid` int(30) NOT NULL,
      `chance` float NOT NULL,
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    SET character_set_client = @saved_cs_client;
    --
    -- Dumping data for table `item_randomprop_groups`
    --
    LOCK TABLES `item_randomprop_groups` WRITE;
    /*!40000 ALTER TABLE `item_randomprop_groups` DISABLE KEYS */;
    /*!40000 ALTER TABLE `item_randomprop_groups` 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-10-14 22:29:04
    Life Puzzler WoW - Website | Forums

  5. #5
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try using other repacks Spartansp Repack V3 is already been released BTW :P

  6. #6
    **Sweeny**'s Avatar Member
    Reputation
    33
    Join Date
    Dec 2007
    Posts
    282
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    soz for double post but here are the tables

    Code:
     
    CREATE TABLE `item_randomprop_groups` (  `entry_id` int(30) NOT NULL,  `randomprops_entryid` int(30) NOT NULL,  `chance` float NOT NULL,  PRIMARY KEY  (`entry_id`,`randomprops_entryid`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
    Code:
     
    CREATE TABLE `item_randomsuffix_groups` (  `entry_id` int(30) NOT NULL,  `randomsuffix_entryid` int(30) NOT NULL,  `chance` float NOT NULL,  PRIMARY KEY  (`entry_id`,`randomsuffix_entryid`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Item System';

  7. #7
    LordJedi's Avatar Member
    Reputation
    20
    Join Date
    Dec 2007
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Save this code as an SQL file then execute it into your world database, and it should work fine.


    Code:
    -- MySQL dump 10.13---- Host: localhost Database: world-- -------------------------------------------------------- Server version 5.1.22-rc-community/*!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 `item_randomsuffix_groups`--DROP TABLE IF EXISTS `item_randomsuffix_groups`;SET @saved_cs_client = @@character_set_client;SET character_set_client = utf8;CREATE TABLE `item_randomsuffix_groups` ( `entry_id` int(30) NOT NULL, `randomsuffix_entryid` int(30) NOT NULL, `chance` float NOT NULL,) ENGINE=MyISAM DEFAULT CHARSET=latin1;SET character_set_client = @saved_cs_client;---- Dumping data for table `item_randomsuffix_groups`--LOCK TABLES `item_randomsuffix_groups` WRITE;/*!40000 ALTER TABLE `item_randomsuffix_groups` DISABLE KEYS */;/*!40000 ALTER TABLE `item_randomsuffix_groups` 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-10-14 22:28:52 -- MySQL dump 10.13---- Host: localhost Database: world-- -------------------------------------------------------- Server version 5.1.22-rc-community/*!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 `item_randomprop_groups`--DROP TABLE IF EXISTS `item_randomprop_groups`;SET @saved_cs_client = @@character_set_client;SET character_set_client = utf8;CREATE TABLE `item_randomprop_groups` ( `entry_id` int(30) NOT NULL, `randomprops_entryid` int(30) NOT NULL, `chance` float NOT NULL,) ENGINE=MyISAM DEFAULT CHARSET=latin1;SET character_set_client = @saved_cs_client;---- Dumping data for table `item_randomprop_groups`--LOCK TABLES `item_randomprop_groups` WRITE;/*!40000 ALTER TABLE `item_randomprop_groups` DISABLE KEYS */;/*!40000 ALTER TABLE `item_randomprop_groups` 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-10-14 22:29:04
    i tryed but it says...


  8. #8
    LordJedi's Avatar Member
    Reputation
    20
    Join Date
    Dec 2007
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    soz for double post but here are the tables


    Code:
    CREATE TABLE `item_randomprop_groups` ( `entry_id` int(30) NOT NULL, `randomprops_entryid` int(30) NOT NULL, `chance` float NOT NULL, PRIMARY KEY (`entry_id`,`randomprops_entryid`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
    Code:
    CREATE TABLE `item_randomsuffix_groups` ( `entry_id` int(30) NOT NULL, `randomsuffix_entryid` int(30) NOT NULL, `chance` float NOT NULL, PRIMARY KEY (`entry_id`,`randomsuffix_entryid`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Item System';
    YEAH!!!!!! Dude thx +repu yeah ty

Similar Threads

  1. [Help] Really Weird Error with arcemu-world.exe..?
    By FrozenWoW 01 in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 08-16-2008, 06:27 PM
  2. Need help! got problem with Ascent.exe will +rep :P
    By Anthraxx in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 01-26-2008, 10:12 AM
  3. [Help] Wired error in ascent.exe
    By kanqaz in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 01-06-2008, 12:36 PM
  4. Need help with ascent.exe
    By aznboy in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 01-04-2008, 07:45 PM
  5. [HELP] Omega Wierd Error On Ascent
    By Xevio in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 12-08-2007, 07:43 AM
All times are GMT -5. The time now is 08:36 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search