Hello,
You can create plugin (change id in this plugin: http://wrobot.eu/files/file/517-potion-of-luck/ )
Or, if it is only for one quest, add step type 'RunCode' before 'pulse' (and after 'PickUp') quest with code:
Thread t = new Thread(() =>
{
uint itemId = 62899;
int questId = 93351;
uint buffId = 135855;
while (robotManager.Products.Products.IsStarted)
{
if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
{
if (!Quest.HasQuest(questId))
break;
if (!ObjectManager.Me.HaveBuff(buffId))
{
ItemsManager.UseItem(itemId);
}
}
Thread.Sleep(500);
}
});
t.Start();
(ofcourse, change itemId, questId and buffId)