Jump to content

Diablox

Members
  • Posts

    182
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Diablox

  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.
  11. Maybe he is talking about Blood Prince Council. They are dead by default and they need a script to come to life.
  12. It looks like this discussion is pointless. Mangos team will not change the way they do and i hope they don't change (also the sheep will go berserk and kill all devs. We don't want that ). If they did then mangos will be same as every other project. And trinity will run out of things to do if mangos just accepts every single patch that show up on the forums. P.S. This is way offtopic
  13. Somehow i got from your post that you plan on slowly copying char from one account to another. Anyway i have the same thing on my server and its very simple current char owner just type in username of account where he wants to move the character and its done and ofc a simple log for GM's (you never now what can go wrong).
  14. Why do you want to copy char from one account to another? You just need to change one field in characters table...
  15. https://github.com/mangos/mangos/commit/735f5bf806a1bcb2284db4c8a9b0de6002cb0965
  16. screen -A -m -d -S MaNGOS ./mangos-worldd screen -A -m -d -S Realmd ./mangos-realmd
  17. If you have opcode in 4.0.1, it's very easy to convert it for 4.0.3. So there is some pattern in changes?
×
×
  • 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