Jump to content

charlie2025

Members
  • Posts

    171
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by charlie2025

  1. Maybe `BonusTalents` tinyint(3) unsigned NOT NULL default '0', Is, what do you mean ?
  2. No, probably there is some problem, I hope we can fix it soon..
  3. I think idea of ChanF07 is right, becose I can't see any other possible cause of freeze in the floor.. so simply get line float z = m_caster->GetPositionZ(); and replace by float z = m_caster->GetPositionZ() + 3; for example.. maybe 1 would be enough, but needs to test
  4. I would like to ask, how to check if spell is spell for Warlock's pets. For example, for check if it is hunet pet, if(!(spell->SpellFamilyFlags & 0x1000000000000000LL)) continue; Is there any simmilar code to check if it is warlock pet spell ? Thanks
  5. Simple patch to repair MeetingStones diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp index c1c13b3..8442406 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -1163,7 +1163,7 @@ void GameObject::Use(Unit* user) if (level < info->meetingstone.minLevel || level > info->meetingstone.maxLevel) return; - spellId = 23598; + spellId = 61994; break; } git pull git://github.com/charlie2025/mangos.git meetingstone Patch by kozelo
  6. No, Triplex said, first will be big rewrite of battleground stuff, then outdoor pvp.. For compile errors, I will fix it in moment, but just now I'm working on sth different
  7. Could you be more specify which bugs and how doesn't work ? If it totaly doesn't work or there are some bugs
  8. yes git pull git://github.com/charlie2025/mangos.git outdoor
  9. Hi, How doesn't work ? ingame ? I have tested merge and compile and fine.
  10. If you can work with PHP, I think adding chat command to mangos will not be hard for you.
  11. Open src/LevelX.cpp where X is number of security for this command. add function to this file .. to this function write what you want, (you can look at .respawn how it works) , then open chat.h , put here the function, then open chat.cpp and put this command to table of commands. In additional you can make record for this command in DB - mangos.command
  12. Bump to this topic, anyone working on phasing or something ? Becose it is quite important think and Theluda said it won't be so complicated..
  13. This is quite big patch, it can't be accepted directly, but some comment from Devs like what and where to change .. for fully working outdoorpvp it needs fix lake wintergrasp, what is quite difficult. Then some code cleanups etc.
  14. bump to this topic.. any comment/suggestion anything from Devs ?
  15. Format of column in realmd.account is bigint(20) , but in characters.account , but column account is the same value (number, identifier.. what you want) as id in account table and is "only" int(11). So if case, id in account.id will be bigger then character creation and pointing characters to account gets bugged. Fix to set characters.account as bigint(20) ALTER TABLE `characters`.`characters` MODIFY `account` bigint(20) unsigned NOT NULL default '0' COMMENT 'Account Identifier'; or, if you thing that 4294967295 is enough, set account.id as int(11) ALTER TABLE `realmd`.`account` MODIFY `id` int(11) unsigned NOT NULL auto_increment COMMENT 'Identifier';
  16. simple and good fix, should be no problem to add it
  17. Please stop offtopic, this is not related this tread, if you have some point to branch which should be added to list post, but comments on patches write in proper thread.
  18. seems that DiSlord fixed our issue in 7092, great.
  19. In 3.0.3 (wotlk if you want) was changed formula for xp 1) xp needed in lvl 60-69 was changed 2) there is some new formula for 70-79 From wowwiki, there are some informations.. Values 60-69, (values decressed) 60 290,000 (-41.3%) 61 317,000 (-44.8%) 62 349,000 (-43.2%) 63 386,000 (-40.6%) 64 428,000 (-37.3%) 65 475,000 (-33.1%) 66 527,000 (-28.2%) 67 585,000 (-22.4%) 68 648,000 (-15.7%) 69 717,000 (-08.0%) new datas 70 1,523,800 71 1,539,600 72 1,555,700 73 1,571,800 74 1,587,900 75 1,604,200 76 1,620,700 77 1,637,400 78 1,653,900 79 1,670,800 Maybe we should update formulas either, but anybody know, how to get formula from this data ? On wowwiki, there is still old formula. Also some thinks in mangos (XPPastLevel70 in mangosdconf etc should be renamed or replaced..)
×
×
  • 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