Ascent Question/Error? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Ascent Question/Error?

    First off I'm running spartansp's repack. And what keeps happening and I'll extract the sql files into the database with Navicat 8, run the server which goes fine, then I'll add an item to myself. When I add the item then log off the item disappears, but it shows it as being equipped on the character selection page but you enter the realm and your naked. Anyone know why it keeps happening? All help is appreciated.

    Thanks,
    Coty

    Ascent Question/Error?
  2. #2
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have no idea, that happens to me to, if any1 could figure out a fix for that, it would be nice

  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)
    Thats exactly whats happening too me! lol weird...using spartansp's repack aswell..

  4. #4
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    actually it happens on alot of repacks, i have no idea why

  5. #5
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I asked him about it on MSN and he said its something with the database, he said I'm missing tables or something. Meaning he didn't include them in the repack? I'm not sure.. But I'd really like a fix o.O

  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)
    Make sure you got all the tables, check here Categoryatabase - Ascent Wiki I got all the tables,deleted chache folder. still doesnt work.. :S

  7. #7
    **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)
    Oh yes, sorry for double post but try this found it on ragezone..
    Code:
    USE `character`;change "character" to your database name
    
    CREATE TABLE `playeritems` (
      `ownerguid` int(10) unsigned NOT NULL DEFAULT '0',
      `guid` bigint(20) unsigned NOT NULL DEFAULT '0',
      `entry` int(10) unsigned 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) DEFAULT '0',
      `itemtext` int(10) unsigned NOT NULL DEFAULT '0',
      `durability` int(10) unsigned NOT NULL DEFAULT '0',
      `containerslot` int(11) 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,
      PRIMARY KEY (`guid`),
      UNIQUE KEY `guid` (`guid`),
      KEY `ownerguid` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    run into db

  8. #8
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by l33tnoob View Post
    Oh yes, sorry for double post but try this found it on ragezone..
    Code:
    USE `character`;change "character" to your database name
    
    CREATE TABLE `playeritems` (
      `ownerguid` int(10) unsigned NOT NULL DEFAULT '0',
      `guid` bigint(20) unsigned NOT NULL DEFAULT '0',
      `entry` int(10) unsigned 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) DEFAULT '0',
      `itemtext` int(10) unsigned NOT NULL DEFAULT '0',
      `durability` int(10) unsigned NOT NULL DEFAULT '0',
      `containerslot` int(11) 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,
      PRIMARY KEY (`guid`),
      UNIQUE KEY `guid` (`guid`),
      KEY `ownerguid` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    run into db
    Wait, so this is saying if I'm correct is to seperate the databases? And execute this command?

  9. #9
    **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)
    No, I think its just change the top bit
    USE `character`;
    character too ur db name e.g. ascent then under it copy that table, import into same db save as notepad like fix.sql or import into db in query.

  10. #10
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah.. Didn't work.

  11. #11
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    aww well, some one will find a way

  12. #12
    **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)
    Yeah, didnt work for me either, just going too use a diffrent repack, others work for me. Tried replacing the playeritems table aswell, but still nothing.. alot of ppl are talking about the ascent revs of it being the problem going too try a new rev too see if that works.

  13. #13
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm gonna try Rouslan's Repack, hope it works.

  14. #14
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if it woks send me a message and tell me

  15. #15
    Coty's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mk, will do I hope it works.

Page 1 of 2 12 LastLast

Similar Threads

  1. [REQUEST] Ascent.exe error
    By EmiloZ in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 11-22-2007, 11:10 AM
  2. [Question] ERROR #131 File Corrupt ... plz help
    By brutal in forum WoW ME Questions and Requests
    Replies: 16
    Last Post: 11-10-2007, 10:34 PM
  3. [Question] Error
    By kimbaland in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 10-14-2007, 03:42 PM
  4. Ascent Question
    By vanyali in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 09-24-2007, 08:33 PM
  5. Couple of Antrix/Ascent questions
    By stealthpyro in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 09-19-2007, 08:59 PM
All times are GMT -5. The time now is 02:22 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