Does Miqobot have auto food/potions for crafting

Forum Forums Discussion Does Miqobot have auto food/potions for crafting

Tagged: 

This topic contains 4 replies, has 3 voices, and was last updated by Lyfox Lyfox 2 years, 3 months ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #35035

    BepoN
    Participant
    0

    Trying to leave the crafting on overnight to craft the level 90** food, but it requires food and a potion so it can only run for 15 minutes which is the duration of the potion. Is there anyway to make Miqobot eat food every 30 minutes and potion every 15?

    #35040
    Lyfox
    Lyfox
    Participant
    0

    Put food on hotbar. Lets say its on hotbar 7 slot 3 and you need to wait 5 seconds after that for animation. Then make a scenario like this.

    icon(7, 3, 5.0)
    workFor(00:28)
    craft(max)
    repeatChapter(10)

    You can use potion the same way. Just make Miqo refresh it more often with workFor(00:14) or so.

    #35048

    BepoN
    Participant
    0

    It doesn’t seem to stop the crafting and use the potion, I have this right now: I am trying to also make it extract materia every hour

    sendicon(3, 8, 5)
    workFor(00:28)
    sendicon(3, 11, 5)
    workFor(00:13)
    startMateriaExtraction()
    workFor(01:00)
    craft(max)
    repeatChapter(1500)

    Will this also repair as well?

    • This reply was modified 2 years, 3 months ago by  BepoN.
    #35050

    xtchc
    Participant
    0

    it will repair under certain conditions.

    1) the repair option is enabled in the crafting tab
    2) if the craft(max) synths enough times to reach the repair # in the crafting tab

    for example, if craft(max) has you make 39 crafts in 1 hour but your repair threshold is 40, it won’t repair.

    you can use repair() to force a repair in the scenario editor.

    #35056
    Lyfox
    Lyfox
    Participant
    0

    workFor() doesnt do any crafting by itself. It sets the timer for the next craft() command and if you reset the timer several times only the last one will have an effect. You can click the question mark [?] button if you want to learn more about scenario functions.

    This is what you have to do for food and potions together.

    icon(7, 3, 5.0) //food
    
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    
    repeatChapter(10)

    And this is for one hour chapter with repair at the end.

    icon(7, 3, 5.0) //food
    icon(7, 3, 5.0) //food
    
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    icon(7, 4, 5.0) //potion
    workFor(00:14)
    craft(max)
    
    repair()
    repeatChapter(10)
Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.