.dll
file that hooks into SDVX and automatically sends
- the scores to a server. {TachiConfig.name} is compatible with what Mikado sends,
- so you can use it to submit scores!
+ Mikado is a .dll
file that hooks into SDVX and automatically sends the
+ scores to a server. {TachiConfig.name} is compatible with what Mikado sends, so you
+ can use it to submit scores!
-K mikado.dll
to your .bat
{" "}
- file.
+ BemaniTools: Add -K mikado.dll
to your .bat
file.
-k mikado.dll
to your .bat
file.
diff --git a/client/src/app/pages/dashboard/users/UserIntegrationsPage.tsx b/client/src/app/pages/dashboard/users/UserIntegrationsPage.tsx
index 6b7b8d26a..ba090e41f 100644
--- a/client/src/app/pages/dashboard/users/UserIntegrationsPage.tsx
+++ b/client/src/app/pages/dashboard/users/UserIntegrationsPage.tsx
@@ -25,9 +25,9 @@ import {
} from "tachi-common";
import { SetState } from "types/react";
import { CGNeedsIntegrate } from "components/imports/CGIntegrationPage";
+import { MYTNeedsIntegrate } from "components/imports/MYTIntegrationPage";
import FervidexIntegrationPage from "./FervidexIntegrationPage";
import KsHookSV6CIntegrationPage from "./KsHookSV6CIntegrationPage";
-import { MYTNeedsIntegrate } from "components/imports/MYTIntegrationPage";
export default function UserIntegrationsPage({ reqUser }: { reqUser: UserDocument }) {
useSetSubheader(
@@ -995,10 +995,10 @@ function CGIntegrationInfo({ cgType, userID }: { cgType: "dev" | "gan" | "nag";
function MYTIntegrationInfo({ userID }: { userID: integer }) {
const [reload, shouldReloadAuthInfo] = useReducer((x) => x + 1, 0);
- const { data, error } = useApiQuery<{ authStatus: boolean; }>(
+ const { data, error } = useApiQuery<{ authStatus: boolean }>(
`/users/${userID}/integrations/myt`,
undefined,
- [reload],
+ [reload]
);
if (error) {
@@ -1023,7 +1023,7 @@ function MYTIntegrationInfo({ userID }: { userID: integer }) {
},
},
true,
- true,
+ true
);
if (res.success) {
@@ -1031,5 +1031,5 @@ function MYTIntegrationInfo({ userID }: { userID: integer }) {
}
}}
/>
- )
+ );
}
diff --git a/client/src/components/imports/MYTIntegrationPage.tsx b/client/src/components/imports/MYTIntegrationPage.tsx
index baa670944..804328476 100644
--- a/client/src/components/imports/MYTIntegrationPage.tsx
+++ b/client/src/components/imports/MYTIntegrationPage.tsx
@@ -1,3 +1,4 @@
+import { APIFetchV1 } from "util/api";
import { ErrorPage } from "app/pages/ErrorPage";
import useSetSubheader from "components/layout/header/useSetSubheader";
import ApiError from "components/util/ApiError";
@@ -12,7 +13,6 @@ import React, { useContext, useReducer, useState } from "react";
import { Form, Button } from "react-bootstrap";
import { APIImportTypes, GetGameConfig, MYTAuthDocument } from "tachi-common";
import { SetState } from "types/react";
-import { APIFetchV1 } from "util/api";
import ImportStateRenderer from "./ImportStateRenderer";
export default function MYTIntegrationPage() {
@@ -29,7 +29,7 @@ export default function MYTIntegrationPage() {
return