Traduction de rAthena en français.

aleos89 4609695882 Merge branch 'master' into refactor/StatusChangeDisplay 7 vuotta sitten
.github 0068268337 Follow up to 2c8ab4f 7 vuotta sitten
3rdparty c4a364be2c Initial work for map server to C++ (#2565) 7 vuotta sitten
conf 4609695882 Merge branch 'master' into refactor/StatusChangeDisplay 7 vuotta sitten
db 125ab2853a Last missing mob ids from old range 7 vuotta sitten
doc 2830183eaa Implemented round,floor,ceil script commands. (#2524) 7 vuotta sitten
npc c6cc8edeb4 Mapflag NoWarpTo: Novice Island (#2566) 7 vuotta sitten
sql-files fbb447ac8c SQL synchronization 7 vuotta sitten
src 4609695882 Merge branch 'master' into refactor/StatusChangeDisplay 7 vuotta sitten
tools 448e5e893f Moved the bat scripts into the tools folder 8 vuotta sitten
.gitattributes dbf2916c83 Update .gitattributes to force some line ending style for some file. 9 vuotta sitten
.gitignore 809fc35b0e Follow up to 4a2574c.\r\nThanks to @Jeybla! 8 vuotta sitten
.travis.yml 7f5411da07 Initial release of the Achievement System (#2044) 7 vuotta sitten
AUTHORS cb87186578 Added some active contributors to the author list 9 vuotta sitten
CMakeLists.txt 611dee0753 Fix cmake (#2554) 7 vuotta sitten
LICENSE b03c315610 Updated License from GNU GPLv2 to GNU GPLv3. 14 vuotta sitten
Makefile.in cc1d26fe74 Inter server C++ conversion (#2322) 7 vuotta sitten
README.md c9ce29c00e Update Readme.md (#2337) 7 vuotta sitten
appveyor.yml 4a6498665c Enabled x64 in appveyor 8 vuotta sitten
athena-start ae540f133f Fixed linux server shutdown order (#2151) 8 vuotta sitten
configure feb1ab9d95 Add check in configure to ensure c++ compiler 7 vuotta sitten
configure.in feb1ab9d95 Add check in configure to ensure c++ compiler 7 vuotta sitten
function.sh 2d2991a1fd TXT reference removal from emulator. 10 vuotta sitten
install.sh 1352b460fc Fixed #194 9 vuotta sitten
mac.rathena-start.scpt 086af74531 Okie ladies and gentleman if this commit breaks anything it's jman's and maki's fault, yes, blame them. 13 vuotta sitten
rAthena.sln cc1d26fe74 Inter server C++ conversion (#2322) 7 vuotta sitten
uninstall.sh 1352b460fc Fixed #194 9 vuotta sitten

README.md

rAthena

Build Status: Build Status Build status

Table of Contents

  1. What is rAthena?
  2. Prerequisites
  3. Installation
  4. Troubleshooting
  5. Helpful Links
  6. More Documentation
  7. How to Contribute

  8. What is rAthena?

    rAthena is a collaborative software development project revolving around the creation of a robust massively multiplayer online role playing game (MMORPG) server package. Written in C, the program is very versatile and provides NPCs, warps and modifications. The project is jointly managed by a group of volunteers located around the world as well as a tremendous community providing QA and support. rAthena is a continuation of the eAthena project.

  9. Prerequisites

    Before installing rAthena there are certain tools and applications you will need. This differs between the varying operating systems available, so the following is broken down into Windows and Linux prerequisites.

  1. Installation --------- This section is a very brief set of installation instructions. For more concise guides relevant to your Operation System, please refer to the Wiki (links at the end of this file).
  • Windows

    • Install prerequisites
    • Create a folder to download rAthena into (e.g. C:\rAthena)
    • Right click this folder and select "Git Clone"
    • Paste the GitHub URL into the box:

          https://github.com/rathena/rathena.git
      
    • Open MySQL Workbench and create an instance to connect to your MySQL Server

    • Create a database (rathena), a user (rathena), give permissions (GRANT SELECT,INSERT,UPDATE,DELETE) and then login using the new user

    • Use MySQL Workbench to run the .sql files in /sql-files/ on the new rathena database

  • Linux

    • Type:

      • (For CentOS)

        yum install gcc g++ make mysql mysql-devel mysql-server pcre-devel zlib-devel git
        
      • (For Debian)

        apt-get install git make gcc g++ libmysqlclient-dev zlib1g-dev libpcre3-dev
        
    • Type:

          mysql_secure_installation
      
    • Start your MySQL server

    • Setup a MySQL user:

          CREATE USER 'rathena'@'localhost' IDENTIFIED BY 'password';
      
    • Assign permissions:

          GRANT SELECT,INSERT,UPDATE,DELETE ON `rathena\_rag`.* TO 'rathena'@'localhost';
      
    • Clone a GIT repository:

          git clone https://github.com/rathena/rathena.git ~/rathena
      
    • Insert SQL files:

          mysql --user=root -p rathena_rag < trunk/sql-files/main.sql (and others)
      
    • Configure and compile:

          ./configure && make clean && make server
      
    • Configure and compile (for Centos 64 bit with Maria DB):

          ./configure --enable-64bit --with-MYSQL_LIBS=/usr/lib64/libmysqlclient.so && make clean && make server
      
    • When you're ready, start the servers:

          ./athena-start start
      
  • Optional

    • If you want to have your own forked version but still get updates from the main rAthena repository

      • Fork this repository to your GitHub account
      • List the current configured remote repository for your fork:

        git remote -v
        
      • Specify a new remote upstream repository that will be synced with your fork:

        git remote add upstream https://github.com/rathena/rathena.git
        
      • Verify the new upstream repository you've specified for your fork:

        git remote -v
        
      • You should see the main rAthena repository as well as your forked repository

      • Now, when you want to get updates from rAthena, simply do:

        git pull upstream master
        
    • Remember that rAthena falls under GNU GPLv3.

  1. Troubleshooting --------- If you're having problems with starting your server, the first thing you should do is check what's happening on your consoles. More often that not, all support issues can be solved simply by looking at the error messages given.

Examples:

  • You get an error on your map-server that looks something like this:

        [Error]: npc_parsesrcfile: Unable to parse, probably a missing or extra TAB in 
            file 'npc/custom/jobmaster.txt', line '17'. Skipping line...
            * w1=prontera,153,193,6 script
            * w2=Job Master
            * w3=123,{
            * w4=
    

    If you look at the error, it's telling you that you're missing (or have an extra) TAB.

    This is easily fixed by looking at this part of the error:
    
            * w1=prontera,153,193,6 script
    

    If there was a TAB where it's supposed to be, that line would have prontera,153,193,6 at w1

    and 'script' at w2. As there's a space instead of a TAB, the two sections are read as a
    single parameter.
    
  • You have a default user/password warning similar to the following:

        [Warning]: Using the default user/password s1/p1 is NOT RECOMMENDED.
        [Notice]: Please edit your 'login' table to create a proper inter-server user/pa
        ssword (gender 'S')
        [Notice]: and then edit your user/password in conf/map_athena.conf (or conf/impo
        rt/map_conf.txt)
    

    Relax. This is just indicating that you're using the default username and password. To

    fix this, check over the part in the installation instructions relevant to the `login` table.
    
  • Your map-server outputs the following:

        [Error]: make_connection: connect failed (socket #2, error 10061: No connection
        could be made because the target machine actively refused it.
        )!
    

    If this shows up on the map server, it generally means that there is no Char Server available

    to accept the connection.
    
  1. Helpful Links ---------
  2. rAthena Forums
  1. More Documentation

    rAthena has a large collection of help files and sample NPC scripts located in the /doc/ directory. These include detailed explanations of NPC script commands, atcommands (@), group permissions, item bonuses, and packet structures, among many other topics. We recommend that all users take the time to look over this directory before asking for assistance elsewhere.

  2. How to Contribute

    Details on how to contribute to rAthena can be found in CONTRIBUTING.md!