Jump to content

lillecarl

Members
  • Posts

    893
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Everything posted by lillecarl

  1. [url]https://github.com/Lillecarl/mangos-tbc/commit/60f637356abf6bca387928f9e6f49187311b9c50[/url] Needs testing.
  2. Luda, this should only be standard for tables containing names, else mysql will run heavier
  3. Yeah, create something like a scriptdev wiki with in mangos wiki, and put udb wiki inside as well. Also maintaining a FAQ would be awesome.
  4. Why just a cata wiki? We should have a centralized wiki, if theluda creates this i will start writing
  5. So you mean account_access is about to get implemented in mangos? ^^, (This is what i reflected most about, hehe)
  6. I think it is a good question to ask here, who cares about if its offtopic, as its still on the mangos topic! And i think it would be retarded to separate wikis, i think we should stick with mangos/server as wiki location (unless theloda has something to say about that) Because it would just take wikipeoples time to copypaste everything all around. Client specific posts sure could be created on one/zero (and liked from master) To make things as clean as possible
  7. What do you mean by if i find? =) This tool takes mediawiki parsed code and converts to markdown If theluda could give us a database dumb of the wiki it would be really easy
  8. im glad this was finally made official, but it will take awhile until people actually join ^^,
  9. MaNGOS cataclysm is still under heavy development, if you cannot figure out how to compile it by yourself i strongly recommend you to search somewhere else for a cataclysm core. I think support can only be given to zero,one,two at the moment. Cataclysm is still very premature as i said. Good luck
  10. I think the repo names should not have the name "server" they should be named like this (in my opinion not forcing nayone hehe) Zero-Server Zero-Scripts Zero-Database One-Server One-Scripts One-Database Two-Server Two-Scripts Two-Database Three-Server Three-Scripts Three-Database Four-Server Four-Scripts Four-Database But in lowercase as stfx said, because if you are lazy and have github for windows installed and press clone in windows you might still want to clone all mangos repos, but then they collide with eachother ^^, And Salja, are you guys sure that the github wiki will be used? Because then i can start by writing off a guide on how to compile mangos on windows (and maby i can learn how to install database and shiz, hehe)
  11. Idd Zero 1.12 One 2.4.3 Two 3.3.5 Three 4.X.X Four 5.X.X
  12. Why are you not a part of mangos team? You really are good!
  13. Rumpa = Butt, just to go offtopic a lil. And you must use DBC extractor from mangos repo with correct wow version, AND that y our client isnt broken Thanks for the reply... and yes, ad.exe is from the last retrieved repo. Client is also working as its fine with the current old MaNGOS installation from last year that I got. Do you have multiple wow clients on your computer? Happened me once that i had to specify correct wow patv, because 243 extractor tried to extract 335 data.. Otherwise im really not sure!
  14. Rumpa = Butt, just to go offtopic a lil. And you must use DBC extractor from mangos repo with correct wow version, AND that y our client isnt broken
  15. Do not import with a database gateway! Then it will hung up since of the big queries, use mysql -u root -p mangos < mangos.sql If you want to merge all tables to one in linux use: cat *.sql > merged.sql windows: cp *.sql merged.sql then mysql -u root -p mangos < merged.sql (mangos is database name) Regards
  16. Something that would be heavily appreciated by me, would be creating branches for 2.4.3 and 1.12 =) (I could possibly work on scaling to 2.4.3 struct ) Depends on what language its written in tho =)
  17. Yeah, well this is far out of my knowledge! Im sorry but im just fascinated that you managed to get it as far as you have =)
  18. Wow, that is really cool! You and R2 team must be geniuses, would be really cool to have a real arena mate bot
  19. Just how smart are the bots? If we say you PvP With them, are they useless or are they somewhat ok? I guess (except for movement) it should be quite easy to write 1v1 AI that kicks everyones ass ;P (Lets say a rogue that will kick all attacks it should kick etc...)
  20. You should not use cmake on windows. just open the .sln file inside the win folder
  21. If noone answers noone can/want to help you with your issue
  22. This forum is made for discussing mangos.
  23. That is very strange, the accounts not working is probably not created properly.
  24. std::string AccountMgr::CalculateShaPassHash(std::string& name, std::string& password) { Sha1Hash sha; sha.Initialize(); sha.UpdateData(name); sha.UpdateData(":"); sha.UpdateData(password); sha.Finalize(); std::string encoded; hexEncodeByteArray(sha.GetDigest(), sha.GetLength(), encoded); return encoded; } That is mangos password check, which is equal to yours in php. Just look at another mangos CMS's code and see how they do it?
×
×
  • 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