Jump to content

Auntie Mangos

Moderators
  • Posts

    2446
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Auntie Mangos

  1. As i see forum now not have PMs And some problems not so important for spam by email. So i create this thread in team section. MiLk13 ( http://getmangos.eu/community/profile.php?id=31864 ) who known as active help in mangos-0.12 branch work have problem with access to forum and not have access to old email for password reset. Can be his email replace to [email protected]
  2. Hello. It has come to my attention that the MaNGOS server I am running has attracted several cheaters. I could ban them manually, but this would require much more work than I have time for. I have read on other forums (not going to post the names or URLs here, for fear of advertisement consequences) that there is an addon ( are addons ) to the core that will kill, kick, or ban users that cheat. Where can I find a guide for how to add this to the core? Thank you very much! Chris EDIT: Here is a link I found earlier to a .patch file. http://getmangos.eu/community/showthread.php?3625-patch-Relaxed-Anti-cheat&p=113860&viewfull=1#post113860 How do you add them to the core to be compiled? Thank you very much! Chris
  3. last day i conf a router, now is to late but tks for sharing and with yout tuto and -Hosting-Behind-A-Router"]this. Can be a good help.
  4. check out the playerbot thread in Core Modifications we have found that there is a new introduction of code in 9172 that fuxors the opcodes ... look here: http://getmangos.eu/community/showthread.php?8238-Playerbot&p=100372&viewfull=1#post100372
  5. offtopic! read here http://getmangos.eu/community/viewtopic.php?id=7952
  6. Hey hum... im trying to start a new live private server and i choosed mangos cause i love mangos,i got every thing i need to start my server but i dont know how to script anything =( Anyway, my problem is that when i enter an instance or a raid i cant see other people and they cant see any one, i only can see them on the mini map... + When i try something like .namego its say "You only can use this command if your not into an instance or the leader of the group" ... something like that =\\ I dont know why, i would like to know =( if you need any more information please tell me and i will do what you say =\\. (I searched on the forum and around the internet and since im not lonely to have this problem (http://getmangos.eu/community/topic/15499/raids/) My server : Using : MySQL, MANGOS Im in 3.3.5a My SQL browser is SQLYog. Thx for helping me.
  7. http://getmangos.eu/community/forumdisplay.php?17-Installation-Configuration-amp-Upgrades
  8. What bug does the patch fix? What features does the patch add? Allows Auras procced by items to stack, if the castItems are different. Popular example: Dualwielding weapons with Crusader- or Mongoose-Enchant or unsing these Maces from Blacksmithing For which repository revision was the patch created? mangos-0.12 @ 061b4a3147da182e7fda3845ac4c543eeaddc3bb Is there a thread in the bug report section or at lighthouse? Thread Who has been writing this patch? Sarjuuk diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 6d02ea4..e078127 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -849,8 +849,9 @@ void Aura::_AddAura() Unit::spellEffectPair spair = Unit::spellEffectPair(GetId(), i); for(Unit::AuraMap::const_iterator itr = m_target->GetAuras().lower_bound(spair); itr != m_target->GetAuras().upper_bound(spair); ++itr) { - // allow use single slot only by auras from same caster - if(itr->second->GetCasterGUID()==GetCasterGUID()) + // allow use single slot only by auras from same caster (and item) + if ((itr->second->GetCasterGUID() == GetCasterGUID()) && + (itr->second->GetCastItemGUID() == GetCastItemGUID())) { samespell = true; if (m_effIndex > itr->second->GetEffIndex()) diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 076f6e7..46b36ce 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -3662,6 +3662,10 @@ bool Unit::AddAura(Aura *Aur) Aura* aur2 = i2->second; if(aur2->GetCasterGUID()==Aur->GetCasterGUID()) { + // proced Auras may stack, if their Source-Item differ + if (aur2->GetCastItemGUID() != Aur->GetCastItemGUID()) + continue; + // Carry over removed Aura's remaining damage if Aura still has ticks remaining if (!aurSpellInfo->StackAmount && aur2->GetSpellProto()->AttributesEx4 & SPELL_ATTR_EX4_STACK_DOT_MODIFIER && aurName == SPELL_AURA_PERIODIC_DAMAGE && aur2->GetAuraDuration() > 0) Notes: 1) Item, that you can be worn twice are: weapons, rings, trinkets. I know of no trinket or ring, that applies a buff, without causing a cooldown to that effect. If you prove me wrong, a more explicit check for the itemSlot or something may be needed. 2) this rule falls short for Enchant Weapon: Executioner, that may not stack. It will require an addition in SpellMgr::IsNoStackSpellDueToSpell() to work propperly
  9. related topic http://getmangos.eu/community/showthread.php?12159-[9108]Succubus i thougth it wasn´t the same so i decided to create new post. http://es.wowhead.com/?spell=18756 How does it work doesn´t work How does it should work Reduces the cast time of your Succubus' Seduction by 66%, and increases the duration of your Succubus' Seduction and Lesser Invisibility spells by 30%.
  10. Suggested in thread patch is more complete. Also do you think that devs must look by signatures links for patches... at least while unreviwed section non empty. Ok, i find thread: http://getmangos.eu/community/viewtopic.php?id=9909&highlight=Faerie+Fire Base at time and aditional data i will make commit author Sarjuuk with special comment about author of prepered sql update. I sure that both patch versions created independently
  11. http://getmangos.eu/community/topic/7318/guide-mangos-windows-setup/
  12. The source is public, u can see and download it Where from? https://github.com/mangos/mangos How? http://getmangos.eu/community/forum/17/installation-configuration-upgrades/ What's bugged? http://getmangos.eu/community/forum/18/bug-reports/ What kind of fixes to submit? http://getmangos.eu/community/forum/22/-accepted/ Where to submit them? http://getmangos.eu/community/forum/21/-under-review/
  13. 10th October 2010 Regular stuff still is regular, and so we now have a HTML5 compliant start page on getmangos.eu. Fixes Code highlighting is unreadable. Oh, the dark background is gone, and most (if not all) supported highlighters should now be readable. Feedback this way, please.
  14. Mangos Version: 9912 Custom Patches: nameannounce Official GM Mail SD2 Version: 1696 Database Name and Version : YTDB 547 How it SHOULD work: When Master Looter put on, only the Master looter should be able to loot using the master-looter features. How it DOES work: When Master loot is on, everyone is able to loot, they only have to klik OK on the bind-on-pick-up pop-up. The master looter can still use the master-looter features. This is very ninja-sensitive and can lead to big problems in the community.
  15. Anybody have the script to change de account's password? EDIT: Here is: http://getmangos.eu/community/showthread.php?11999-PHP-password-change-script
  16. Yesterday, you said the same thing to Macedonien. I tried to add the function SetDBTableGuid(...) in AddCreature, and it worked ! At last ! Thanks to you
  17. Hi, I am currently running a mangos sever rev 11195 with the modified auction bot from cyberium as described in http://getmangos.eu/community/topic/13121/world-of-warcraft-server-for-windows-installation-guide/page/2/. I think (well pretty sure) that I messed something up as when the server starts up it spends about 15-20 minutes delete and insert queries into the auction database, after it has done that everything seems to work smoothly. 0 ms] SQL: SELECT account FROM characters WHERE guid = '4294967295' 62 ms] SQL: DELETE FROM auction WHERE id = '88053' 0 ms] SQL: SELECT account FROM characters WHERE guid = '4294967295' 0 ms] SQL: SELECT account FROM characters WHERE guid = '4294967295' HBot> Boost value used to fill AH! (if this happens often adjust both ItemsPerC cle in ahbot.conf) ameEvent 41 "Leader of Jin'Alai, Kutube'sa" started. ameEvent 43 "Leader of Jin'Alai, Chulo" removed. ext game event check in 598 seconds. 62 ms] SQL: DELETE FROM item_instance WHERE guid='103744' 77 ms] SQL: DELETE FROM auction WHERE id = '88055' 61 ms] SQL: DELETE FROM item_instance WHERE guid='103745' 62 ms] SQL: DELETE FROM auction WHERE id = '88056' 46 ms] SQL: DELETE FROM item_instance WHERE guid='103747' 46 ms] SQL: DELETE FROM auction WHERE id = '88058' 62 ms] SQL: DELETE FROM item_instance WHERE guid='103751' 76 ms] SQL: DELETE FROM auction WHERE id = '88062' 62 ms] SQL: DELETE FROM item_instance WHERE guid='103756' 46 ms] SQL: DELETE FROM auction WHERE id = '88067' ... then ... [46 ms] SQL: INSERT INTO item_instance (guid,owner_guid,data,text) VALUES (40763 5,4294967295,'407635 1191182336 3 21894 1065353216 0 4294967295 0 0 0 0 0 0 0 1 0 4294967295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ', '') [61 ms] SQL: INSERT INTO auction (id,houseid,itemguid,item_template,itemowner,bu youtprice,time,buyguid,lastbid,startbid,deposit) VALUES ('267731', '2', '407635' , '21894', '4294967295', '57132', '1300966153', '0', '0', '10244', '0') [0 ms] SQL: DELETE FROM item_instance WHERE guid = '407636' [61 ms] SQL: INSERT INTO item_instance (guid,owner_guid,data,text) VALUES (40763 6,4294967295,'407636 1191182336 3 37808 1065353216 0 4294967295 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90 90 0 0 ', '') [61 ms] SQL: INSERT INTO auction (id,houseid,itemguid,item_template,itemowner,bu youtprice,time,buyguid,lastbid,startbid,deposit) VALUES ('267732', '2', '407636' , '37808', '4294967295', '1028081', '1300966153', '0', '0', '348693', '0') [16 ms] SQL: DELETE FROM item_instance WHERE guid = '407637' [47 ms] SQL: INSERT INTO item_instance (guid,owner_guid,data,text) VALUES (40763 7,4294967295,'407637 1191182336 3 20971 1065353216 0 4294967295 0 0 0 0 0 0 0 1 0 4294967295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ', '') [46 ms] SQL: INSERT INTO auction (id,houseid,itemguid,item_template,itemowner,bu youtprice,time,buyguid,lastbid,startbid,deposit) VALUES ('267733', '2', '407637' , '20971', '4294967295', '2566', '1300991353', '0', '0', '725', '0') [15 ms] SQL: DELETE FROM item_instance WHERE guid = '407638' Any advice on cleanning this up and/or stopping it from happening would be great. Cheers Darkelf
  18. Alright, so I did up a server via http://getmangos.eu/community/topic/13121/world-of-warcraft-server-for-windows-installation-guide/ and got that working, then wanted to add in the AHBot. So I Git-Bashed the thing as per the guide there, and then went on to do the recommended check. This is what I get: $ git apply --check Addon/AHBot/ahbot.patch error: patch failed: configure.ac:363 error: configure.ac: patch does not apply Any ideas on how to fix this? (Tried to search for help, but I guess my search skills aren't all that good)
  19. Hi, It's not a secret : the "Database" section is not what it should be Description : "Help improving the MaNGOS database format, or get yourself into server-side scripting. If it's quick, runs smooth, and works perfect, we will love it." Actual use : mainly PHP scripts, web projects, and actually every MaNGOS-related project. And a bit of database discussion. Solution : create a new section "Third-party project". That would clean the current Database section from all the threads that are not really database-related (example 1, example 2, example 3) There's actually no discussion about database format, except freghar's wiki entries, here and here I'd love to see hundreds of threads like these, and I'm sure MaNGOS would benefit a lot from them. What do you think? Best regards
  20. http://getmangos.eu/community/viewtopic.php?id=13316
  21. http://getmangos.eu/community/viewtopic.php?id=4579
  22. Here is the Horde+Ally group thread http://getmangos.eu/community/viewtopic.php?id=8841
  23. Well, my UDB-Database is for 9582 (UDB 0.12.0 (388) for MaNGOS 9582 with SD2 SQL for ...) but my MaNGOS Version is the newest version: http://getmangos.eu/community/showt...3a-%2811723%29 So i must patch all sql-files between 9582 and 9692? But thats not working, because then there comes many other errors -.-
  24. about those guards: i had a similar problem with alterac-valley some day i forgot how i fixed it (i think a fix got obsolete through moving all creatures to the database..) anyway heres much text i've written about my problem http://getmangos.eu/community/viewtopic.php?id=6755 maybe it helps (not sure if it is even the same problem) in alterac-0.12 there is also a kind of fix (okok - it's a hack^^) for this problem look there at battleground::addcreature() i think the fix was: pCreature->SetDBTableGuid(pCreature->GetGUID()); and then setting x,y,z through getNewOrExistentData
  25. I tryed to make it as simple as possible, because there are a lot of noob admins that dont know what is /etc/security/limits.conf or how to change ulimit -c ( or any other ulimit ). Also a lot of ppl compile mangos without knowing what is CXXFLAGS . Yes, there are a lot of ways to get crash information, here are some. 1) Start mangos from gdb. 2) Use ulimit -c ... I think I made some script that can process all cores in given directory, infy uses it to give crash reports, for example. 3) Install SIGSEGV signal handler in mangos and make it call gdb when it crashes. This requires modification in mangos code, common example of apps that do this are gnome and KDE desktop apps. I put here the easyest way I see. The most important for crash report is not how you generated it, but what information it contains. A lot of reports for example dont contain the signal that caused the abnormal termination or dont provide backtrace of all threads, or dont provide other important information.
×
×
  • 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