Jump to content
  • 0

Automatic Potions When Activechar.isstunned


Question

Posted (edited)

Hello again. Im fixing some things in my automatic potions code.

 

It was spamming pots even when char had some abnormal status like stunned, sleeping, paralized etc.

 

So I added this:

 

if (activeChar.isStunned() || activeChar.isConfused() || activeChar.isAway() || activeChar.isParalyzed() || activeChar.isSleeping() || activeChar.isDead())
{
activeChar.sendMessage("You Cannot Use Items Right Now.");
activeChar.sendPacket(new ExAutoSoulShot(id, 0));
activeChar.setAutoPot(id, null, false);
return;
}
 
BUT, this way, im disabling the toggle skill with : activeChar.sendPacket(new ExAutoSoulShot(id, 0));
And stoping the use of the pots: activeChar.setAutoPot(id, null, false);
 
This way when I get stunned (etc) the toggle potion (ExAutoSoulShot)  is disabled and the usage stops. But its a pain in the ass cause when stun effect is off, I need to right click again in the 3 potions to activate it again.
 
Well, it fixes my problem but cause another one lol. The best solution would be: Keep toggle skill active but dont use pots, and once the abnormal effect is off, it will consume potions again without needing to right click them all again.
Edited by tiguz

Recommended Posts

  • 0
Posted (edited)
            if (activeChar.isStunned() || activeChar.isConfused() || activeChar.isAway() || activeChar.isParalyzed() || activeChar.isSleeping() || activeChar.isDead())
            {
                activeChar.sendMessage("You Cannot Use Items Right Now.");
                activeChar.sendPacket(new ExAutoSoulShot(id, 0));
                activeChar.setAutoPot(id, null, false);
                return;
           } 
The check already exists, simply remove two/three lines (return is a must) and voila.

 

AutoPot runnable method.

 

Thank you for the tip. I removed: 

activeChar.sendPacket(new ExAutoSoulShot(id, 0));

activeChar.setAutoPot(id, null, false);

 

and now its running perfectly, only interrupting the usage of pots while some of the abnormal states are in effect, and never turning the toggles off entirely. So when the effect wears off, it automatically starts consuming the pots again. I wonder why didnt u just told me what lines exactly to remove lol. For u its just like reading a book. For me took me some time to figure out since im a stranger to this =P

 

Thank you both Solomon and Sweets!

Edited by tiguz
Guest
This topic is now closed to further replies.


×
×
  • Create New...