Jump to content

Diablox

Members
  • Posts

    182
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

About Diablox

  • Birthday 01/01/1

Diablox's Achievements

Advanced Member

Advanced Member (3/3)

0

Reputation

  1. Is it even possible to compile mangos for ARM? I think it could work with grid unload if you can compile and run.
  2. What DB are you using? I think those names come from pet_name_generation table in mangos DB (correct me if I'm wrong).
  3. I prefer no.2 in all cases. It's easy to read (i write queries that way).
  4. https://github.com/mangos/mangos The link is a few lines above your question
  5. You didn't give a much info on what exactly should PHP script do. Just insert data in MySQL? Does it need to check if the username is free? Any other checks launcher didn't do? Link with GET requests should look like ?foo=something&bar=somethingElse http://12.34.56.789/launcher/register.php?username=USERNAME&password=PASSWORT&email=EMAIL
  6. I don't see a reason to turn autocommit off. @antiroot Do you use CharDelete.Method = 1? Just curios.
  7. --includedir=/home/necroshroom/mangos/dep/include Why do you need this?
  8. Here is alternative way to delete old accounts DELETE FROM `realmd`.`account` WHERE DATE_SUB(CURDATE(),INTERVAL 365 DAY) > `last_login`; On the first look at your character_* query's you should do this one DELETE FROM `character_social` WHERE `friend` NOT IN( SELECT `guid` FROM `characters` ); Yours item delete query is very slow (at least for me). This is my version CREATE TABLE `tmp_table` ( `guid` bigint unsigned NOT NULL, PRIMARY KEY (`guid`) ) ENGINE=InnoDB; REPLACE INTO `tmp_table` SELECT `item` FROM `character_inventory`; REPLACE INTO `tmp_table` SELECT `itemguid` FROM `auction`; REPLACE INTO `tmp_table` SELECT `item_guid` FROM `guild_bank_item`; REPLACE INTO `tmp_table` SELECT `item_guid` FROM `mail_items`; REPLACE INTO `tmp_table` SELECT `item_guid` FROM `character_gifts`; DELETE FROM `item_instance` WHERE `guid` NOT IN( SELECT `guid` FROM `tmp_table` ); DROP TABLE IF EXISTS `tmp_table`;
  9. Try reading the whole post not just parts...
  10. Mobs should respawn in inactive grids.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use