Forum Replies Created
-
AuthorPosts
-
V0.3: Ability to convert multi-macro TC macros: Copy all macros including the “Macro duration: xx.” in between and it will convert everything in one go
Added automatic mode: When checked, will paste the converted code directly into Miqobot after copying from Teamcraft; best if you create a new Crafting Preset beforehand, then after press “Overwrite”
Cleaned up code.@miqobot: I hope this is allowed. This script in no way replaces the function of Miqobot, it just makes it a bit easier to use.
- This reply was modified 2 years, 10 months ago by just_a_poor_boy.
- This reply was modified 2 years, 10 months ago by just_a_poor_boy.
- This reply was modified 2 years, 10 months ago by just_a_poor_boy.
Attachments:
You must be logged in to view attached files.Note that it’s not *officially* supported, but it’s a whole hell of a lot better than typing out each damn hotkey in Miqobot. Makes crafting those rarefied armlets SO much better.
Please take a look at this
Here’s script 2:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. Loop, Files, miqobot_v*.exe { exe := A_LoopFileName } run, %exe% return
Well I Just found out you can’t attach AHK files.
Here’s Script #1:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #SingleInstance, force If !FileExist("presets.miqo"){ MsgBox,, Presets Helper Error, Miqobot Preset file not found! Please put me in same directory as the Miqobot executable and make sure you ran it before. Exitapp } Loop, Files, miqobot_v*.exe { Process, Exist, %A_LoopFileName% if ErrorLevel MsgBox,, Presets Helper Error, Miqobot is currently running! Changes to the presets can not be saved. } Gui, New,, Presets Helper Gui, Add, ListView, w800 h400 NoSort, Content|#|Type|Name|Description entry := 1 Loop, Read, presets.miqo { If Mod(A_Index, 2) { typename := StrSplit(A_LoopReadLine, ".",, MaxParts := 2) type := typename[1], name := typename[2] } else { Content_%Entry% := A_LoopReadLine RegExMatch(A_LoopReadLine, "description"":""(.*?)"",""", desc) LV_Add("", Content_%Entry%, entry, type, name, desc1) LV_ModifyCol() Lv_ModifyCol(1,0) entry++ } } Gui, Add, Button, gDelete, Delete Entry Gui, Add, Button, gSave x+m, Save Gui, Show return Delete: RowNumber := 0 Loop { RowNumber := LV_GetNext(RowNumber) if not RowNumber break LV_Delete(RowNumber) } return Save: FileMove, presets.miqo, presets.miko.bak Loop { LV_GetText(type, A_Index, 3) If (type = "") break LV_GetText(name, A_Index, 4) LV_GetText(content, A_Index, 1) FileAppend, %type%.%name%<code>n%content%</code>n, presets.miqo } return Esc::ExitApp GuiClose: GuiEscape: ExitApp
BB is working fine for me, solver is really good except the thing i said earlier.
For reference here are my settingsAttachments:
You must be logged in to view attached files.Hello, I would like to report a possible issue with the skill “Rapid Synthesis”, at level 63 its eficiency goes from 250 to 500%, now when I use the solver at around level 71 up to 80, rapid synthesis gets used by miqobot and finishes the item before quality can be increased.
You can untick Progress first in Miqobot or remove the skill from your tool bar but that isn’t optimal. -
AuthorPosts