Jump to content

DasBlub

Members
  • Posts

    450
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by DasBlub

  1. @tali: wow-masters has been banned (see that "Law breaker"), so i guess you won't get much help from him...
  2. i am currently rewriting no_char_delete: http://github.com/DasBlub/mangos/commits/no_char_delete the base functionality (everything which existed in the old patch) is done, i'm now implementing commands (for the console & ingame). i'm doing the rewrite on the master branch and will then backport the changes to 0.12 (which should then also be usable on mangoszero). the following commands will be supported: .character deleted list {$name | $guid} .character deleted restore {$name | $guid} .character deleted delete {$name | $guid} the list command is already implemented (but only with $name as search possibility, not with $guid), the others will be implemented *soon*.
  3. those warnings are all from 3rd party libraries (ACE) and therefore won't be fixed by the mangos team. furthermore they don't matter, the build works fine
  4. but AggressorAI is a derivate of CreatureAI, so wouldn't it then be a problem of all AI's ?
  5. for most, soap is still this: http://en.wikipedia.org/wiki/Soap
  6. actually, they were fast... soon after i asked they added the error message so that there's no graph which does not stop loading
  7. i poked them several time in their irc channel. their response was something like they'll look at it 'soon'...
  8. when you're already on it, you could also add this one too http://www.wowpanda.net/info/powered it's better to see dbc data (has a 'raw data' view)
  9. you can do this, to get gcc 4.2: apt-get install gcc-4.2 and then to compile with gcc 4.2 you have to set the variable CC: export CC=gcc-4.2 make -j4 i'm not sure if you already have to set the variable before configure... you'll need to test it. -- DasBlub
  10. - public servers are illegal - modifying the client (i assume it's that, what you mean with your 'patch') is illegal too so i guess, you won't find any answer here.
  11. @alein: http://www.scriptdev2.com/error-patch-failed-t5166.html
  12. yes, it does exclude also SD2 from git. but you still need the patch from SD2 because it adds SD2 to the makefile.
  13. What bug does the patch fix? What features does the patch add? This patch modifies the .gitignore file to exclude all script libraries from the git repo except the 'universal' library. that way, you'll never have the problem, that you could accidentally add a scriptlib with 'git add .' Note: This will affect the mangos-patch from SD2, as this patch already adds the SD2 dir to this .gitignore file (this part of the SD2 patch will no longer be needed after applying this patch here). For which repository revision was the patch created? 9368 Who has been writing this patch? Please include either forum user names or email addresses. me Patch http://paste2.org/p/680755
  14. you can't select over two databases as it isn't guaranteed that they're running on the same host / the same mysql daemon and that the db-user has enough rights on both db's.
  15. you can't. the table is only being loaded at startup, so you have to stop mangos, insert mails into the db and then start mangos again. or you can search through the forum, i think there once was a patch which added another table and then from time to time loaded all mails from that table. -- DasBlub
  16. did you download it with the git commands posted above? if so, you'll be on the mangos-0.12 branch. this branch has no linear backports, so it might be, that after rev. 9050 there might be 8030 and then 9170 (just taken random numbers!).
  17. DasBlub

    Datetime

    here you'll find all informations: http://cplusplus.com/reference/clibrary/ctime/
  18. the time it'd take you to do a refactoring in the mangos code and make it work again is too much. in that time you could as well rewrite the whole code (ofc taking the informations from the other one). and anyone can add documentation. you can just add doxygen comments to the code and submit it as a patch. i'm sure, it'll be accepted if it's correct -- DasBlub
  19. you mean doxygen as said before, code should be self-describing. but still, code documentation would be good. i would suggest to add doxygen to MaNGOS (actually, there is already a config file in /doc/). maybe also a crontab which automatically creates the doxygen and uploads it to getmangos.eu ? -- DasBlub
  20. uhm... no o_O just take my above query and remove the mail_id from the select: SELECT mi.id FROM mail_item mi ,mail m WHERE mi.mail_id = m.id AND mail.account = "<whatever account>" ;
  21. sub-selects are pretty bad for the performance SELECT mi.mail_id ,mi.id FROM mail_item mi ,mail m WHERE mi.mail_id = m.id AND mail.account = "<whatever account>" ;
  22. if you want that, you can get a table like 'mail_id, mail_item_id' with a query like this (just pseudo code, you need to adopt it to the mangos db): SELECT m.id ,mi.id FROM mail m ,mail_item mi WHERE mi.mail_id = m.id ;
  23. DasBlub

    Crash

    please post the whole crashlog...
×
×
  • 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