diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-15 19:41:18 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-15 19:41:18 +0000 |
commit | b45455dc15bc807d4d43deb074aa08ddecccface (patch) | |
tree | 14694603b8c09b9c92c86b8dad998ae27a67cd14 /readme | |
parent | d56af8d0fe7e9dbf92b2d41cfd8f1a4c0736ae44 (diff) | |
download | hercules-b45455dc15bc807d4d43deb074aa08ddecccface.tar.gz hercules-b45455dc15bc807d4d43deb074aa08ddecccface.tar.bz2 hercules-b45455dc15bc807d4d43deb074aa08ddecccface.tar.xz hercules-b45455dc15bc807d4d43deb074aa08ddecccface.zip |
* Added "Hunting Missions" custom script (npc\custom\quests\hunting_missions.txt)
* Small updates to "readme" files and atcommands documentation
* Deleted a misleading 'notice' file as we have no stable branch or official release (\notice.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16779 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'readme')
-rw-r--r-- | readme/commands.html | 2 | ||||
-rw-r--r-- | readme/faq.html | 2 | ||||
-rw-r--r-- | readme/scripting.html | 25 |
3 files changed, 12 insertions, 17 deletions
diff --git a/readme/commands.html b/readme/commands.html index 70aa3e75d..55b986f82 100644 --- a/readme/commands.html +++ b/readme/commands.html @@ -25,7 +25,7 @@ <div class="body-container"> The following are the GM Commands which can be used in-game on an rAthena server.<br><br> <iframe width="100%" height="35%" src="../conf/help.txt"></iframe><br><br> - <iframe width="100%" height="35%" src="../conf/help2.txt"></iframe> + <iframe width="100%" height="35%" src="../conf/charhelp.txt"></iframe> </div> <div id="footer">"Read Me" Created & Designed by <a href="http://www.kisuka.com" target="_new">Kisuka</a></div> diff --git a/readme/faq.html b/readme/faq.html index 3289943f5..50cb0f189 100644 --- a/readme/faq.html +++ b/readme/faq.html @@ -53,7 +53,7 @@ <dd>If you find a bug in rAthena, report it here: <a href="http://rathena.org/board/tracker/" target="_blank">Bug Tracker</a></dd> <dt>I'm a well-experienced programmer, can I join the rAthena dev team?</dt> - <dd>You can apply in the <a href="http://rathena.org/board/topic/53712-developer-applications/" target="_blank">Developer Applications</a> topic.</dd> + <dd>You can apply in the <a href="http://rathena.org/board/index.php?app=contactus" target="_blank">Developer Applications</a> topic.</dd> <dt>My character won't move, and no windows open when I login to the game, what's wrong?</dt> <dd>Your packet_db_ver is most likely set wrong, change it in /db/packet_db.txt to match your client's packet ver.</dd> diff --git a/readme/scripting.html b/readme/scripting.html index 8a69aa382..0218464b3 100644 --- a/readme/scripting.html +++ b/readme/scripting.html @@ -32,24 +32,19 @@ <strong>Common Script Commands:</strong> <ul> - <li><strong>mes</strong><br> - usage: mes "<message>";<br> - info: displays a line of text in an NPC's dialog window.</li> - <li><strong>close</strong><br> - usage: close;<br> - info: displays a "Close" button in an NPC's dialog window. + <li><strong>mes "<message>";</strong><br> + displays a line of text in an NPC's dialog window.</li> + <li><strong>close;</strong><br> + displays a "Close" button in an NPC's dialog window. </li> - <li><strong>next</strong><br> - usage: next;<br> - info: displays a "Next" button in an NPC's dialog window. + <li><strong>next;</strong><br> + displays a "Next" button in an NPC's dialog window. </li> - <li><strong>getitem</strong><br> - usage: getitem <item id>,<amount>;<br> - info: gives the player an item. + <li><strong>getitem <item id>,<amount>;</strong><br> + gives the player an item. </li> - <li><strong>delitem</strong><br> - usage: delitem <item id>,<amount>;<br> - info: deletes an item from the player. + <li><strong>delitem <item id>,<amount>;</strong><br> + deletes an item from the player. </li> </ul> <strong>Script Command Documentation:</strong><br> |