Results: 13Comments by: mudcrabs
File: Tamriel Trade Centre03/17/19
I got a 500 Internal Server Error i...
Posted By: mudcrabs
I got a 500 Internal Server Error in AttemptLogin(), in GetCheckAuthResult(). On a second try it spent about a minute on "Checking Login Status" (though the log already said Login Successful), but it did succeed. Website search is also down. "An unknown error occurred. Please verify your entry and try again..."
File: Master Merchant03/04/19
The next problem is that ProcessSom...
Posted By: mudcrabs
The next problem is that ProcessSome() is expected to "return startIndex, endIndex, loopIncrement", and the combat delay code returns nothing, blanking out those return variables which breaks a lot of code after it's called. The top of DoScan() might be a better place for it. The original delay code worked in ScanOlder() because i...
File: LoreBooks03/03/19
I kept getting errors but it turned...
Posted By: mudcrabs
I kept getting errors but it turned out that Minion failed to detect that it needed updating. Minion displayed 14.1 and that it was up to date, but the files themselves were last updated February 28th and LoreBooks.txt still said "Version: 14". Right clicking and choosing "reinstall" forced it to update, but it's weird that Minion...
File: Master Merchant02/26/19
I noticed you copied it to ProcessS...
Posted By: mudcrabs
I noticed you copied it to ProcessSome() too but it's still calling ScanOlder(), with the same arguments which wouldn't exist in that context, instead of calling ProcessSome with it's own arguments. Added a bit of this to delay scanning and processing while in combat.
File: Master Merchant02/23/19
I've tried making a couple changes...
Posted By: mudcrabs
I've tried making a couple changes today, though it's too soon to say if I did it correctly. The first change is to pause scanning while in combat. The second change is to effectively turn the maximum 10-minute scan interval into a once-daily option. --- C:/src/MasterMerchant/MasterMerchant copy.lua Fri Feb 15 22:20:00 2019 +++ C...
File: Tamriel Trade Centre10/28/18
Same here. The server seems overloa...
Posted By: mudcrabs
Same here. The server seems overloaded, so the client hangs and fails either at checking login status or the following step.
File: Fast Ride10/25/18
If I dismount by pressing block (ri...
Posted By: mudcrabs
If I dismount by pressing block (right click), it thinks I'm still mounted and rapid maneuver remains slotted. The icon remains gold. Dismounting by pressing H works. I've been trying Fast Ride for the first time because Assist Rapid Riding is having similar problems since Murkmire, but hasn't been updated, so I uninstalled it and...
File: Assist Rapid Riding10/23/18
It's behaving odd in Murkmire. I'll...
Posted By: mudcrabs
It's behaving odd in Murkmire. I'll cast while mounted and rapid maneuver will stay slotted like it didn't detect it, then when I dismount, it unslots, but then when the effect is about to wear off, it reslots it again even though I'm not mounted. Then I have to manually reslot the correct skill.
File: Tamriel Trade Centre10/10/18
New items not posted
Posted By: mudcrabs
Listings for new items like the Swamp Jelly runebox fragments from the Murkmire prologue quest aren't being uploaded.
File: HarvestMap02/06/18
"Enable 3D pins" keeps turning back...
Posted By: mudcrabs
"Enable 3D pins" keeps turning back on after I log out and back in with a different character, even if I've previously turned it off on that character. I've had "Account-wide Settings" on since the major update and I've had to turn 3D pins off again on my main 3 or 4 times now.
File: Tamriel Trade Centre04/03/17
For several days, the client's been...
Posted By: mudcrabs
For several days, the client's been removing and reposting the same listing on startup. Login Successful Successfully removed 1 entries from trade listing. Item Hissmir Fish-Eye Rye has been posted That's the item, not the recipe. I had crafted 4 to try 1, then listed the last 3. Other listings are still posting normally. I w...
File: StopIt!03/18/17
One quirk I run into is if I open m...
Posted By: mudcrabs
One quirk I run into is if I open my inventory tab, and try to equip a different weapon while my current weapon is unsheathed, it briefly equips the weapon, then reequips my original weapon. A workaround is to make sure weapons are sheathed before equipping a different weapon. I think the quirk goes unnoticed in the vanilla game b...
File: MitigationPercent (with working penetration stat)06/11/16
Adding this near the top of Mitigat...
Posted By: mudcrabs
Adding this near the top of MitigationPercent.lua, and replacing all instances of ZO_GamepadStatsTopLevelRightPaneInfoPanelCharacterStatsPanel with ZO_GamepadStatsTopLevelRightPaneInfoPanelAttributesPanel seemed to do it for me: local function ChampionToVet(champ) return math.min(math.max(math.floor(champ/10), 1), 16) end loca...