Forum › Forums › Discussion › Does Miqobot have auto food/potions for crafting
Tagged: question
This topic contains 4 replies, has 3 voices, and was last updated by
Lyfox 3 years, 9 months ago.
-
AuthorPosts
-
January 8, 2022 at 9:32 am #35035January 8, 2022 at 10:25 am #35040January 8, 2022 at 4:04 pm #35048
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 3 years, 9 months ago by
BepoN.
January 8, 2022 at 6:39 pm #35050it 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 tabfor 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.
January 8, 2022 at 8:31 pm #35056workFor() 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) -
This reply was modified 3 years, 9 months ago by
-
AuthorPosts
You must be logged in to reply to this topic.