Where in Lotf source is the Like Dragongems how much damage and shit they do becuse i wanna add some more gems.
Printable View
Where in Lotf source is the Like Dragongems how much damage and shit they do becuse i wanna add some more gems.
I think no Gems addet yet u have to check wich Gem is in included and u have to calculate
Gem = Damage : 100 * 15 %(Percent of Gem without %)
And then u make it so:
Damage + Gem
I think this must work :D
Its only an example how it can work i think :D
Im asking where in the source are they at:)
Character.cs
search for public void GetEquipStats(byte Pos, bool UnEquip)
Do you know where i can fix the Archer and Tao Bug?
Yes you need to recalculate the DMG.
Cya
the archer attack is in character.cs at public void Attack() after the mobs...lol
the archer attack is if AtkType == 25
after it u see Damage ....something like that u have to recalculate it XD
for the tao damage u have to get in other.cs
search for public static uint CalculateDamage(Character Attacker, Character Attacked, byte AttackType, ushort SkillId, byte SkillLvl)
u will see:
else if (AttackType == 3 || AttackType == 4)//Magic
after Damage = (int)((double)Damage * Attacker.AddAtkP
is the thing that needs to be recalculated
Ok Thank you