Jump to content

xmaveric

Members
  • Posts

    6
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by xmaveric

  1. You can now follow the Mangos GIT commits on Twitter. Just follow @mangosemu. This is an automated update that parses the GIT RSS.
  2. Could you post detailing exactly what MangChat does?
  3. I've done some testing on my own server, and I've found this to be the most reliable method for making an area into a Sanctuary (for a mall or other special purpose). 1. visit the area in-game and use the .gps command. This will show you the AreaID. 2. open up player.cpp (found in /source/game/player.cpp 3. Search for this line: if(zone->flags & AREA_FLAG_SANCTUARY) // in sanctuary 4. Replace it with this line: if((zone->flags & AREA_FLAG_SANCTUARY) || (GetAreaId() == 2477)) // in sanctuary Just replace "2477" with the area you want to be a sanctuary. If you want more than one area, just add them in like this: if((zone->flags & AREA_FLAG_SANCTUARY) || (GetAreaId() == 2477) || (GetAreaId() == 1234)) // in sanctuary And so on. No illegal editing of DBC files needed I understand this is probably simple for most of you, but I wanted to post it for posterity in case I need it again and forget how to do it.
  4. I'm getting this error when I do the Merge > Local Merge... --------------------------- error --------------------------- You are in the middle of a change. File mangosd.vcproj is modified. You should complete the current commit before starting a merge. Doing so will help you abort a failed merge, should the need arise. --------------------------- OK --------------------------- I haven't made any changes to this file. I even tried to delete the file and I get the same error. Any ideas?
  5. This does get the version hash. Is there a way to get the current revision number? (ie r8999)
×
×
  • 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