Compare commits

...

1 Commits

Author SHA1 Message Date
Kei-Luna
3bc30812aa Added a warning against scam. Die, scammers! 2026-05-18 07:32:25 +09:00
4 changed files with 25 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ public class MikuSB
var time = DateTime.Now; var time = DateTime.Now;
IConsole.InitConsole(); IConsole.InitConsole();
LoaderManager.InitConfig(); LoaderManager.InitConfig();
ShowAntiScamWarning();
if (await UpdateService.TryStartSelfUpdateAsync()) if (await UpdateService.TryStartSelfUpdateAsync())
return; return;
@@ -65,6 +66,16 @@ public class MikuSB
await ProcessExit(Volatile.Read(ref _exitCode)); await ProcessExit(Volatile.Read(ref _exitCode));
} }
private static void ShowAntiScamWarning()
{
Logger.Warn("============================================================");
Logger.Warn("MikuSB is completely free and open source.");
Logger.Warn("If you paid anyone for this server, you were scammed.");
Logger.Warn("Request a refund immediately and report the seller to us.");
Logger.Warn("Discord: https://discord.gg/aMwCu9JyUR");
Logger.Warn("============================================================");
}
#region Exit #region Exit
private static void RegisterExitEvent() private static void RegisterExitEvent()
@@ -109,4 +120,4 @@ public class MikuSB
} }
# endregion # endregion
} }

View File

@@ -7,6 +7,12 @@
日本語のドキュメントは [README_jp.md](README_jp.md) にあります。 日本語のドキュメントは [README_jp.md](README_jp.md) にあります。
## Scam Warning
MikuSB is completely free and open source.
If anyone sold you this server or charged money to provide it, that was a scam.
Request a refund immediately and report the seller to us on Discord with any relevant proof or purchase details.
## Overview ## Overview
- `SdkServer` - `SdkServer`

View File

@@ -7,6 +7,12 @@
English documentation is available in [README.md](README.md). English documentation is available in [README.md](README.md).
## 詐欺に関する警告
MikuSB は完全無料のオープンソースです。
このサーバーを誰かから有料で販売された場合、それは詐欺です。
すぐに返金を申請し、購入記録や証拠とあわせて Discord で私たちに通報してください。
## 概要 ## 概要
- `SdkServer` - `SdkServer`

View File

@@ -1 +1 @@
v=3.2 v=3.3