This commit is contained in:
2024-07-18 22:48:21 -05:00
commit 9cc712f46d
25514 changed files with 20551518 additions and 0 deletions
@@ -0,0 +1,6 @@
<StrSheet_GameStat xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/StrSheet_GameStat StrSheet_GameStat.xsd" xmlns="https://vezel.dev/novadrop/dc/StrSheet_GameStat">
<String string="서버 응답 시간: {ICON} {TIME}ms &lt;br&gt;(개인 환경에 따라 달라질 수 있습니다.)" readableId="SMT_GAMESTAT_PING" />
<String string="캐릭터 접속 시간: " readableId="SMT_GAMESTAT_CURRENT_SESSION" />
<String string="캐릭터 총 플레이 시간: " readableId="SMT_GAMESTAT_TOTAL_PLAYTIME" />
<String string="서버시간: " readableId="SMT_GAMESTAT_SERVER_TIME" />
</StrSheet_GameStat>
+22
View File
@@ -0,0 +1,22 @@
<!-- SPDX-License-Identifier: 0BSD -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dc="https://vezel.dev/novadrop/dc"
xmlns="https://vezel.dev/novadrop/dc/StrSheet_GameStat"
targetNamespace="https://vezel.dev/novadrop/dc/StrSheet_GameStat"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="StrSheet_GameStat">
<xsd:sequence>
<xsd:element name="String" type="StrSheet_GameStat_String" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="StrSheet_GameStat_String">
<xsd:attribute name="readableId" type="xsd:string" use="required" />
<xsd:attribute name="string" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:element name="StrSheet_GameStat" type="StrSheet_GameStat" />
</xsd:schema>