* Removed SVN references from readme files.
* Replaced "Current Version" field with "Last Updated" when a date is provided. * Added Magic Candy (12596) and Spark Candy (14586) to Renewal item_delay database. Signed-off-by: Euphy <euphy.raliel@rathena.org>
This commit is contained in:
71
README.md
71
README.md
@@ -28,9 +28,8 @@ is broken down into Windows and Linux prerequisites.
|
||||
* MySQL ( http://www.mysql.com/downloads/mysql/ )
|
||||
* MySQL Workbench ( http://www.mysql.com/downloads/workbench/ )
|
||||
* MS Visual C++ ( http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express )
|
||||
* **[svn]** TortoiseSVN ( http://tortoisesvn.net/downloads.html )
|
||||
* **[git]** TortoiseGIT ( http://code.google.com/p/tortoisegit/ )
|
||||
* **[git]** MSysGit ( http://code.google.com/p/msysgit/downloads/ )
|
||||
* TortoiseGIT ( http://code.google.com/p/tortoisegit/ )
|
||||
* MSysGit ( http://code.google.com/p/msysgit/downloads/ )
|
||||
|
||||
* Linux (names of packages may require specific version numbers on certain distributions)
|
||||
* gcc
|
||||
@@ -40,8 +39,7 @@ is broken down into Windows and Linux prerequisites.
|
||||
* mysql-server
|
||||
* pcre-devel
|
||||
* zlib-devel
|
||||
* **[svn]** subversion
|
||||
* **[git]** git
|
||||
* git
|
||||
|
||||
3. Installation
|
||||
---------
|
||||
@@ -51,12 +49,10 @@ relevant to your Operation System, please refer to the Wiki (links at the end of
|
||||
* Windows
|
||||
* Install prerequisites
|
||||
* Create a folder to download rAthena into (e.g. C:\rAthena)
|
||||
* Right click this folder and select:
|
||||
* **[svn]** "SVN Checkout"
|
||||
* **[git]** "Git Clone"
|
||||
* Paste the SVN URL into the box:
|
||||
* **[svn]** https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
|
||||
* **[git]** https://github.com/rathena/rathena.git
|
||||
* 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
|
||||
@@ -64,17 +60,18 @@ relevant to your Operation System, please refer to the Wiki (links at the end of
|
||||
|
||||
* Linux
|
||||
* Type:
|
||||
(For CentOS)
|
||||
* **[svn]** yum install gcc make mysql mysql-devel mysql-server pcre-devel subversion zlib-devel
|
||||
* **[git]**
|
||||
* yum install gcc make mysql mysql-devel mysql-server pcre-devel zlib-devel
|
||||
* rpm -Uvhhttp://repo.webtatic.com/yum/centos/5/latest.rpm
|
||||
* yum install --enablerepo=webtatic git-all
|
||||
* yum install --enablerepo=webtatic --disableexcludes=main git-all
|
||||
(For Debian)
|
||||
* **[svn]** apt-get install subversion make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev
|
||||
* **[git]** apt-get install git make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev
|
||||
* Type: mysql_secure_installation
|
||||
* (For CentOS)
|
||||
|
||||
yum install gcc make mysql mysql-devel mysql-server pcre-devel zlib-devel
|
||||
rpm -Uvhhttp://repo.webtatic.com/yum/centos/5/latest.rpm
|
||||
yum install --enablerepo=webtatic git-all
|
||||
yum install --enablerepo=webtatic --disableexcludes=main git-all
|
||||
* (For Debian)
|
||||
|
||||
apt-get install git make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev
|
||||
* Type:
|
||||
|
||||
mysql_secure_installation
|
||||
* Start your MySQL server
|
||||
* Setup a MySQL user:
|
||||
|
||||
@@ -82,12 +79,18 @@ relevant to your Operation System, please refer to the Wiki (links at the end of
|
||||
* Assign permissions:
|
||||
|
||||
GRANT SELECT,INSERT,UPDATE,DELETE ON `rathena\_rag`.* TO 'rathena'@'localhost';
|
||||
* Type:
|
||||
* **[svn]** svn checkout https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ ~/trunk
|
||||
* **[git]** 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)
|
||||
* Type: cd trunk && ./configure && make clean && make sql
|
||||
* When you're ready, type: ./athena-start start
|
||||
* 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 sql
|
||||
* When you're ready, start the servers:
|
||||
|
||||
./athena-start start
|
||||
|
||||
|
||||
|
||||
@@ -141,17 +144,11 @@ Examples:
|
||||
|
||||
5. Helpful Links
|
||||
---------
|
||||
The following list of links point to various help files within the SVN, articles or
|
||||
pages on the Wiki or topics within the rAthena forum.
|
||||
|
||||
* rAthena Forums
|
||||
http://rathena.org/
|
||||
|
||||
* SVN Repository
|
||||
https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
|
||||
* http://rathena.org/
|
||||
|
||||
* GIT Repository
|
||||
https://github.com/rathena/rathena
|
||||
* https://github.com/rathena/rathena
|
||||
|
||||
* Full Installation Instructions
|
||||
* Windows: http://rathena.org/wiki/Installation_on_Windows
|
||||
@@ -159,7 +156,7 @@ pages on the Wiki or topics within the rAthena forum.
|
||||
* Debian: http://rathena.org/wiki/Installation_(Debian)
|
||||
|
||||
* rAthena IRC Channel
|
||||
irc://irc.rizon.net/rathena
|
||||
* irc://irc.rizon.net/rathena
|
||||
|
||||
|
||||
6. More Documentation
|
||||
|
||||
63
README.txt
63
README.txt
@@ -2,10 +2,8 @@
|
||||
//= rAthena Readme File
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//= $Revision$
|
||||
//===== Last Updated: ========================================
|
||||
//= $LastChangedDate$
|
||||
//= 20131112
|
||||
//===== Description: =========================================
|
||||
//= Basic information and installation guide with links to
|
||||
//= various forum posts and Wiki articles.
|
||||
@@ -45,9 +43,8 @@ Windows
|
||||
* MySQL (http://www.mysql.com/downloads/mysql/)
|
||||
* MySQL Workbench (http://www.mysql.com/downloads/workbench/)
|
||||
* MS Visual C++ (http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express)
|
||||
* [svn] TortoiseSVN (http://tortoisesvn.net/downloads.html)
|
||||
* [git] TortoiseGIT (http://code.google.com/p/tortoisegit/)
|
||||
* [git] MSysGit (http://code.google.com/p/msysgit/downloads/)
|
||||
* TortoiseGIT (http://code.google.com/p/tortoisegit/)
|
||||
* MSysGit (http://code.google.com/p/msysgit/downloads/)
|
||||
|
||||
Linux (names of packages may require specific version numbers on certain distributions)
|
||||
* gcc
|
||||
@@ -57,8 +54,7 @@ Linux (names of packages may require specific version numbers on certain distrib
|
||||
* mysql-server
|
||||
* pcre-devel
|
||||
* zlib-devel
|
||||
* [svn] subversion
|
||||
* [git] git
|
||||
* git
|
||||
|
||||
|
||||
============================
|
||||
@@ -70,12 +66,9 @@ relevant to your Operation System, please refer to the Wiki (links at the end of
|
||||
Windows
|
||||
* Install prerequisites
|
||||
* Create a folder to download rAthena into (e.g. C:\rAthena)
|
||||
* Right click this folder and select:
|
||||
[svn] "SVN Checkout"
|
||||
[git] "Git Clone"
|
||||
* Paste the SVN URL into the box:
|
||||
[svn] https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
|
||||
[git] https://github.com/rathena/rathena.git
|
||||
* 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
|
||||
@@ -84,25 +77,27 @@ Windows
|
||||
Linux
|
||||
* Type:
|
||||
(For CentOS)
|
||||
[svn] yum install gcc make mysql mysql-devel mysql-server pcre-devel subversion zlib-devel
|
||||
[git]
|
||||
yum install gcc make mysql mysql-devel mysql-server pcre-devel zlib-devel
|
||||
rpm -Uvhhttp://repo.webtatic.com/yum/centos/5/latest.rpm
|
||||
yum install --enablerepo=webtatic git-all
|
||||
yum install --enablerepo=webtatic --disableexcludes=main git-all
|
||||
yum install gcc make mysql mysql-devel mysql-server pcre-devel zlib-devel
|
||||
rpm -Uvhhttp://repo.webtatic.com/yum/centos/5/latest.rpm
|
||||
yum install --enablerepo=webtatic git-all
|
||||
yum install --enablerepo=webtatic --disableexcludes=main git-all
|
||||
(For Debian)
|
||||
[svn] apt-get install subversion make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev
|
||||
[git] apt-get install git make gcc 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';
|
||||
apt-get install git make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev
|
||||
* Type:
|
||||
[svn] svn checkout https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ ~/trunk
|
||||
[git] 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)
|
||||
* Type: cd trunk && ./configure && make clean && make sql
|
||||
* When you're ready, type: ./athena-start start
|
||||
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 sql
|
||||
* When you're ready, start the servers:
|
||||
./athena-start start
|
||||
|
||||
|
||||
============================
|
||||
@@ -153,15 +148,9 @@ Examples:
|
||||
============================
|
||||
|| 5. Helpful Links ||
|
||||
============================
|
||||
The following list of links point to various help files within the SVN, articles or
|
||||
pages on the Wiki or topics within the rAthena forum.
|
||||
|
||||
* rAthena Forums
|
||||
http://rathena.org/
|
||||
|
||||
* SVN Repository
|
||||
https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
|
||||
|
||||
* GIT Repository
|
||||
https://github.com/rathena/rathena
|
||||
|
||||
|
||||
@@ -14,16 +14,16 @@
|
||||
12210,60000 //Bubble_Gum
|
||||
14538,300000 //Glass_Of_Illusion
|
||||
14586,180000 //Spark_Candy
|
||||
607,5000 // Yggdrasil_Berry
|
||||
608,3000 // Yggdrasil_Seed
|
||||
607,5000 //Yggdrasil_Berry
|
||||
608,3000 //Yggdrasil_Seed
|
||||
|
||||
// Bifrost Items
|
||||
11522,1000 // Red_Raffle_Sap
|
||||
11523,2000 // Yellow_Raffle_Sap
|
||||
11524,3000 // White_Raffle_Sap
|
||||
11525,5000 // Mora_Hip_Tea
|
||||
11522,1000 //Red_Raffle_Sap
|
||||
11523,2000 //Yellow_Raffle_Sap
|
||||
11524,3000 //White_Raffle_Sap
|
||||
11525,5000 //Mora_Hip_Tea
|
||||
|
||||
// FIX ME! Delays need confirmation.
|
||||
12968,300000 // Emergency_Scroll1
|
||||
12969,300000 // Emergency_Scroll2
|
||||
12970,300000 // Emergency_Scroll3
|
||||
12968,300000 //Emergency_Scroll1
|
||||
12969,300000 //Emergency_Scroll2
|
||||
12970,300000 //Emergency_Scroll3
|
||||
|
||||
@@ -14,24 +14,27 @@
|
||||
12210,60000 //Bubble_Gum
|
||||
14538,300000 //Glass_Of_Illusion
|
||||
14586,180000 //Spark_Candy
|
||||
607,5000 // Yggdrasil_Berry
|
||||
608,3000 // Yggdrasil_Seed
|
||||
607,5000 //Yggdrasil_Berry
|
||||
608,3000 //Yggdrasil_Seed
|
||||
|
||||
// Bifrost Items
|
||||
11522,1000 // Red_Raffle_Sap
|
||||
11523,2000 // Yellow_Raffle_Sap
|
||||
11524,3000 // White_Raffle_Sap
|
||||
11525,5000 // Mora_Hip_Tea
|
||||
11522,1000 //Red_Raffle_Sap
|
||||
11523,2000 //Yellow_Raffle_Sap
|
||||
11524,3000 //White_Raffle_Sap
|
||||
11525,5000 //Mora_Hip_Tea
|
||||
|
||||
12658, 10000 // Transformation Scroll(Deviruchi)
|
||||
12659, 10000 // Transformation Scroll(Raydric)
|
||||
12660, 10000 // Transformation Scroll(Mavka)
|
||||
12661, 10000 // Transformation Scroll(Marduk)
|
||||
12662, 10000 // Transformation Scroll(Banshee)
|
||||
12663, 10000 // Transformation Scroll(Poring)
|
||||
12664, 10000 // Transformation Scroll(Golem)
|
||||
12658,10000 //Transformation Scroll(Deviruchi)
|
||||
12659,10000 //Transformation Scroll(Raydric)
|
||||
12660,10000 //Transformation Scroll(Mavka)
|
||||
12661,10000 //Transformation Scroll(Marduk)
|
||||
12662,10000 //Transformation Scroll(Banshee)
|
||||
12663,10000 //Transformation Scroll(Poring)
|
||||
12664,10000 //Transformation Scroll(Golem)
|
||||
|
||||
// FIX ME! Delays need confirmation.
|
||||
12968,300000 // Emergency_Scroll1
|
||||
12969,300000 // Emergency_Scroll2
|
||||
12970,300000 // Emergency_Scroll3
|
||||
12968,300000 //Emergency_Scroll1
|
||||
12969,300000 //Emergency_Scroll2
|
||||
12970,300000 //Emergency_Scroll3
|
||||
|
||||
12596,300000 //Magic_Candy
|
||||
14586,300000 //Spark_Candy
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Atcommand List
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130827
|
||||
//===== Description: =========================================
|
||||
//= List of available atcommands and their functions.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= eAthena Job System
|
||||
//===== By: ==================================================
|
||||
//= Skotlex
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130209
|
||||
//===== Description: =========================================
|
||||
//= A reference description of eA's inner job system (for use
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Client Effects List
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120822
|
||||
//===== Description: =========================================
|
||||
//= A list of client-side effects sorted by ID.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= rAthena Item Bonuses List
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130711
|
||||
//===== Description: =========================================
|
||||
//= List of script instructions used in item bonuses,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Item Database
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130819
|
||||
//===== Description: =========================================
|
||||
//= Explanation of the item_db.txt file and structure.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= rAthena Map Cache Builder and Format Documentation
|
||||
//===== By: ==================================================
|
||||
//= DracoRPG
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070724
|
||||
//===== Description: =========================================
|
||||
//= A complete manual for rAthena's map cache generator as
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Mapflag List
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130830
|
||||
//===== Description: =========================================
|
||||
//= List of available mapflags and their functions.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= MD5 Hash Check
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120921
|
||||
//===== Description: =========================================
|
||||
//= This file outlines the login server's MD5 hash check.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= rAthena Monster Modes Reference
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120630
|
||||
//===== Description: =========================================
|
||||
//= A reference description of rAthena's mob_db 'mode' field.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Packet Structure Notation
|
||||
//===== By: ==================================================
|
||||
//= Ai4rei
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120810
|
||||
//===== Description: =========================================
|
||||
//= Explanation how packets are and should be documented.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Permissions List
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130613
|
||||
//===== Description: =========================================
|
||||
//= List of available permissions and their functions.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Permanent Quest Variables
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120826
|
||||
//===== Description: =========================================
|
||||
//= This file should help to understand and manage bit-wise
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Bank Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070315
|
||||
//===== Description: =========================================
|
||||
//= Contains commands needed for a basic bank.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Class Constants
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20110123
|
||||
//===== Description: =========================================
|
||||
//= Outputs the values of class constants.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Checkoption
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070315
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'checkoption' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Delitem2
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070315
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'delitem2' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Getequipcardid
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'getequipcardid' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Getequipid
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'getequipid' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Getiteminfo
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'getiteminfo' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Getmonsterinfo
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20131106
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'getmonsterinfo' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Guild Storage Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130325
|
||||
//===== Description: =========================================
|
||||
//= Contains commands needed for a guild warehouse NPC.
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
//===== rAthena Script =======================================
|
||||
//= Sample localized NPC
|
||||
//= Sample: Localized NPC
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//= v1.0
|
||||
//===== Compatible With: =====================================
|
||||
//= rAthena with setd, getd
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070315
|
||||
//===== Description: =========================================
|
||||
//= Example of a localized NPC.
|
||||
//=
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Dynamic Shop
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20101219
|
||||
//===== Description: =========================================
|
||||
//= Contains commands needed for a dynamic shop.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Extended Shops
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= An example of shop NPCs.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Live Dialogue
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20130905
|
||||
//===== Description: =========================================
|
||||
//= An example of an NPC with live dialogue.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Shops
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20090206
|
||||
//===== Description: =========================================
|
||||
//= An example of shop NPCs.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Array Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20090206
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates array commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Chat Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates waitingroom commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: CheckWeight
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121113
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates 'checkweight' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Duplicate Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070915
|
||||
//===== Description: =========================================
|
||||
//= An example of how duplicate NPCs are handled:
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Functions
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120901
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates use of functions.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: NPC Timers
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates NPC timer commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Attached NPC Timers
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates attached NPC timer commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: PCRE
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20100108
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates PCRE commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Quest Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121227
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates quest commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Setiteminfo & Setitemscript
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates 'setiteminfo' and 'setitemscript' commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Mapflag Test
|
||||
//===== By: ==================================================
|
||||
//= Jbain
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates mapflag commands.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Skill
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20121003
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates the 'skill' command.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= Sample: Time Test
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20070315
|
||||
//===== Description: =========================================
|
||||
//= Demonstrates time commands.
|
||||
|
||||
@@ -2,10 +2,8 @@
|
||||
//= rAthena Script Commands
|
||||
//===== By: ==================================================
|
||||
//= rAthena Dev Team
|
||||
//===== Current Version: =====================================
|
||||
//= $Revision$
|
||||
//===== Last Updated: ========================================
|
||||
//= $LastChangedDate$
|
||||
//= 20131112
|
||||
//===== Description: =========================================
|
||||
//= A reference manual for the rAthena scripting language.
|
||||
//= Commands are sorted depending on their functionality.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= NPC Whisper System
|
||||
//===== By: ==================================================
|
||||
//= lordalfa
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120904
|
||||
//===== Description: =========================================
|
||||
//= A description of rAthena's NPC whispering system.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//= WoE Time Explanation
|
||||
//===== By: ==================================================
|
||||
//= erKURITA
|
||||
//===== Current Version: =====================================
|
||||
//===== Last Updated: ========================================
|
||||
//= 20120717
|
||||
//===== Description: =========================================
|
||||
//= Details on the behavior of the default WoE controller.
|
||||
|
||||
Reference in New Issue
Block a user