Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Page 2 of 112 FirstFirst 12345612175272102 ... LastLast
Results 11 to 20 of 1117
  1. #11
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Rep Power
    17
    Reputation
    39

    Register to remove this ad
    DO NOT CONTINUE UNTIL YOU HAVE THE SERVER FOLDER DIRECTLY UNDER THE C:\ DRIVE!!!
    Well there are a lot of people complaining how their MySQL won't start, well guys you heard the man !

    TRM tell 'em !!! xD


  2. #12
    Sergeant
    agamoose's Avatar
    Join Date
    Jan 2010
    Posts
    52
    Rep Power
    17
    Reputation
    31
    Nice work again TRM as always Also loving the new Panoramic Views.

  3. #13
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Rep Power
    17
    Reputation
    39
    For some reason I can't download this ... :/

  4. #14
    Beginner

    Join Date
    Aug 2010
    Posts
    1
    Rep Power
    16
    Reputation
    3
    TRM excellent work as always. Your a friggen genius man

  5. #15
    First Sergeant
    ZomgEary's Avatar
    Join Date
    Jan 2010
    Location
    Houston, TX
    Posts
    182
    Rep Power
    18
    Reputation
    83
    Good to see you're doing well TRM Glad to see you've released a new repack.

  6. #16
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Rep Power
    17
    Reputation
    39
    Mangosd won't load if vmaps are enabled, any ideas why is this happening ?

  7. #17
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Rep Power
    22
    Reputation
    397

    Thumbs up

    Quote Originally Posted by marko94 View Post
    Mangosd won't load if vmaps are enabled, any ideas why is this happening ?
    Did you extract the vmaps? Here's the newest extractor for them, place the extracted files from it in your World of Warcraft/Data/enUS folder then double-click the makevmaps_SIMPLE.bat file

    vmap_extract_assembler_bin.zip (267.84 KB)

    Then make sure the lines in your mangosd.conf file look like this:
    Code:
    vmap.enableLOS = 1
    vmap.enableHeight = 1
    ...
    DetectPosCollision = 1
    Tested and works great...



    Quote Originally Posted by GrandpaJohn View Post
    characters version, required_10051_01
    realmd version, required_10008_01
    Your realmd database is good, execute this code into your characters db:

    Code:
    ALTER TABLE character_db_version CHANGE COLUMN required_10051_01_characters_character_aura required_10156_01_characters_character_aura bit;
    
    DELETE FROM `character_aura`;
    ALTER TABLE `character_aura`
        DROP COLUMN `effect_index`, DROP COLUMN `amount`, DROP COLUMN `maxduration`, DROP COLUMN `remaintime`;
    ALTER TABLE `character_aura`
        ADD COLUMN `basepoints0` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `basepoints1` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `basepoints2` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration0` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration1` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration2` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `remaintime0` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `remaintime1` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `remaintime2` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `effIndexMask` INT(11) NOT NULL DEFAULT '0';
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10156_01_characters_character_aura required_10156_02_characters_pet_aura bit;
    
    DELETE FROM `pet_aura`;
    ALTER TABLE `pet_aura`
        DROP COLUMN `effect_index`, DROP COLUMN `amount`, DROP COLUMN `maxduration`, DROP COLUMN `remaintime`;
    ALTER TABLE `pet_aura`
        ADD COLUMN `basepoints0` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `basepoints1` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `basepoints2` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration0` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration1` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `maxduration2` INT(11) NOT NULL DEFAULT '0', 
        ADD COLUMN `remaintime0` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `remaintime1` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `remaintime2` INT(11) NOT NULL DEFAULT '0',
        ADD COLUMN `effIndexMask` INT(11) NOT NULL DEFAULT '0';
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10156_02_characters_pet_aura required_10160_01_characters_character_aura bit;
    
    alter table `character_aura` drop primary key;
    alter table `character_aura` add primary key (`guid`,`spell`);
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10160_01_characters_character_aura required_10160_02_characters_pet_aura bit;
    
    alter table `pet_aura` drop primary key;
    alter table `pet_aura` add primary key (`guid`,`spell`);
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10160_02_characters_pet_aura required_10254_01_characters_auctionhouse bit;
    
    ALTER TABLE auctionhouse
      ADD COLUMN houseid int(11) unsigned NOT NULL default '0' AFTER id;
    
    UPDATE auctionhouse, mangos.creature AS c, mangos.creature_template AS ct
      SET houseid = 
        CASE ct.faction_A
          WHEN   12 THEN 1 /* human                                  */
          WHEN   29 THEN 6 /* orc, and generic for horde             */
          WHEN   55 THEN 2 /* dwarf/gnome, and generic for alliance  */
          WHEN   68 THEN 4 /* undead                                 */
          WHEN   80 THEN 3 /* n-elf                                  */
          WHEN  104 THEN 5 /* trolls                                 */
          WHEN  120 THEN 7 /* booty bay, neutral                     */
          WHEN  474 THEN 7 /* gadgetzan, neutral                     */
          WHEN  534 THEN 2 /* Alliance Generic                       */
          WHEN  855 THEN 7 /* everlook, neutral                      */
          WHEN 1604 THEN 6 /* b-elfs,                                */
          WHEN 1638 THEN 2 /* exodar, alliance                       */
          ELSE 0           /* auction will canceled at loading       */
        END
      WHERE auctionhouse.auctioneerguid = c.guid AND c.id = ct.entry;
    
    
    ALTER TABLE auctionhouse
      DROP COLUMN auctioneerguid;
    
    DROP TABLE IF EXISTS auction;
    RENAME TABLE auctionhouse TO auction;
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10254_01_characters_auctionhouse required_10312_01_characters_character_aura bit;
    
    ALTER TABLE `character_aura` DROP PRIMARY KEY;
    ALTER TABLE `character_aura` ADD PRIMARY KEY (`guid`,`caster_guid`,`spell`);
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10312_01_characters_character_aura required_10312_02_characters_pet_aura bit;
    
    ALTER TABLE `pet_aura` DROP PRIMARY KEY;
    ALTER TABLE `pet_aura` ADD PRIMARY KEY (`guid`,`caster_guid`,`spell`);
    
    ALTER TABLE character_db_version CHANGE COLUMN required_10312_02_characters_pet_aura required_10332_01_characters_character_aura bit;
    
    ALTER TABLE `character_aura`
      ADD COLUMN `item_guid` int(11) unsigned NOT NULL default '0' AFTER `caster_guid`,
      DROP PRIMARY KEY,
      ADD PRIMARY KEY (`guid`,`caster_guid`,`item_guid`,`spell`);
      
    ALTER TABLE character_db_version CHANGE COLUMN required_10332_01_characters_character_aura required_10332_02_characters_pet_aura bit;
    
    ALTER TABLE `pet_aura`
      ADD COLUMN `item_guid` int(11) unsigned NOT NULL default '0' AFTER `caster_guid`,
      DROP PRIMARY KEY,
      ADD PRIMARY KEY (`guid`,`caster_guid`,`item_guid`,`spell`);
    Last edited by CthulhuFtagn; 11-08-10 at 10:01 PM.

  8. #18
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Rep Power
    17
    Reputation
    39
    Did you extract the vmaps? Here's the newest extractor for them, place the extracted files from it in your World of Warcraft/Data/enUS folder then double-click the makevmaps_SIMPLE.bat file
    Yeah I deleted the old ones and used vmap extractor from this repack to create a new ones and again it didn't worked, so I'm gonna try this latest extractor you suggested and I hope to see progress.

    Anyways thx for reply.

    EDIT: I just extracted vMaps with this new extractor and everything works perfectly, thanks m8!
    Last edited by marko94; 11-08-10 at 11:46 PM.
    The 43-inch man

  9. #19
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Rep Power
    22
    Reputation
    397
    Oh, good... I added the new extractor link to the first post, I think the one I included WITH the repack was from 3.3.3a

  10. #20
    First Sergeant
    ZomgEary's Avatar
    Join Date
    Jan 2010
    Location
    Houston, TX
    Posts
    182
    Rep Power
    18
    Reputation
    83

    Register to remove this ad
    Yeah I had run into the same error that marko encountered, glad to see it was fixed before all the spam about it...even though there will be spam anyways..

 

 
Page 2 of 112 FirstFirst 12345612175272102 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 06:43 PM.
Powered by vBulletin® Copyright ©2000-2026, Jelsoft Enterprises Ltd.
vBulletin Licensed to: MMOPro.org
vBulletin Skin By: PurevB.com