Recent content by sano

  1. sano

    HP & Stat Bonus help

    anyone? :(
  2. sano

    HP & Stat Bonus help

    :(
  3. sano

    HP & Stat Bonus help

    all i found there was for skills public void AddTo(Mobile m) { if (Discordance.UnderPVPEffects(m)) { return; } Remove(); for (int i = 0; i < 5; ++i) { SkillName skill...
  4. sano

    HP & Stat Bonus help

    all i need is items to override caps and add bonuses of stats and hp regardless of caps. i dont want to increase caps
  5. sano

    HP & Stat Bonus help

    hello folks, i just noticed that items which have Hit points bonus or stat bonuses, arent adding them to player. is there any way for them to not obey cap of stats and hp? i did obeycaps = false for skills and its working perfectly but didnot find solution for stats and hp. main thing is that...
  6. sano

    ACC spell help

    tried that method too and still not triggering... updated scripts. im sure i have a mistake somewhere... thats why its not triggering... P.S just noticed. trialbyfire spell triggers it but flame shield which is exact copy of TBF, doesnot. P.S.2. im really ashamed now... all i had to do is to...
  7. sano

    ACC spell help

    like this? if (!ranged) { PlayerEvent.InvokeHitByWeapon(attacker, defender, damage, a); // Invoke the event if (AnimalForm.UnderTransformation(attacker, typeof(GiantSerpent))) { defender.ApplyPoison(attacker...
  8. sano

    ACC spell help

    i tried every single way to do trigger it, spells, specials, barehands, mele/ranged weapons. nothing triggers it. all i need is to trigger it when caster is hit with melee weapon...
  9. sano

    ACC spell help

    on line 3003... sadly instructions there was not so clear and this is what it is...
  10. sano

    ACC spell help

    i assume i must put if (Visible && m_Caster != null && m != m_Caster && Faction.Find(m) != TrueBritannians.Instance && SpellHelper.ValidIndirectTarget(m_Caster, m) && m_Caster.CanBeHarmful(m, false)) instead of if (m_RainOfFire.Visible && m_Caster != null &&...
  11. sano

    ACC spell help

    yes it is custom spell using same mechanic as Fire Ring from ancient spellbook. and original fire ring spell from ancient spellbook also damages caster...
  12. sano

    ACC spell help

    sadly after all my effords, spell still damages caster... here is entire spell using System; using System.Collections; using Server.Targeting; using Server.Network; using Server.Misc; using Server.Items; using Server.Mobiles; using Server.Spells; using Server.Factions; namespace...
  13. sano

    ACC spell help

    well, i only renamed True Britanians faction name inside TrueBritanians.cs so in this case i need to ? p.s update: I did as you mentioned and players from imperial order are not taking damage from that spell, but caster still gets damaged.
  14. sano

    ACC spell help

    anyone?
  15. sano

    ACC spell help

    hello folks, i created new custom fire field spell for ACC systems and its working like charm except one thing: spell should not damage caster or players who are in "Imperial Order" faction, but everyone in area takes damage from the field including caster. here is the code part .. dont know...
Back