README.txt 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. NOTE: This short guide is for a L2J Server. http://l2jserver.com
  2. If you received this file as a part of a packaged or bundled build:
  3. L2J only supports L2J software obtained directly from L2J sources.
  4. What this means is, if you obtained L2J from a source other than our SVN or nightly distribution,
  5. you need to get support from where you got the files.
  6. We are unable to provide any technical assistance for unsupported software packages.
  7. The software may have virii, cause security problems,
  8. or even send your personal information to remote servers without your express consent.
  9. We cannot recommend the use of any of these packages on a server.
  10. WARNING: L2J Server is not a plug and play type of server.
  11. To setup the server and to run it successfully you need to do a lot of reading.
  12. If reading and learning are not something you like to do,
  13. Stop now.
  14. ====================
  15. L2J Server
  16. ====================
  17. $Date: 2006/12/06 19:14:22 $
  18. TOC:
  19. I. OVERVIEW
  20. II. LEGAL
  21. III. REQUIREMENTS
  22. IV. FIRST STARTUP
  23. V. ADMIN/GM's GUIDE
  24. VI. PLAYER's GUIDE
  25. VII. UPDATING
  26. VIII. TROUBLESHOOTING
  27. IX. CONTACT
  28. X. CONTRIBUTING
  29. XI. BUG REPORTING
  30. XII. CREDITS
  31. ====================
  32. I. OVERVIEW
  33. ====================
  34. L2J is an Alternative Lineage 2 Game Server written in pure Java for
  35. best compatibility. L2J gives you the possibility to legally host a game
  36. server for this popular Korean MMO created by NCSoft. It is still
  37. unfinished and many features are missing, but L2J Dev team is working
  38. hard on implementing them. L2J Server is distributed under the terms
  39. of GNU/GPL in a hope that open source model is the best for
  40. developing quality software giving everyone a possibility to
  41. participate on development by submitting the code.
  42. ====================
  43. II. LEGAL
  44. ====================
  45. This program is free software; you can redistribute it and/or modify
  46. it under the terms of the GNU General Public License as published by
  47. the Free Software Foundation; either version 2, or (at your option)
  48. any later version.
  49. This program is distributed in the hope that it will be useful, but
  50. WITHOUT ANY WARRANTY; without even the implied warranty of
  51. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  52. General Public License for more details.
  53. You should have received a copy of the GNU General Public License
  54. along with this program; if not, write to the Free Software
  55. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  56. USA.
  57. Full GNU/GPL License is included in LICENSE.TXT file.
  58. Whereas L2J is distributed under the terms of GNU/GPL, we require you to:
  59. a) Preserve logon notice. This gives us, L2J Developers, appropriate
  60. credit for our hard work done during our free time without any
  61. revenues.
  62. b) Do not distribute any extended data files with the server files in
  63. the same archive. NO world content should be incorporated in L2J
  64. distribution.
  65. Server and Datapack may not be not be bundled or packaged.
  66. ====================
  67. III. REQUIREMENTS
  68. ====================
  69. OS:
  70. Any OS having Java JDK 1.5 installed and properly configured!
  71. We recommend using SUN JDK available at java.sun.com
  72. Hardware:
  73. Decent CPU & RAM
  74. Software:
  75. Java JDK 1.5
  76. MySql
  77. Datapack
  78. We recommend:
  79. That you do not play and host the server from the same computer.
  80. Have a good Internet connection - dial up just won't cut it.
  81. Many low cost hosting options are available.
  82. ====================
  83. IV. FIRST STARTUP
  84. ====================
  85. Before you can start up the server it is extremely important to read
  86. and get to know the wiki sites.
  87. They contain all the info you need to setup and run a L2J Server.
  88. L2J Server wiki: Server Guides, How-to's, bugtracker:
  89. https://opensvn.csie.org/traccgi/l2jc4/trac.cgi/wiki
  90. L2J-Datapack wiki: Datapack Guides, How-to's, bugtracker:
  91. http://www.l2jdp.com/trac/wiki
  92. L2J Community wiki: Guides, How-to's:
  93. http://l2j.jot.com
  94. This Server distribution does not contain any spawn/drop data or any world
  95. content. (Datapack)
  96. L2J Server has also a possibility to change xp/sp/drop rates relative
  97. to data in spawnlist/droplist files. To do that, just change the rates
  98. you need in server.properties file found in config folder.
  99. You should also configure your IP address in server.properties.
  100. Server uses ports 2106 (LoginServer) and 7777 (GameServer) by
  101. default. If your server runs behind NAT or firewall you will need to
  102. open and/or forward these ports.
  103. ====================
  104. V. ADMIN/GM's GUIDE
  105. ====================
  106. To make someone an admin you need to edit, in the l2jdb database, the desired character in the
  107. characters table, while server is SHUT DOWN! Change the field, accesslevel from 0 to 100 or more.
  108. You may start server after that and the person will have admin privileges.
  109. Note that you must create the account and character before editing.
  110. Possible access levels:
  111. -100 = banned
  112. 0 = normal account/character
  113. 51 or more = exempt from maximum connections limit (accounts table only)
  114. 100 or more = admin
  115. More info can be found in the community wiki.
  116. Admin commands implemented:
  117. (Please see https://opensvn.csie.org/traccgi/l2jc4/trac.cgi/wiki/GmCommands for more complete list.)
  118. //admin = main GM interface
  119. //gmchat = will send a message to all online GMs
  120. //invul = makes your character untouchable
  121. ====================
  122. VI. PLAYER's GUIDE
  123. ====================
  124. CLIENT COMPATIBILITY
  125. Our server is dependant on the official release of the North American lineage2 live client.
  126. http://www.lineage2.com
  127. All help and support will only be for the official client.
  128. Any clients obtained elsewhere, must obtain support from where it was obtained.
  129. ====================
  130. VI. UPDATING
  131. ====================
  132. It may arrive that you want to update your server to new version while
  133. keeping old accounts. There are few steps you HAVE TO do in order to
  134. keep the data accurate.
  135. - You should ALWAYS look at timelines before updating, sometimes a file
  136. format may change, so you will need to edit data manually to fit with
  137. new format.
  138. - You should ALWAYS Backup all MySql data.
  139. - You should ALWAYS Backup all Server and Datapack files.
  140. - back up all .properties files (don't forget to check if new server use same
  141. format for those files)
  142. - download & unzip new server code to the Server directory
  143. - download & unzip new datapack code to the Server directory
  144. - edit and run update in the tools folder
  145. - run newly installed server & enjoy ;)
  146. ====================
  147. VIII. TROUBLESHOOTING
  148. ====================
  149. PROBLEM
  150. - Client outputs bunch of messages about missing templates.
  151. SOLUTION
  152. - Check that the datapack has been properly installed.
  153. PROBLEM
  154. - Message similar to "java is not recognized as internal command",
  155. "java not found" or "unknown command: java" appears.
  156. SOLUTION
  157. - Install java, or, if java is already installed just add your java
  158. binary directory to system PATH setting. If you don't know how to do
  159. that, than DO NOT bother running your own server please.
  160. PROBLEM
  161. - I can log in but ping is 9999s and I can't get past Server Select.
  162. SOLUTION
  163. - Set up your IP's properly, forward/open good ports if accessing from
  164. outside. (or find server with admin that knows how to do it)
  165. PROBLEM
  166. - Skills/quests/whatever don't work.
  167. SOLUTION
  168. - Patience brings it's fruits :p
  169. PROBLEM
  170. - I found a bug.
  171. SOLUTION
  172. - Please refer to BUG REPORTING section of this readme.
  173. Further help available at the wiki sites and the forums.
  174. ====================
  175. IX. CONTACT
  176. ====================
  177. Web: http://l2jserver.com
  178. IRC: #l2j @ Freenode (irc.freenode.net)
  179. Please note that L2J Devs can't help players with connecting issues or
  180. anything related to playing on private servers. If you can't connect,
  181. you should contact your server GM's. We can solve only L2J server
  182. ~software~ related issues. We don't have any backdoors or anything
  183. that would enable us GM accounts on every server using L2J, so there's
  184. no point in coming to our channel if you need items/adena/whatever
  185. ingame.
  186. ====================
  187. X. CONTRIBUTING
  188. ====================
  189. Anyone who wants to contribute to the project is encouraged to do so. Java
  190. programming skills are not always required as L2J needs much more than
  191. java code.
  192. If you created any source code that may be helpful please use the User Contributions
  193. section on our forums. If you contributed good stuff that will be
  194. accepted, you might be invited to join L2J Dev Team.
  195. People willing to hang on chat and respond to user questions are also
  196. ALWAYS welcome ;)
  197. ====================
  198. XI. BUG REPORTING
  199. ====================
  200. Bugs can be reported on our wiki site.
  201. https://opensvn.csie.org/traccgi/l2jc4/trac.cgi/newticket
  202. Basic rules for reporting are:
  203. Please report only one bug/issue per ticket!!
  204. You must include the revision (changeset) number when reporting a bug!
  205. "The latest" does not mean anything when 5 more updates have been done since you set up the server.
  206. If you are not sure if it should be reported here, make a post about it in the L2J forum.
  207. Players should ALWAYS consult bugs with their Admin/GM's and have them report it
  208. on our wiki site. Some bugs may be caused by bad datapack, server
  209. installation or modifications server owner has made. We can't help you
  210. in that case.
  211. Please use the datapacks bugtracker for reporting datapack bugs.
  212. Please do NOT report bugs related to unofficial add-ons to L2J. L2J
  213. bugtracker is NOT a place to fix that. Contact the person who made
  214. modification instead.
  215. ====================
  216. XII. CREDITS
  217. ====================
  218. Dev team:
  219. http://forum.l2jserver.com/team.php
  220. Have fun playing L2J ;)
  221. Dev Team
  222. L2J Server, Copyright (C) 2006
  223. L2J Server comes with ABSOLUTELY NO WARRANTY.
  224. This is free software, and you are welcome to redistribute it
  225. under certain conditions.