Jump to content

Patman128

Members
  • Posts

    1090
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Patman128

  1. Use that UDB, apply the update packs, and then apply any remaining mangos updates, and you can use the latest mangos core.
  2. ...why are you using that?
  3. I recommend phpMyAdmin. Probably the best MySQL DB editor, completely portable (runs under PHP), and free and open source.
  4. Modified cores/repacks are not supported by mangos. Please read the guides here on compiling and installing.
  5. GM Island is not a map, it is just a part of the Kalimdor map. You can't instanciate it unless you used some sort of map editor.
  6. You can find DB documentation here: http://udbwiki.webhop.net/index.php/Main_Page Mangos core and script API is mostly undocumented and changes frequently.
  7. You can use "git pull git://github.com/xeross/mangos.git ahbot" to pull it into any branch of mangos (like mangos master) but please be aware that there will probably be conflicts you will have to merge and you are basically on your own until he updates it.
  8. You need to run the assembler after like "vmap_assembler.exe buildings vmaps" to make the vmaps.
  9. Change your name, be one of their developers, copy their source code, then leave and never speak to them again.
  10. The 930 supports triple-channel RAM, so if you are going for that it's definitely a nice bonus. The Phenom II X6 is a 6 core CPU, but the 930 could probably outperform it at individual tasks.
  11. Use screen, and don't use root when you don't have to.
  12. The problem was that with that particular SQL update, if you look at it, the third query is "UPDATE auctionhouse, mangos.creature AS c, mangos.creature_template AS ct..." If your world DB isn't specifically named "mangos", this query and the rest of the update will fail. However, since this is after the "ALTER TABLE character_db_version CHANGE COLUMN required_..." part, mangos will still run fine. To fix it, I just copied the update into the phpMyAdmin SQL tab, removed the first query and the second query (because these parts had already been run) and just changed "mangos" to the name of my world DB. Ran and worked fine. @ Mangos developers: the next time you need to make an assumption like this in a SQL update, can you please check that the other DB is named what it is assumed to be? Or at the very least, use a SQL transaction so when it fails it doesn't leave the DB in a state of half-update.
  13. SpellAuraHolder, as far as I can tell, is just a class that encapsulates all auras on a player by a certain spell ID, including all stacks of it. Because spells can actually have up to 3 auras, this makes it a lot easier to store and access them.
  14. Post the code and the error then and we can try to help you out.
  15. He just told you everything you need to know, now go do it.
  16. Patman128

    Time function

    http://www.cplusplus.com/reference/clibrary/ctime/ time(NULL) is just the number of seconds since the UNIX epoch (12:00 AM Jan 1st 1970) Using time.h, you can do something like: time_t timestamp; time(&timestamp); tm* timeinfo; timeinfo = localtime(&timestamp); timeinfo->tm_sec = 0; timeinfo->tm_min = 0; timeinfo->tm_hour = 15; timestamp = mktime(timeinfo);
  17. Patman128

    Quest failed?

    You can change the quest fail handling code in mangos core (like in void Player::FailQuest(uint32 questId)) or do a workaround, like a creature that scans for players around it every few seconds and checks if they failed it and teleports them if they did.
  18. WSG, AB, AV and EotS work fine for me. The WotLK stuff doesn't work because they aren't implemented yet.
  19. I haven't had any problems.
  20. Sorry, what do you want exactly?
  21. It should probably be coded into the School Damage effect function in SpellEffects.cpp.
  22. It would really depend on the spell.
  23. It should totally be a machinima
  24. Recompile/reinstall mangos?
  25. .additem #id -1
×
×
  • 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