From f58856d5ab5a79e09e4aad906cecd7aa931a2224 Mon Sep 17 00:00:00 2001 From: ai4rei Date: Sat, 15 Oct 2011 12:48:11 +0000 Subject: * Some readme clean-ups (related r14711). - Normalized whitespace and made the html files validate properly. - Moved faq-content content to faq. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14973 54d463be-8e91-2dee-dedb-b68131a5f0ec --- readme/commands.html | 12 ++++--- readme/faq-content.html | 33 ----------------- readme/faq.html | 51 +++++++++++++++++++++----- readme/resources.html | 71 +++++++++++++++++------------------- readme/scripting.html | 95 +++++++++++++++++++++++++------------------------ readme/setup.html | 66 +++++++++++++++++----------------- readme/style.css | 5 ++- 7 files changed, 168 insertions(+), 165 deletions(-) delete mode 100644 readme/faq-content.html (limited to 'readme') diff --git a/readme/commands.html b/readme/commands.html index 6cc5e5591..b5a5e845f 100644 --- a/readme/commands.html +++ b/readme/commands.html @@ -1,12 +1,14 @@ + eAthena | GM Commands + -
+
- The following are the GM Commands which can be used in-game on an eAthena server.

-

+ The following are the GM Commands which can be used in-game on an eAthena server.

+

-
+
\ No newline at end of file diff --git a/readme/faq-content.html b/readme/faq-content.html deleted file mode 100644 index 0100a2f65..000000000 --- a/readme/faq-content.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - \ No newline at end of file diff --git a/readme/faq.html b/readme/faq.html index 0c5619830..a75b725ee 100644 --- a/readme/faq.html +++ b/readme/faq.html @@ -1,12 +1,14 @@ + eAthena | FAQ + -
+
- +
- The following are frequently asked questions regarding eAthena.

-
+ The following are frequently asked questions regarding eAthena.

+
+
Where can I set the exp rates?
+
+
    +
  • Go to /conf/battle/exp.conf
  • +
  • Find base_exp_rate and job_exp_rate. Change the value there to raise or lower the rates.
  • +
  • 100 = 1x, 1000 = 10x rates, etc
  • +
+
+ +
Where can I set the item drop rates?
+
+
    +
  • Go to /conf/battle/drops.conf
  • +
  • You can set the drop rates by changing the values:
    + + item_rate_common: 100 <-- 100 = 1x drop rate, 1000 = 10x drop rate, etc
    + item_rate_common_boss: 100 <--- drop rate for bosses
    + item_drop_common_min: 1 <--- minimal drop rate
    + item_drop_common_max: 10000 <--- maximum drop rate. +

    + (You can set the rates of different items in the same file) +
+
+ +
I found a bug, where to I report it?
+
If you find a bug in eAthena, report it here: Bug Tracker
+ +
I'm a well-experienced programmer, can I join the eAthena dev team?
+
Contact Paradox924X
+ +
My character won't move, and no windows open when I login to the game, what's wrong?
+
Your packet_db_ver is most likely set wrong, change it in /db/packet_db.txt to match your client's packet ver.
+
- - -
+ + +
\ No newline at end of file diff --git a/readme/resources.html b/readme/resources.html index 87947b80d..79c3376ed 100644 --- a/readme/resources.html +++ b/readme/resources.html @@ -1,12 +1,14 @@ + eAthena | Resources + -
+
- +
- The following are some links to various resources which can be helpful when using eAthena.
+ The following are some links to various resources which can be helpful when using eAthena.
- - -
+ + +
\ No newline at end of file diff --git a/readme/scripting.html b/readme/scripting.html index af68e58ce..270789352 100644 --- a/readme/scripting.html +++ b/readme/scripting.html @@ -1,12 +1,14 @@ + eAthena | Scripting + - -
+ +
- +
-

- How to create an NPC using eAthena's scripting:

- map_name,x_cord,y_cord,npc_facing_direction -TAB- script -TAB- NPC Name#HiddenName -TAB- Sprite ID,{
-    mes "[NPC Name]";
-    mes "Hello World";
-    close;
- } -

-

- Common Script Commands: + How to create an NPC using eAthena's scripting:

+ map_name,x_cord,y_cord,npc_facing_direction -TAB- script -TAB- NPC Name#HiddenName -TAB- Sprite ID,{
+    mes "[NPC Name]";
+    mes "Hello World";
+    close;
+ }


+ + Common Script Commands:

    -
  • mes
    - usage: mes "<message>";
    - info: displays a line of text in an NPC's dialog window.
  • -
  • close
    - usage: close;
    - info: displays a "Close" button in an NPC's dialog window. -
  • -
  • next
    - usage: next;
    - info: displays a "Next" button in an NPC's dialog window.
  • -
  • getitem
    - usage: getitem <item id>,<amount>;
    - info: gives the player an item. -
  • -
  • delitem
    - usage: delitem <item id>,<amount>;
    - info: deletes an item from the player. -
  • -
-

Script Command Documentation:
- - All the script commands in eAthena can be found here.

-

How to enable your NPC:
- 1. Save it as a text file in your /npc/custom/ folder.
- 2. Open /npc/scripts_custom.conf
- 3. Add the following line:
- npc: npc/custom/name_of_your_text_file.txt
- 4. Save and close.

-

-
- - -
+
  • mes
    + usage: mes "<message>";
    + info: displays a line of text in an NPC's dialog window.
  • +
  • close
    + usage: close;
    + info: displays a "Close" button in an NPC's dialog window. +
  • +
  • next
    + usage: next;
    + info: displays a "Next" button in an NPC's dialog window. +
  • +
  • getitem
    + usage: getitem <item id>,<amount>;
    + info: gives the player an item. +
  • +
  • delitem
    + usage: delitem <item id>,<amount>;
    + info: deletes an item from the player. +
  • + + Script Command Documentation:
    + All the script commands in eAthena can be found here.

    + How to enable your NPC: +
      +
    1. Save it as a text file in your /npc/custom/ folder.
    2. +
    3. Open /npc/scripts_custom.conf
    4. +
    5. Add the following line:
      + npc: npc/custom/name_of_your_text_file.txt
    6. +
    7. Save and close.
    8. +
    +
    + + + \ No newline at end of file diff --git a/readme/setup.html b/readme/setup.html index 7f91852b8..8bd829af8 100644 --- a/readme/setup.html +++ b/readme/setup.html @@ -1,12 +1,14 @@ + eAthena | Setup + -
    +
    - -
    - Character Server:
    -
      -
    1. Open /conf/char_athena.conf
    2. + +
      + Character Server: +
        +
      1. Open /conf/char_athena.conf
      2. Change userid and passwd (s1/p1) to what you want your server's communication details to be.
      3. Change Server_Name to what you want to call your server.
      4. Remove the // before login_ip.
      5. Remove the // before char_ip and change 127.0.0.1 to your WAN IP. -
      - - Map Server:
      -
        -
      1. Open /conf/map_athena.conf
      2. +
      + + Map Server: +
        +
      1. Open /conf/map_athena.conf
      2. Change userid and passwd to the same thing you set in char_athena.
      3. Remove the // before char_ip.
      4. Remove the // before map_ip and change 127.0.0.1 to your WAN IP. -
      - - Subnet:
      -
        -
      1. Open /conf/subnet_athena.conf
      2. +
      + + Subnet: +
        +
      1. Open /conf/subnet_athena.conf
      2. Change 255.0.0.0 to your "Subnet Mask", change the two 127.0.0.1 to your LAN IP. -
      - - MySQL Settings:
      -
        -
      1. Open /conf/inter_athena.conf
      2. +
      + + MySQL Settings: +
        +
      1. Open /conf/inter_athena.conf
      2. Find the "Global SQL Settings" and change them to your SQL server's settings.
      3. -
      - - Message of the Day:
      -
        -
      1. Open /conf/motd.txt and edit it to change the in-game MOTD.
      2. -
      -
      - - -
    + + + Message of the Day: +
      +
    1. Open /conf/motd.txt and edit it to change the in-game MOTD.
    2. +
    +
    + + +
    \ No newline at end of file diff --git a/readme/style.css b/readme/style.css index de9b300a2..6a31b4e6a 100644 --- a/readme/style.css +++ b/readme/style.css @@ -77,4 +77,7 @@ font-family: arial, helvetica, sans-serif; } #footer a { color: White; -} \ No newline at end of file +} +dt { + font-weight:bold; +} -- cgit v1.2.3-70-g09d2