Compare commits

...

1 Commits
v3.2 ... v3.3

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;
IConsole.InitConsole();
LoaderManager.InitConfig();
ShowAntiScamWarning();
if (await UpdateService.TryStartSelfUpdateAsync())
return;
@@ -65,6 +66,16 @@ public class MikuSB
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
private static void RegisterExitEvent()

View File

@@ -7,6 +7,12 @@
日本語のドキュメントは [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
- `SdkServer`

View File

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

View File

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