Jump to content
  • 0

use potions and skills?


Question

Posted

in the final version of l2 you could use your skills and potions at the same time, while hitting the f1 to use a skill you could click with mouse on potion and it would use as well. but in freya you have to stop using any skills just to use mana or hp pots.

 

 

does anyone know why this is, or how to change it?

6 answers to this question

Recommended Posts

  • 0
Posted

network/clientpackets/UseItem.java

 

	// No UseItem is allowed while the player is in special conditions
	if (activeChar.isStunned()
			|| activeChar.isSleeping()
			|| activeChar.isParalyzed()
			|| activeChar.isAlikeDead()
			|| activeChar.isAfraid()
			|| activeChar.isCastingNow())
	{
		return;

 

self-explanatory i guess

  • 0
Posted

network/clientpackets/UseItem.java

 

	// No UseItem is allowed while the player is in special conditions
	if (activeChar.isStunned()
			|| activeChar.isSleeping()
			|| activeChar.isParalyzed()
			|| activeChar.isAlikeDead()
			|| activeChar.isAfraid()
			|| activeChar.isCastingNow())
	{
		return;

 

self-explanatory i guess

 

where can i find this file? I know about server files but not core files, so if this is part of the core section i'm lost.

  • 0
Posted

its core file which is compressed to 1 file after compiling, so if u dont use eclipse, u cant change that file and later compile it

  • 0
Posted
where can i find this file? I know about server files but not core files, so if this is part of the core section i'm lost.

 

Read sticked guides about how to compile, basic about L2J source etc.

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..