Jump to content

ZPS

Members
  • Posts

    15
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

ZPS's Achievements

Member

Member (2/3)

0

Reputation

  1. Crashfix: https://github.com/mangosR2/mangos/commit/7165eaed1db6fd20072219fc0cd0c95040e7898d
  2. Actually, the latest version is here https://github.com/bwsrv/mangos/commits/transport But as rsa said, this is only adapted old patch.
  3. How are you going to use ! (not)? Example: SelectAttackingTarget(ATTACKING_TARGET_RANDOM, 0, SPELL, !(SELECT_FLAG_NOT_IN_MELEE_RANGE)); May be I don't understand something, but I think that code, which handle SELECT_FLAG_NOT_IN_MELEE_RANGE - if (selectFlags & SELECT_FLAG_IN_MELEE_RANGE && !CanReachWithMeleeAttack(pTarget)) return false; will have no sense.
  4. Add one more select flag to SelectAttackingTarget. SELECT_FLAG_NOT_IN_MELEE_RANGE - is used when you want to select ranged targets (which are not in melee range). P.S.: Btw, tag "[ code ]" is awful...
  5. Some playerbots improvements: https://github.com/mangosR2/mangos/commit/64370c7a4e0c712ec8d7a3ac11fef198af64ffa3 https://github.com/mangosR2/mangos/commit/6e797003f0f372bfcd41171d8bb869f5d3dcbf89
  6. ZPS

    Closed UDB?

    UDB forum is online. http://udb.no-ip.org
  7. Core does not compile on FreeBSD 7.2 Error: http://gist.github.com/648972
  8. Patch against server crash: ----------------------------- src/game/Vehicle.cpp ----------------------------- index 3fc4aef..6e69ce2 100644 @@ -637,6 +637,9 @@ void Vehicle::Dismiss() void Vehicle::RellocatePassengers(Map *map) { + if (m_Seats.empty()) + return; + for(SeatMap::iterator itr = m_Seats.begin(); itr != m_Seats.end(); ++itr) { if(itr->second.flags & SEAT_FULL)
  9. Charlie2025, I noticed one redundant file in your outdoor repository: /src/game/OutdoorPvPMgr.cpp.orig
  10. No ideas more?.. Triplex have private messages off, I can't write him
  11. Heh, I tried, but Triply rewrote those code and removed those comment...
  12. Vice versa. I want rated arena matches to be only Horde vs Alliance.
  13. How to prohibit one faction rated arenas now (horde vs horde and ally vs ally)? Before [7336] (Implemented new BattleGroundQueue invitation system) I used this patch: diff --git a/src/game/BattleGroundMgr.cpp b/src/game/BattleGroundMgr.cpp index a582f38..bfd0ae6 100644 --- a/src/game/BattleGroundMgr.cpp +++ b/src/game/BattleGroundMgr.cpp @@ -828,7 +828,7 @@ void BattleGroundQueue::Update(uint32 bgTypeId, uint32 queue_id, uint8 arenatype // there weren't enough players for a "normal" match // if arena, enable horde versus horde or alliance versus alliance teams here - else if(bg_template->isArena()) + else if(!isRated && bg_template->isArena()) { bool bOneSideHordeTeam1 = false, bOneSideHordeTeam2 = false; bool bOneSideAllyTeam1 = false, bOneSideAllyTeam2 = false; But this part of code was removed, and now I can't understand where and what checkI should set. Please, help me. Thanks.
  14. Fishing in instances works. Check Zul'gurub for example. I think that something wrong is with map. Server considers, that there is no water there...
×
×
  • 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