Jump to content

pelle

Members
  • Posts

    157
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by pelle

  1. add manually the patch of that .cpp file and all will be fine
  2. Hit at all. I have a problem with my source. At the moment i applyed various changes as custom patches and others, the problem is that all is working but i still am on 8067 of 0.12 and i'd like to update to latest (82**). The problem is that if a execute "git pull origin mangos-0.12" i0m sure it will find lot of conficlt because my custom patches. Some time ago, i used to download a new uptated source and to apply changes manually, but it will take some time and i could make some mistakes. I have to say that on git gui my changes are on the "unapplied changes" so are applied but tagged as "unknow". So, there's a way to create a patch of ALL mine changes so i could apply it every time? without any merge conflict? Or there is a way to "save" changes, download updates, and reapply the changes? thanks
  3. client lag (of visual effects) o server lag (latency)?
  4. exctacted and applied. i have to say thery are a must for pvp and to not aggro between walls but... my uptime continue being greate
  5. my friends at offy says that the visual is VERY VERY hight, for exemple you can see enemies base-to-base in warsong gulch and outside quite up to the orizont with all graphical effect at maximum....
  6. ok, gonna test it. very interesting, can you say me how? what parameters should i modify?
  7. ... i really can't undestrand this the standard now is to 8x8 and 66 for visibility, and this patch bring that to 16x16 and 156-333. and this is a speedup? please answer me
  8. pelle

    C++ operator?

    as we are here, i'd like to know _what_ pointer whe should use for exemple on spellauras.cpp. i understood that m_taget is the taget and caster is the player who do something but... can i use that? for exemple if i want the rogue autocast something on him (in this case the find weakness buff) , can i use if (caster->HasSpell(31242)) //if has talent caster->CastSpell(caster, 31238, true, NULL, NULL, GetCasterGUID()); //cast on him the spell thanks for asnwer
  9. try different command like patch -p1 > patch_path.patch should work. my question: I like lot the silverice patch for the way it work, how the situation is at the moment with rev 1/3 and pthers patches?
  10. yeah thanks for your annswer and for this patch.
  11. probably a little for cycle? yes i thought on it, probably a check if the player hasn't the talent? so if there aren't dot of a player with the talent it remove..? and if there are dot of player that hasn't the talent remove? what pointer i got to use to the HasSpell function? caster-> or what?
  12. Hi at all, note that this is my first patch that i submit so if there's something wrong... tell it to me. What bug does the patch fix? What features does the patch add? This patch fix the romove of old 2.4.3 debuff that decrease of x% the melee damage of a target. (taked as a talent on warlock affliction tree). For which repository revision was the patch created? Mine is working on 8067 of 0.12 but i think it will work on earlier too. not needed on other branch because talent change. Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread. Probably, don't know. Who has been writing this patch? Please include either forum user names or email addresses. Myself. I'm not skilled on git so i can't do a patch, if someone will do it will be apprectiated. this is the code on spellauras.cpp @@ -5449,10 +5546,60 @@ void Aura::HandleSpiritOfRedemption( bool apply, bool Real ) m_target->DealDamage(m_target, m_target->GetHealth(), NULL, DIRECT_DAMAGE, SPELL_SCHOOL_MASK_NORMAL, GetSpellProto(), false); } void Aura::CleanupTriggeredSpells() { + bool remove_aaura; //random name to find a free one P_P + remove_aaura=true; + +//shadow embrace + + Unit::AuraList const& auras = m_target->GetAurasByType(SPELL_AURA_PERIODIC_DAMAGE); + for(Unit::AuraList::const_iterator itr = auras.begin(); itr != auras.end(); ++itr) + { + SpellEntry const* itr_spell = (*itr)->GetSpellProto(); + if(itr_spell && itr_spell->SpellFamilyName==SPELLFAMILY_WARLOCK){ + remove_aaura=false; + break; + } + } + + + if(remove_aaura) + { + m_target->RemoveAurasDueToSpell(32391); //remove debuff from higher + m_target->RemoveAurasDueToSpell(32390); + m_target->RemoveAurasDueToSpell(32389); + m_target->RemoveAurasDueToSpell(32388); + m_target->RemoveAurasDueToSpell(32387); + } + + + + + uint32 tSpellId = m_spellProto->EffectTriggerSpell[GetEffIndex()]; //post bug, wtf is should be EffectTriggerSpell[GetEffIndex()]; if(!tSpellId) return; SpellEntry const* tProto = sSpellStore.LookupEntry(tSpellId); all improvements on this are very usefull :lol:
  13. who can explain me how to insert more phrases?
  14. Hi at all, i sucessfully compiled/installed/lunched my 0.12 mangos, but i didn't added the vmaps support. Now my question is, i heard about crash issues, instability. Now i got 5 testers ca. so lag is quite zero and quite infinity uptime. So my question is: i don't know so much about vmaps, but i know they are essential, will they bring me crash/lag? and the second noob question.... how i extract them?
  15. what this should fix...? and does it work?
  16. you could do a channel for horde as gmsupporthorde and gmsupportally.... not as you asked but work, because if a horde join gmsupportally he can't see nothing but the gm (i think) can
  17. waiting for revert, really nice work keep up!
  18. My question is: i have a 0.12 mangos and i want to host on the same pc a 0.13-0.14 mangos. I have to take differents realmd (bcz of different versions) and of corse a different mangos. The problem is, if they use the same port, they gonna be in conflict...? and if i change the ports, i should set in the realmlist something like "set realmlist localhost : port"? so, in conclusion, the easier way to have 2.4.3 and 3.x.x on same machine? thanks
×
×
  • 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