What are the (exact) timers on Pandora for using Apples & Potions?
ty
Was also curious what the fastest bandage time is?....Nigel
2,00 secs
But i'm talking about the delay between using and re-using ;)
Exact times? Good luck..
bool onSelf = (healer == patient);
int dex = healer.Dex;
double seconds;
double resDelay = (patient.Alive ? 0.0 : 5.0);
if (onSelf)
{
if (Core.AOS)
{
seconds = 5.0 + (0.5 * ((double)(120 - dex) / 10)); // TODO: Verify algorithm
}
else
{
seconds = 9.4 + (0.6 * ((double)(120 - dex) / 10));
}
}
else
{
if (Core.AOS && GetPrimarySkill(patient) == SkillName.Veterinary)
{
seconds = 2.0;
}
else if (Core.AOS)
{
if (dex < 204)
{
seconds = 3.2 - (Math.Sin((double)dex / 130) * 2.5) + resDelay;
}
else
{
seconds = 0.7 + resDelay;
}
}
else
{
if (dex >= 100)
{
seconds = 3.0 + resDelay;
}
else if (dex >= 40)
{
seconds = 4.0 + resDelay;
}
else
{
seconds = 5.0 + resDelay;
}
}
}
if (seconds < 2.0)
{
seconds = 2.0;
}
Hmmm...
I mean:
Use Apple (WAIT) Use Apple
Drink Pot (WAIT) Dring Pot
^^
12 secs and 20 secs maybe?
Only found an old publish where it says 20 secs for potions, but idk if this is the latest info.
Potions are variable, anywhere from instant to 1 minute or more.
Healing potions, in specific;
Lesser: 3 sec
Normal: 8 sec
Greater: 10 sec
Apple: 15 sec
Mana Potion's delay is longer, isn't it? 20 secs maybe?
(Old publish from 2012 says "20 secs for potions", couldn't find more infos by "search".)
Mana Pots:
Lesser - 10 sec
Normal - 20 sec
Greater - 30 sec
Cool, tyvm!