mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-12 23:14:34 +01:00
36 lines
824 B
C#
36 lines
824 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.IntlServer
|
|
{
|
|
internal class JupiterAuthLogin : IntlMsgHandler
|
|
{
|
|
public override bool RequiresAuth => false;
|
|
|
|
protected override async Task HandleAsync()
|
|
{
|
|
await WriteJsonStringAsync(@"{
|
|
""result"": {
|
|
""error_code"": 0,
|
|
""error_message"": ""COMM_SUCC""
|
|
},
|
|
""game_launcher_info"": [
|
|
{
|
|
""id"": 27,
|
|
""execute_file"": ""NIKKE\\Game\\NIKKE.exe"",
|
|
""param"": """",
|
|
""description"": ""Nikke main process"",
|
|
""os"": ""any"",
|
|
""branch_id"": 0,
|
|
""status"": 1,
|
|
""param_type"": 1
|
|
}
|
|
]
|
|
}", true);
|
|
}
|
|
}
|
|
}
|