Pandora | Ultima Online

Community => General Discussion => Topic started by: zaxarus on July 24, 2013, 08:21:55 AM

Title: Timers
Post by: zaxarus on July 24, 2013, 08:21:55 AM
What are the (exact) timers on Pandora for using Apples & Potions?

ty

Title: Re: Timers
Post by: Horns Nigel on July 24, 2013, 10:11:56 AM
Was also curious what the fastest bandage time is?....Nigel
Title: Re: Timers
Post by: zaxarus on July 24, 2013, 11:21:33 AM
2,00 secs

But i'm talking about the delay between using and re-using ;)
Title: Re: Timers
Post by: Voxpire on July 24, 2013, 11:22:56 AM
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;
}
Title: Re: Timers
Post by: zaxarus on July 24, 2013, 12:09:41 PM
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.
Title: Re: Timers
Post by: Voxpire on July 24, 2013, 01:07:20 PM
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
Title: Re: Timers
Post by: zaxarus on July 26, 2013, 07:08:53 AM
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".)

Title: Re: Timers
Post by: Voxpire on July 26, 2013, 12:58:38 PM
Mana Pots:

Lesser - 10 sec
Normal - 20 sec
Greater - 30 sec
Title: Re: Timers
Post by: zaxarus on July 26, 2013, 01:33:48 PM
Cool, tyvm!
EhPortal 1.39.6 © 2025, WebDev