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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...