Jump to content

Wojta

Members
  • Posts

    244
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Wojta

  1. Not really, player movement is (mostly) handled by client and it only sends updates to server so other players can see that you are moving. But I guess you could implement some ".jump" command which will knock you up or something like that.
  2. Wojta

    MMaps Redux

    If it does not say it on every tile then yeah, this is correct. Some tiles are just empty, therefore theres nothing to build.
  3. It just shows other players joined for raids and their roles(and comments). It will not port into instance, it will not create raid, Raid leader must do that by himself. Its just place where you get players for pug, pretty much like old Looking for Dungeon. So it should be done separately I think. Anyway, its not really much popular on official servers...
  4. He means low guid part. From ObjectMgr.h: So no, you cant use low guid from database. But you can generate full guid from it, or you can use player name, which you can get from database. By the way, this is wrong section for questions like that
  5. 1. I prefer to have only groups in queue - look at eye icon near minimap, it shows which roles are already in, so it seems logical. Yes, I have my own implementation of Dungeon finder, but its written by teenage guy who wants to know "how the hell it works", and it looks by it. But I'll help with everything I can. 2. Well, It uses same packets for instance. LFR is just another category of Dungeon finder, although it works differently. (I am not really sure I properly understand your question, sorry if I am answering to different thing Oo)
  6. Wojta

    MMaps Redux

    http://valhalla-team.com/snap8.png wait..whaat? I generated all from scratch using extractors from your mmap branch Oo EDIT: never mind, i must have done something wrong, going to re-extract all mmaps. EDIT2: So far, so good.
  7. Well, I guess blizz has source code of warden since its their creation, so they can compile it for whatever they like. And they do not need to load it, neo2003 is loading the modules because its the easiest way to get hash/crypted something - forgot what already, but tom_rus explained it here a few posts ago - i think blizz is doing it entirely different way.
  8. Wojta

    MMaps Redux

    WMOs seems to be positioned correctly, but walkable areas are generated little bit off the map (or map is bit misplaced), not sure if its because i only took "+ Change in WMO rotation matrix. Should fix couple issues. " and not "+ MMAP Extractor: ..." commit. Will do some more testing tomorrow, need to sleep, good night.
  9. Wojta

    MMaps Redux

    Thank you. Kinda surprised nobody noticed this Oo
  10. Wojta

    MMaps Redux

    If so, then not only in one axis - the bridge near mage tower in-game and from RecastDemo: http://valhalla-team.com/WoWScrnShot_072911_200016.jpg http://valhalla-team.com/snap7.png
  11. Wojta

    MMaps Redux

    I tried to read most of this thread and I didnt see this one noticed: http://valhalla-team.com/snap4.png http://valhalla-team.com/WoWScrnShot_072911_162911.jpg - the whole wmo is misplaced in mmap mesh, but vmaps are all right. Same thing happened for bridge on the other side of EoS. But I have slightly modified and most likely little outdated version of mmap patch, can someone test this please? EDIT: It seems like it is just rotated by 180 or the rotation wrong, because bridge is too low on one side and too high on the other: http://valhalla-team.com/snap5.png http://valhalla-team.com/snap6.png EDIT2: Now when I look more closely, I think the left and right bridge is just swapped, lol Oo EDIT3: No, they are not, more like rotated by 180 degrees. EDIT4: By the way, the bridges are on two tiles at once: for example the one between mage tower and fel reaver ruins is on both tile 566 28 28 and 566 27 28
  12. Hi, long time no see Is there any vehicle repo or patch present? And what about some improvements, I can see this thread has grown since I looked last time. I will at least update first post with new informations
  13. I thought this buff is present always when you are in dungeon via DF, but i was only some heroics on offi.
  14. I've got some sniffs from 335, tell me if you want them
  15. Well, even built-in arena unit frames does not work, but for example gladius: http://wow.curse.com/downloads/wow-addons/details/gladius.aspx
  16. This changes when you get instance bind and on reward. I think LFG_STATUS_NOT_SAVED do the thing right now, no need to change it.
  17. 0.4999 is almost 0.5, EffectMiscValueA /10 is also 0.5 But misc value for death grip is 0
  18. Yes, that is good idea, but do not forget to bosses without SD2 script, for example Krystalus in Halls of Stone, you need some generic solution for them, too (although that could be done by some EventAI action, but kill credits usually have not any script). As you say, your way would also require lot of work in sd2. That is why I think some more flexible solution, at least partly via DB, is better. BTW, LfgDungeons.dbc has field, in which is some string ID of dungeon (maybe because dungeons has no id like creature or so), maybe thats the way offi recognize in which dungeon you are... BTW2: Yes, all you need to complete DF is to kill last boss, not all, confirmed from offi
  19. A new table with end boss id and some method for extra-special encounters where no end boss nor kill credit is used seems best to me right now. You need to store entry coordinates somewhere, too, because "sObjectMgr.GetMapEntranceTrigger(dungeon->map);" cant do anything good for scarlet monastery, since there are three dungeons on one map, or for event bosses. I can imagine it like when you kill any creature in dungeon, some method in (Lfg)Group class would be called, which would check if creature binds you tu instance (->change group status) and for creature id from that table. You could also search here for entry from DungeonsEncounter.dbc by creature name, which could give like 70% results... Yes, implemetation of DungeonEncounter.dbc-like way would be great, but again, I cant imagine anything other than new field in creature(_template)_addon table with ID from this dbc and some method for special encounter, which can be called from SD2.
  20. He will be teleported to original location.
  21. Try to remove if (!((Creature*)unit)->hasUnitState(UNIT_STAT_MOVING)) { // (ok) possibly some "hover" mode unit->m_movementInfo.AddMovementFlag(MOVEFLAG_ROOT); //problems sometimes... } in Object::BuildMovementUpdate() in Object.cpp somewhere near line 285.
  22. Well then...why its dynamic? In knockback effects, its just damage (and feral charge has no basepoints for jump effects) EDIT: yeah, because theres still same distance in knockback EDIT2: which means maybe we can use this as template... EDIT3: or maybe we cant...I just cannot figure it out, something is always missing
  23. I just found something interesting. When first ready check fails because some players are afk or leaves, second one is sent as "silent" - Enter Dungeon/Leave queue does not pop up, you have to click on eye-icon at minimap. So i tried few things and found this: In SMSG_LFG_PROPOSAL_UPDATE, group id is sent. Client expect something special or on offi the group is destroyed after failed ready check, but you have to generate new group id. I wish I'd have some sniffs about this
×
×
  • 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