just_a_poor_boy

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • in reply to: Combat assist issue #40014

    just_a_poor_boy
    Participant
    0

    I can report that the Dalamud plugin “ReAction” was responsible. I guess it changed something about the buttons!

    in reply to: Teamcraft to Miqobot Script #34943

    just_a_poor_boy
    Participant
    0

    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.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Crafting Works (For the most part) #34816

    just_a_poor_boy
    Participant
    0

    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

    in reply to: Teamcraft to Miqobot Script #34433

    just_a_poor_boy
    Participant
    0

    V0.2 fixed Waste Not II not being replaced by the correct button (the String replace function first replaced Waste Not)

    in reply to: Presets Helper #27120

    just_a_poor_boy
    Participant
    1+

    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
    
    in reply to: Presets Helper #27119

    just_a_poor_boy
    Participant
    0

    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
    
    in reply to: Anyone else's framerate drops with miqo? #23224

    just_a_poor_boy
    Participant
    0

    I’ve noticed some strange behavior when using any Miqobot overlay. Try disabling the radar, waypoint, and other overlays completely and see if that changes anything.

    in reply to: Feature suggestion for crafting #18494

    just_a_poor_boy
    Participant
    0

    I was thinking the same, also would love if there would be a progression bar for the total amount of crafted items and maybe an ETA to completion, using the average time the items crafted before in the session took.

    in reply to: Shadowbringers 5.58 – Issues & Feedback #18413

    just_a_poor_boy
    Participant
    0

    BB is working fine for me, solver is really good except the thing i said earlier.
    For reference here are my settings

    Attachments:
    You must be logged in to view attached files.
    in reply to: Shadowbringers 5.58 – Issues & Feedback #18410

    just_a_poor_boy
    Participant
    0

    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.

Viewing 10 posts - 1 through 10 (of 10 total)