├── LICENSE ├── README.md ├── build_dep.bat └── source ├── .gitignore ├── Assets ├── AFConfig.cs ├── AFConfig.cs.meta ├── AFObjectElement.cs ├── AFObjectElement.cs.meta ├── DataConfig.meta ├── DataConfig │ ├── Ini.meta │ ├── Ini │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── AwardPackConfig.xml │ │ │ ├── AwardPackConfig.xml.meta │ │ │ ├── EqupConfig.xml │ │ │ ├── EqupConfig.xml.meta │ │ │ ├── GuildConfig.xml │ │ │ ├── GuildConfig.xml.meta │ │ │ ├── PlayerLevelConfig.xml │ │ │ └── PlayerLevelConfig.xml.meta │ │ ├── FleetingSystem.meta │ │ ├── FleetingSystem │ │ │ ├── ActionHero.xml │ │ │ ├── ActionHero.xml.meta │ │ │ ├── Alch_plate.xml │ │ │ ├── Alch_plate.xml.meta │ │ │ ├── Demo.xml │ │ │ ├── Demo.xml.meta │ │ │ ├── Elves.xml │ │ │ ├── Elves.xml.meta │ │ │ ├── test.xml │ │ │ └── test.xml.meta │ │ ├── NPC.meta │ │ ├── NPC │ │ │ ├── Buff.xml │ │ │ ├── Buff.xml.meta │ │ │ ├── ChatGroup.xml │ │ │ ├── ChatGroup.xml.meta │ │ │ ├── ConsumeData.xml │ │ │ ├── ConsumeData.xml.meta │ │ │ ├── Cost.xml │ │ │ ├── Cost.xml.meta │ │ │ ├── DescData.xml │ │ │ ├── DescData.xml.meta │ │ │ ├── EffectData.xml │ │ │ ├── EffectData.xml.meta │ │ │ ├── Equip.xml │ │ │ ├── Equip.xml.meta │ │ │ ├── Guild.xml │ │ │ ├── Guild.xml.meta │ │ │ ├── GuildConfig.xml │ │ │ ├── GuildConfig.xml.meta │ │ │ ├── GuildJob.xml │ │ │ ├── GuildJob.xml.meta │ │ │ ├── GuildName.xml │ │ │ ├── GuildName.xml.meta │ │ │ ├── IObject.xml │ │ │ ├── IObject.xml.meta │ │ │ ├── InitProperty.xml │ │ │ ├── InitProperty.xml.meta │ │ │ ├── Item.xml │ │ │ ├── Item.xml.meta │ │ │ ├── Language.xml │ │ │ ├── Language.xml.meta │ │ │ ├── Map.xml │ │ │ ├── Map.xml.meta │ │ │ ├── NPC.xml │ │ │ ├── NPC.xml.meta │ │ │ ├── Player.xml │ │ │ ├── Player.xml.meta │ │ │ ├── READNE.md │ │ │ ├── READNE.md.meta │ │ │ ├── Scene.xml │ │ │ ├── Scene.xml.meta │ │ │ ├── Server.xml │ │ │ ├── Server.xml.meta │ │ │ ├── Shop.xml │ │ │ ├── Shop.xml.meta │ │ │ ├── Skill.xml │ │ │ ├── Skill.xml.meta │ │ │ ├── SkillRef.xml │ │ │ ├── SkillRef.xml.meta │ │ │ ├── SqlServer.xml │ │ │ ├── SqlServer.xml.meta │ │ │ ├── StateFuncResources.xml │ │ │ ├── StateFuncResources.xml.meta │ │ │ ├── StateFunction.xml │ │ │ ├── StateFunction.xml.meta │ │ │ ├── Talent.xml │ │ │ ├── Talent.xml.meta │ │ │ ├── Task.xml │ │ │ └── Task.xml.meta │ │ ├── Scene.meta │ │ └── Scene │ │ │ ├── 1.xml │ │ │ ├── 1.xml.meta │ │ │ ├── 2.xml │ │ │ ├── 2.xml.meta │ │ │ ├── 3.xml │ │ │ ├── 3.xml.meta │ │ │ ├── 4.xml │ │ │ ├── 4.xml.meta │ │ │ ├── 5.xml │ │ │ ├── 5.xml.meta │ │ │ ├── 6.xml │ │ │ └── 6.xml.meta │ ├── Struct.meta │ └── Struct │ │ ├── Class.meta │ │ ├── Class │ │ ├── Buff.xml │ │ ├── Buff.xml.meta │ │ ├── ChatGroup.xml │ │ ├── ChatGroup.xml.meta │ │ ├── ConsumeData.xml │ │ ├── ConsumeData.xml.meta │ │ ├── Cost.xml │ │ ├── Cost.xml.meta │ │ ├── DescData.xml │ │ ├── DescData.xml.meta │ │ ├── EffectData.xml │ │ ├── EffectData.xml.meta │ │ ├── Equip.xml │ │ ├── Equip.xml.meta │ │ ├── Guild.xml │ │ ├── Guild.xml.meta │ │ ├── GuildConfig.xml │ │ ├── GuildConfig.xml.meta │ │ ├── GuildJob.xml │ │ ├── GuildJob.xml.meta │ │ ├── GuildName.xml │ │ ├── GuildName.xml.meta │ │ ├── IObject.xml │ │ ├── IObject.xml.meta │ │ ├── InitProperty.xml │ │ ├── InitProperty.xml.meta │ │ ├── Item.xml │ │ ├── Item.xml.meta │ │ ├── Language.xml │ │ ├── Language.xml.meta │ │ ├── Map.xml │ │ ├── Map.xml.meta │ │ ├── NPC.xml │ │ ├── NPC.xml.meta │ │ ├── Player.xml │ │ ├── Player.xml.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Scene.xml │ │ ├── Scene.xml.meta │ │ ├── Server.xml │ │ ├── Server.xml.meta │ │ ├── Shop.xml │ │ ├── Shop.xml.meta │ │ ├── Skill.xml │ │ ├── Skill.xml.meta │ │ ├── SkillRef.xml │ │ ├── SkillRef.xml.meta │ │ ├── SqlServer.xml │ │ ├── SqlServer.xml.meta │ │ ├── StateFuncResources.xml │ │ ├── StateFuncResources.xml.meta │ │ ├── StateFunction.xml │ │ ├── StateFunction.xml.meta │ │ ├── Talent.xml │ │ ├── Talent.xml.meta │ │ ├── Task.xml │ │ └── Task.xml.meta │ │ ├── LogicClass.xml │ │ └── LogicClass.xml.meta ├── Plugins │ └── Google.Protobuf.dll ├── TCP.unity ├── TCP.unity.meta ├── UnityVS.meta ├── _NF.meta ├── _NF │ ├── AFCWindowEvent.cs │ ├── AFCWindowEvent.cs.meta │ ├── AFStart.cs │ ├── AFStart.cs.meta │ ├── ArkGameClient.meta │ ├── NFRenderScript.meta │ ├── NFRenderScript │ │ ├── AFCRenderInterface.cs │ │ └── AFCRenderInterface.cs.meta │ ├── Utility.meta │ ├── Utility │ │ ├── DontDestroy.cs │ │ └── DontDestroy.cs.meta │ ├── build_dep.bat │ └── build_dep.bat.meta ├── smcs.rsp └── smcs.rsp.meta ├── Config.xml ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── UnityVS.source.CSharp.csproj ├── UnityVS.source.sln └── UnityVS.source.sln.DotSettings /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ArkClient-Unity3D 2 | An Unity3D client to show how to use Unity3D and ArkGameFrame to create a network game. 3 | 4 | ---------- 5 | Please use [ArkGameFrame](https://github.com/ArkGame/ArkGameFrame "ArkGameFrame") ```DataConfig``` files. Config file is in source/config.xml 6 | 7 | ## How to use? 8 | 1. run **build_dep.bat** to update dependencies 9 | 2. open **source** with Unity 5.6+ 10 | -------------------------------------------------------------------------------- /build_dep.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | echo Building dependencies... 4 | cd source 5 | cd Assets 6 | cd _NF 7 | 8 | REM ###################################################################################################### 9 | echo Building ArkGameClient... 10 | 11 | if exist ArkGameClient (rd ArkGameClient /q /s) 12 | git clone https://github.com/ArkGame/ArkGameClient.git 13 | 14 | cd ArkGameClient 15 | call build_dep.bat 16 | 17 | -------------------------------------------------------------------------------- /source/.gitignore: -------------------------------------------------------------------------------- 1 | # =============== # 2 | # Unity generated # 3 | # =============== # 4 | Temp/ 5 | Library/ 6 | 7 | # ===================================== # 8 | # Visual Studio / MonoDevelop generated # 9 | # ===================================== # 10 | ExportedObj/ 11 | obj/ 12 | *.svd 13 | *.userprefs 14 | /*.csproj 15 | *.pidb 16 | *.suo 17 | /*.sln 18 | *.user 19 | *.unityproj 20 | *.booproj 21 | 22 | # ============ # 23 | # OS generated # 24 | # ============ # 25 | .DS_Store 26 | .DS_Store? 27 | ._* 28 | .Spotlight-V100 29 | .Trashes 30 | ehthumbs.db 31 | Thumbs.db -------------------------------------------------------------------------------- /source/Assets/AFConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Xml; 6 | using System.Collections; 7 | using AFTCPClient; 8 | using System.IO; 9 | using System.Net; 10 | using System.Net.Sockets; 11 | using System.Threading; 12 | using System.Runtime.InteropServices; 13 | 14 | public class AFConfig 15 | { 16 | private XmlDocument xmldoc = null; 17 | private XmlNode root = null; 18 | 19 | private int mnServerID = 0; 20 | private ArrayList aWorldList = null; 21 | private int mnCloneID = 0; 22 | private int mnCloneMinTime = 0; 23 | private int mnCloneMaxTime = 0; 24 | private int mnWalkMinTime = 0; 25 | private int mnWalkMaxTime = 0; 26 | private int mnCityID = 0; 27 | private string[] mstrArray = new string[100]; 28 | 29 | private int mnQuitMinTime = 0; 30 | private int mnQuitMaxTime = 0; 31 | private int mnMonsterCount = 0; 32 | 33 | private string mnChatData = null; 34 | private int mnChatMinTime = 0; 35 | private int mnChatMaxTime = 0; 36 | private String mstrRootPath = null; 37 | 38 | 39 | public void Load() 40 | { 41 | xmldoc = new XmlDocument(); 42 | 43 | xmldoc.Load("Config.xml"); 44 | root = xmldoc.SelectSingleNode("XML"); 45 | } 46 | 47 | public ArrayList GetServerList() 48 | { 49 | if (null == aWorldList) 50 | { 51 | aWorldList = new ArrayList(); 52 | 53 | XmlNode node = root.SelectSingleNode("Servers"); 54 | 55 | XmlNodeList nodeList = node.SelectNodes("Server"); 56 | for (int i = 0; i < nodeList.Count; ++i) 57 | { 58 | XmlNode nodeServer = nodeList.Item(i); 59 | XmlAttribute strIP = nodeServer.Attributes["IP"]; 60 | XmlAttribute strPort = nodeServer.Attributes["Port"]; 61 | 62 | string strServer = strIP.Value + ":" + strPort.Value; 63 | aWorldList.Add(strServer); 64 | } 65 | } 66 | 67 | return aWorldList; 68 | } 69 | 70 | public String GetConfigPath() 71 | { 72 | if (null == mstrRootPath) 73 | { 74 | XmlNode node = root.SelectSingleNode("ConfigPath"); 75 | if (null != node) 76 | { 77 | mstrRootPath = node.Attributes["Path"].Value; 78 | } 79 | } 80 | 81 | return mstrRootPath; 82 | } 83 | 84 | public bool GetSelectServer(ref string strIP, ref int nPort) 85 | { 86 | ArrayList serverList = GetServerList(); 87 | if (null != serverList && serverList.Count > 0) 88 | { 89 | string strData = (string)serverList[0]; 90 | string[] sArray = strData.Split(':'); 91 | if (sArray.Length == 2) 92 | { 93 | strIP = sArray[0]; 94 | nPort = int.Parse(sArray[1]); 95 | 96 | return true; 97 | } 98 | } 99 | 100 | return false; 101 | } 102 | } -------------------------------------------------------------------------------- /source/Assets/AFConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f6916d420718a5438043b48676c42a9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /source/Assets/AFObjectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenArkStudio/ArkClient-Unity3D/63ae92142ebe9efddbd1a9ac5c430dfbcac713e1/source/Assets/AFObjectElement.cs -------------------------------------------------------------------------------- /source/Assets/AFObjectElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 902ab6aea5ee82a4aaa0b22284462249 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1041c5b618e0cba4d9979e092b14b0e4 3 | folderAsset: yes 4 | timeCreated: 1505565040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69f260e5a7dc2cd4dbc12d55b796276e 3 | folderAsset: yes 4 | timeCreated: 1505565451 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e80a097ae15cd09458386e8e44f58ba7 3 | folderAsset: yes 4 | timeCreated: 1505565041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/AwardPackConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/AwardPackConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b575e770a8e9144aacce8cdd5568036 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/EqupConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/EqupConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee225ff49350fee40b82854d752383e4 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/GuildConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/GuildConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 840879b5c39dc3e41ba8ddc8ceac665b 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/PlayerLevelConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Common/PlayerLevelConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43ecf9ac5e37b5e4f8fd9beb413d31eb 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e741d6d3d99ace4b859b72803bfc306 3 | folderAsset: yes 4 | timeCreated: 1505565041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/ActionHero.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/ActionHero.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79c945f62c9e898408516b5b14da2f5f 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Alch_plate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Alch_plate.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88315ca6189f06143bb9aa1fad185954 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Demo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0228c0b897c2c848945adfa26b86789 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Elves.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 179 | 180 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/Elves.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b293859d903e0bc45a35ba1f81923f22 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/FleetingSystem/test.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1584ee9140913045b84246f8c128df4 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed0c0b86374f1734d911e5eeb7189c6b 3 | folderAsset: yes 4 | timeCreated: 1505565041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Buff.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Buff.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91d758d6d99576a4fb8be71523a5a353 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/ChatGroup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/ChatGroup.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43b74e357e722c041a558884cb17bb00 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/ConsumeData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/ConsumeData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0d2782b5e2944b45a61b6032ebf0339 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Cost.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Cost.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9093be5e8459d6f428d30cb356d14346 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/DescData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/DescData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8209d91efc2af5346bdb5956443a1399 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/EffectData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9278f737c4fcd0c42a16191bb4a9c8a8 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Equip.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Equip.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c4dde36e060e6e478f48d8a2795d7a9 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Guild.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Guild.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba8575bd8f5de574584977808f9db390 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 578de48192ba165418a859ef96f24bd0 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildJob.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildJob.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0132f365f4bfc94bb29f475208fe81e 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildName.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/GuildName.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 574467bf6723c774eb1a16300125f5ec 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/IObject.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/IObject.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bc652b037345df4680ac14700e723a2 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/InitProperty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/InitProperty.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e32c9b808a8debd41baaf0bf9fec2b45 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Item.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98ba73f8d057d8746be5d070db5f0bfd 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Language.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56adc5de14d0dd547a24c201df6ccac9 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Map.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Map.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddcefba5a50171d4fbcc7a5534948b0e 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/NPC.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 108475b7520b83b479842b4fe1efff85 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Player.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Player.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e04b2d22582ce1942844605d4c6151ad 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/READNE.md: -------------------------------------------------------------------------------- 1 | Please use ***"NFDataCfg/Tool/FileProcess.exe"*** to generate configuration files. -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/READNE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4588c61cb9dc104e97be13e4ba5bec5 3 | timeCreated: 1517799871 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Scene.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Scene.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4829363ac1ef71c46a46a39c1c3aee83 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Server.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d0f90126ac53a8478da203496656de5 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Shop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Shop.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f42c413a338756b4080c3777dae15a50 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Skill.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Skill.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df956fdcf1b94884aaf1ab1ecd526400 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/SkillRef.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/SkillRef.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e574e3b672c59644aab2abd40a39f186 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/SqlServer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/SqlServer.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9997aaf10ef75d243924b8f2e37ade9e 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/StateFuncResources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/StateFuncResources.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da06a5a2b1eb20145b3ba095ef4dd50d 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/StateFunction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/StateFunction.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b2c28491631d3a41aaf6eee142b3c9e 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Talent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Talent.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b21ed2786866834e80769a4443d5814 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Task.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/NPC/Task.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc3e43ded4e64b34d9754197de5e4a99 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c68e2bc74b9ea5f45bcb360dd6c47238 3 | folderAsset: yes 4 | timeCreated: 1505565041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/1.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19ee43cad30bfc44f8ce93bd4cdf1d65 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/2.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84afcaf248ec4524c97d67a7fab41473 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/3.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b4c9ec81b69c48489408fe7ec97b6bc 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/4.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cb6a8bfce451184cb98af6fbe639c70 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/5.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49fa6672109bb4447bd2ce2090fbef0f 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Ini/Scene/6.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81d3bfd4a5ae62148a76f46f1f482149 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b2845302171eaa46a9c24f6f3956860 3 | folderAsset: yes 4 | timeCreated: 1505565451 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 028803d0083750849b1d87c507242e9d 3 | folderAsset: yes 4 | timeCreated: 1505565040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Buff.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Buff.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf8bacc1a1a37b2479617016c0d9fac2 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/ChatGroup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/ChatGroup.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2309fdbec2304049ba8a4166d981edc 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/ConsumeData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/ConsumeData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e4f8f406dec2a4c824145f0e88a3fd 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Cost.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Cost.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bacc4625b1cc9d49a57073343553ca8 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/DescData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/DescData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 034c2f9980533a14a8db6823e1dbc099 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/EffectData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/EffectData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d4356c91603a464bb5451af80af2e5f 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Equip.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Equip.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 880eb370873f43b4bb841f5ecf7b6e35 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Guild.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Guild.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9fd5b98fadb1ef4cb1bd86cb90197db 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94d749e35ee3e3b4c81099362f39cace 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildJob.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildJob.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eb97659f604df647b37061b3fcaf18f 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildName.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/GuildName.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e886e98da8377d14ba1f946304041307 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/IObject.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/IObject.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ede8b5028b1b3ab4b9aea96688c9deb7 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/InitProperty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/InitProperty.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8695332400575c4ba98b078fb184b04 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Item.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd8f2ea8bb016f4383d9fc2a8653979 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Language.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Language.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5a9cea41d312324abf841802a391d93 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Map.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Map.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0088641f5d94c38419f64187f08cb86c 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/NPC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/NPC.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0054389952f7bf24382bb0207a25aa71 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Player.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb732431f20e63245be45313324e29b2 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/README.md: -------------------------------------------------------------------------------- 1 | Please use ***"NFDataCfg/Tool/FileProcess.exe"*** to generate configuration files. -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4cc947ebea4a2f499f036c8231bdc95 3 | timeCreated: 1517799871 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Scene.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Scene.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bb73c0cfc8500a40bc6e37ddb7481d3 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Server.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 316d9fc7be9805e45a19fd814a329a39 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Shop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Shop.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ba1be00f327fe44696f30d3ec0219f3 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Skill.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Skill.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cba6f6253acd250479faaa5853b3dd58 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/SkillRef.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/SkillRef.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e56a7b91a8f055428871a6f88e88c08 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/SqlServer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/SqlServer.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d13bea85d10b5242a5e1df9a89f0def 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/StateFuncResources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/StateFuncResources.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 229df46f945e23442a000f94eff86587 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/StateFunction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/StateFunction.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6952da69cfad8b3459c4b80febc3e10c 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Talent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Talent.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49cd7d32a6aafb74da5ad589dd482fd0 3 | timeCreated: 1517799872 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Task.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/Class/Task.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4dcf4671ad5f042a5c6bd152cab146 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/LogicClass.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /source/Assets/DataConfig/Struct/LogicClass.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3da2d249fedd944e9c0263b71f8a17d 3 | timeCreated: 1517799873 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /source/Assets/Plugins/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenArkStudio/ArkClient-Unity3D/63ae92142ebe9efddbd1a9ac5c430dfbcac713e1/source/Assets/Plugins/Google.Protobuf.dll -------------------------------------------------------------------------------- /source/Assets/TCP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenArkStudio/ArkClient-Unity3D/63ae92142ebe9efddbd1a9ac5c430dfbcac713e1/source/Assets/TCP.unity -------------------------------------------------------------------------------- /source/Assets/TCP.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b868e234b3309fc4995792b996e0f30d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /source/Assets/UnityVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02fe78e962405814a83b8ba6c9471d32 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /source/Assets/_NF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7036defb7d37e24780f7690316663c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /source/Assets/_NF/AFCWindowEvent.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | using System.Collections; 4 | 5 | public class AFCWindowEvent : MonoBehaviour 6 | { 7 | public enum WCHAT_CONTROL_ENUM 8 | { 9 | WCCE_ROOT, 10 | WCCE_STOP, 11 | WCCE_GLOBAL, 12 | WCCE_GUILD, 13 | WCCE_PRIVATE, 14 | WCCE_ROOM, 15 | WCCE_TEAM, 16 | 17 | 18 | //WCCE_ROOT = 10, 19 | WCCE_GLOBAL_PANEL = 11, 20 | WCCE_GUILD_PANEL = 12, 21 | WCCE_TEAM_PANEL = 13, 22 | WCCE_PRIVATE_PANEL = 14, 23 | 24 | WCCE_GLOBAL_DATA = 21, 25 | WCCE_GUILD_DATA = 22, 26 | WCCE_TEAM_DATA = 23, 27 | WCCE_PRIVATE_DATA = 24, 28 | 29 | WCCE_GLOBAL_INPUT = 31, 30 | WCCE_GUILD_INPUT = 32, 31 | WCCE_TEAM_INPUT = 33, 32 | WCCE_PRIVATE_INPUT = 34, 33 | 34 | WCCE_SEND_GLOBAL = 100, 35 | WCCE_SEND_GUILD = 101, 36 | WCCE_SEND_TEAM = 102, 37 | WCCE_SEND_PRIVATE = 103, 38 | } 39 | 40 | //////////all the windows logic class must need the next three menber elements 41 | public WCHAT_CONTROL_ENUM eControlType; 42 | private static Hashtable mhtWindow = new Hashtable(); 43 | ///////////////////////////////////////////////////// 44 | 45 | ////////////////////////////////////////////////////////////////////////////////// 46 | 47 | void Awake() 48 | { 49 | mhtWindow[eControlType] = this.gameObject; 50 | } 51 | 52 | // Use this for initialization 53 | void Start() 54 | { 55 | Button btn = this.gameObject.GetComponent