Jump to content

zergtmn

Members
  • Posts

    230
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by zergtmn

  1. I checked on retail, currently vendor sells http://www.wowhead.com/item=50335. http://www.wowhead.com/item=44133 most likely was bind on pickup epic item before converting to BoA in patch 3.3 (for people who already purchased it). Both can be used without reputation requirement. Update: Checked with char without enough reputation for purchase.
  2. Mover cannot be null. It is always pointer to some unit or player itself.
  3. Search -> Armor penetration cap
  4. Current vehicle code in MaNGOS is based on wrong assumption that vehicles are summonable only and cannot be spawned like creatures. Vehicle implementation by rastikzzz and NetSky (continued by Wojta) didn't changed it. It is one of the reasons why this patch would never get into master branch. Other reasons: 1. Custom flags 2. Old-style unit search (ObjectAccessor::*) 3. Wrong spell targets implementation 4. Incomplete summon effect implementation 5. Bad table structure 6. Hacky spell-clicks 7. Hacky fuel implementation 8. Wrong GO damage implementation (btw, what it does in vehicle patch?) 9. Haxz in general. I didn't see anything in patch that can be useful for us as is (except MSG_MOVE_HEARTBEAT fix that is already in master). People who think that devs don't care about vehicles are completely wrong. They care. And there is a progress already.
  5. http://www.parashift.com/c++-faq-lite/const-correctness.html Take a look at latest 'code style cleanup' commits in MaNGOS.
  6. While being a mod AHBot can be easily supported and improved by community. In core it will require devs to spend their time for supporting it, reviewing patches, etc. Comments about code: 1. Code style doesn't meet MaNGOS standards (spaces, naming, braces) 2. Don't use public class variables. 3. Use typedefs for things like std::vector<std::vector<std::vector<uint32> > > 4. Use inheritance or singleton instead of AHB_Base* m_BaseConfig; 5. Use 'const' specifier where possible.
  7. Update for what? I never seen working Dungeon Finder implementation for MaNGOS.
  8. VC 8.0, 9.0 project files are messed up a bit, look at diff: http://paste2.org/p/1040074.
  9. I was meaning current GO health, not total.
  10. As I remember original author was someone from TC. I already looked at original patch, few things look hacky: 1. in EffectWMORepair basepoints are not used. See http://www.wowhead.com/spell=57586 2. I think better place for faction checks is grid searcher 3. swapping bounding box coordinates when loading DBC. This need more research why some values (1.0 and -1.0) are stored in reverse order. Also, maybe GO health needs to be saved to database.
  11. Patch for ACE_vc10.vcxproj.filters: http://paste2.org/p/1034055 (was auto-generated by Visual Studio and manually edited/reordered). Full: http://paste2.org/p/1034051.
  12. I don't know what spells it does fix particularly maybe spells with target flags: Unit | SourceLocation like in first post.
  13. What bug does the patch fix? What features does the patch add? Prevent sending wrong GUID in place of transport GUID. For which repository revision was the patch created? 10577 Who has been writing this patch? Please include either forum user names or email addresses. Me Sniff (Angry Sara on top of Yogg-Saron): S->C: SMSG_SPELL_GO (0x132) Size: 61 ----------------------------------------------------------------------------- Caster GUID: { 0xF13000816E008419, Type: Creature, Entry: 33134, Counter: 33817 } Spell Id: 63795 (Psychosis) Cast Flags: Unknown (0x4004108) Timer: 1246913537 Hit target: { 0x7000000020A47D1, Type: Player } Target Flags: Unit | SourceLocation (0x22) Transport GUID: { 0xF15000820800846D, Type: Vehicle, Entry: 33288, Counter: 33901 } Source Location: x=0, y=0, z=23.4861 Patch: http://gist.github.com/635096 Note: This patch does not implement proper filling of transport GUIDs!
  14. Most likely DB problem.
  15. At first we need somehow set it to correct value.
  16. For which repository revision was the patch created? 10559 Who has been writing this patch? Me http://paste2.org/p/1011091
  17. What bug does the patch fix? What features does the patch add? 1. Fix bug that directly controlled creatures run towards target when they receive attack command 2. Implement opcode CMSG_PET_STOP_ATTACK. It is sent when charmer change target by right clicking or press Esc. For which repository revision was the patch created? 10553 Who has been writing this patch? Please include either forum user names or email addresses. Me Part 1 Part 2 Part 3
  18. What bug does the patch fix? What features does the patch add? This patch allows auras AURA_FORCE_MOVE_FORWARD (241) to work on creatures/vehicles. For example it fixes spell http://www.wowhead.com/spell=68284. For which repository revision was the patch created? 10648 Who has been writing this patch? Me Patch: http://gist.github.com/646888
  19. Wrong. if ( LOBYTE(v82) & 2 ) { if ( !sub_809F80(v34, v36, v18, v36, v4, (int)&v55, (int)&v70, &v74, &v82) ) { v25 = v79 == -1; goto LABEL_78; } sub_7FE520((int)&v74, (int)&v82, v4 + 88, v4 + 100); PendingSpellCastData__WriteTargetInfo(v4 + 8, (int)&v76); CDataStore__PutFloat((int)&v76, v74); v18 = v82; CDataStore__PutFloat((int)&v76, v82); v37 = objectGuid.guid_high; WriteMovementPacket(objectGuid.guid_high, 183, (int)&v76, 1); v38 = PerformanceCounter(); sub_6FBE30(v36, *(_DWORD *)(v4 + 32), v38); } else { PendingSpellCastData__WriteTargetInfo(v4 + 8, (int)&v76); v37 = objectGuid.guid_high; }
×
×
  • 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