Hello & Welcome to our community. Is this your first visit? Register
Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Likes Likes:  0
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
    Post Thanks / Like
    Rep Power
    15
    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






    › See More: [Release] TRM's Cthulhu Ftagn Dual-Database MaNGOS Repack (3.3.5.12340) - 32 & 64-bit



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #12
    Sergeant
    agamoose's Avatar
    Join Date
    Jan 2010
    Posts
    52
    Post Thanks / Like
    Rep Power
    15
    Reputation
    31
    Nice work again TRM as always Also loving the new Panoramic Views.

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

  5. #14
    Beginner

    Join Date
    Aug 2010
    Posts
    1
    Post Thanks / Like
    Rep Power
    14
    Reputation
    3
    TRM excellent work as always. Your a friggen genius man

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

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

  8. #17
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Post Thanks / Like
    Rep Power
    20
    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 09:01 PM.

  9. #18
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Post Thanks / Like
    Rep Power
    15
    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 10:46 PM.
    The 43-inch man

  10. #19
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Post Thanks / Like
    Rep Power
    20
    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

  11. #20
    First Sergeant
    ZomgEary's Avatar
    Join Date
    Jan 2010
    Location
    Houston, TX
    Posts
    182
    Post Thanks / Like
    Rep Power
    16
    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

Visitors found this page by searching for:

hobbits

quice

mangos 3.3.5 repack

mangos repack 3.3.5

how to make server wow 3.5.5 level 255

cthulhu patch

3.3.5 mangos repack

patcher 64 bit descargar

gorkun ironskull

sholazar basin

warcraft sholazar basin background

ulduar

TRMs Cthulhu Ftagn Dual-Database MaNGOS Repackmangos 3.3.5.12340mangos 3.3.5a linux repackAHbotrepack 3.3.5 trinity mimirion train trinitycorehobbits lord of the ringsmangos repack 3.3.5aMANGO CTHULHU 123dual-database-mangos-repack-3-3-5-12340-32-64-bit-4286index100wow repack the culling of stratholme trm releasedescargar arcemu 3.1.3 wow megaupload255 lvl wow repack 3.3.5agithub trinity 71603booty bay wallpaperdual wallpaper windows 7TRMs Cthulhu Ftagn infinity mangos repackrepack trinity 3.3.5 debugwow repack linuxrepack 3.3.5 a mangos fullmangos 3.5.5 repacktrinity 3.3.5a linux repack3.3.5a linux repackDownload MaNGOS Repack 3.3.5TRMs Cthulhu Ftagn RepackMangos 3.3.5 databasewow 3.3.5a 255 repackcthulhuRepack Ver.1.27-Client 3.3.5a (12340)ragnaros lairforge of souls questwow repack 3.3.5a 255lvlhackear wow 3.3.5 con parche customno-ip.org dnssearch zonealarmlotr hobbitswow 3.3.5 mangos repack 32 bit server
SEO Blog

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 05:51 PM.
Powered by vBulletin® Copyright ©2000-2024, Jelsoft Enterprises Ltd.
See More links by ForumSetup.net. Feedback Buttons provided by Advanced Post Thanks / Like (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
vBulletin Licensed to: MMOPro.org