Jump to content
  • 0

Problem Ingame After a Compilation


Question

Posted

Always with Faction system ^^'

 

So i add these lines in L2Character.java

 

else

+        {

+        target = (L2Character) getTarget();

+       

+        if ((target instanceof L2PcInstance) && (this instanceof L2PcInstance))

+                {

+                if (((L2PcInstance) this).isTeam1Member() && (((L2PcInstance) target).isTeam1Member() && Config.ENABLE_FACTION_ENGINE))

+                {

+                    ((L2PcInstance) this).sendMessage("You Cannot Attack a Player From Your Faction!");

+                    sendPacket(ActionFailed.STATIC_PACKET);

+                    return;

+                }

+                else if (((L2PcInstance) this).isTeam1Member() && ((((L2PcInstance) target).isTeam1Member() && Config.ENABLE_FACTION_ENGINE && (skill.getSkillType() == L2SkillType.BUFF)) || (skill.getSkillType() == L2SkillType.HOT) || (skill.getSkillType() == L2SkillType.HEAL) || (skill.getSkillType() == L2SkillType.COMBATPOINTHEAL) || (skill.getSkillType() == L2SkillType.HEAL_PERCENT) || (skill.getSkillType() == L2SkillType.MANAHEAL) || (skill.getSkillType() == L2SkillType.MANAHEAL_PERCENT) || (skill.getSkillType() == L2SkillType.BALANCE_LIFE) || (skill.getSkillType() == L2SkillType.CONT)))

+                {

+                    return;

+                }

+                if (((L2PcInstance) this).isTeam2Member() && (((L2PcInstance) target).isTeam2Member() && Config.ENABLE_FACTION_ENGINE))

+                {

+                    ((L2PcInstance) this).sendMessage("You Cannot Attack a Player From Your Faction!");

+                    sendPacket(ActionFailed.STATIC_PACKET);

+                    return;

+                }

+                else if (((L2PcInstance) this).isTeam2Member() && ((((L2PcInstance) target).isTeam2Member() && Config.ENABLE_FACTION_ENGINE && (skill.getSkillType() == L2SkillType.BUFF)) || (skill.getSkillType() == L2SkillType.HOT) || (skill.getSkillType() == L2SkillType.HEAL) || (skill.getSkillType() == L2SkillType.COMBATPOINTHEAL) || (skill.getSkillType() == L2SkillType.HEAL_PERCENT) || (skill.getSkillType() == L2SkillType.MANAHEAL) || (skill.getSkillType() == L2SkillType.MANAHEAL_PERCENT) || (skill.getSkillType() == L2SkillType.BALANCE_LIFE) || (skill.getSkillType() == L2SkillType.CONT)))

+                {

+                    return;

+                }

+                }

+        }

 

And when i'm ig, i try to attack a same faction member, i get a message 'can't attack same faction member" but my character become bugued, he can't do anything, and i must restart to move again and attack mobs again...

 

How can i change java codes for fix this bug ?? :/

 

Thanks

2 answers to this question

Recommended Posts

  • 0
Posted

First, this faction engine sux, just from the little you shared. I don't think you can do it heavier lol.

 

Second, this famous bug happens when you don't have actionFailed packet call. You have to add actionFailed packet else you're stuck like you say. Guess what, you're not supposed to have this bug but you have it, congratulations.

 

Third, you have to target yourself and press escape to move again.

 

Fourth, what chronicle ? It's supposed to be Interlude bug if it's not related to your shared code. And apparently, it doesn't have to be.

 

Fifth, only my faction server will rule the world and elpies, muahahah.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..