Browse Source

* 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>

Euphy 11 years ago
parent
commit
4f81f045ca
46 changed files with 132 additions and 147 deletions
  1. 34 37
      README.md
  2. 26 37
      README.txt
  3. 9 9
      db/pre-re/item_delay.txt
  4. 19 16
      db/re/item_delay.txt
  5. 1 1
      doc/atcommands.txt
  6. 1 1
      doc/ea_job_system.txt
  7. 1 1
      doc/effect_list.txt
  8. 1 1
      doc/item_bonus.txt
  9. 1 1
      doc/item_db.txt
  10. 1 1
      doc/map_cache.txt
  11. 1 1
      doc/mapflags.txt
  12. 1 1
      doc/md5_hashcheck.txt
  13. 1 1
      doc/mob_db_mode_list.txt
  14. 1 1
      doc/packet_struct_notation.txt
  15. 1 1
      doc/permissions.txt
  16. 1 1
      doc/quest_variables.txt
  17. 1 1
      doc/sample/bank_test.txt
  18. 1 1
      doc/sample/basejob_baseclass_upper.txt
  19. 1 1
      doc/sample/checkoption.txt
  20. 1 1
      doc/sample/delitem2.txt
  21. 1 1
      doc/sample/getequipcardid.txt
  22. 1 1
      doc/sample/getequipid.txt
  23. 1 1
      doc/sample/getiteminfo.txt
  24. 1 1
      doc/sample/getmonsterinfo.txt
  25. 1 1
      doc/sample/gstorage_test.txt
  26. 3 5
      doc/sample/localized_npc.txt
  27. 1 1
      doc/sample/npc_dynamic_shop.txt
  28. 1 1
      doc/sample/npc_extend_shop.txt
  29. 1 1
      doc/sample/npc_live_dialogues.txt
  30. 1 1
      doc/sample/npc_shop_test.txt
  31. 1 1
      doc/sample/npc_test_array.txt
  32. 1 1
      doc/sample/npc_test_chat.txt
  33. 1 1
      doc/sample/npc_test_checkweight.txt
  34. 1 1
      doc/sample/npc_test_duplicate.txt
  35. 1 1
      doc/sample/npc_test_func.txt
  36. 1 1
      doc/sample/npc_test_npctimer.txt
  37. 1 1
      doc/sample/npc_test_npctimer2.txt
  38. 1 1
      doc/sample/npc_test_pcre.txt
  39. 1 1
      doc/sample/npc_test_quest.txt
  40. 1 1
      doc/sample/npc_test_setitemx.txt
  41. 1 1
      doc/sample/npc_test_setmapflag.txt
  42. 1 1
      doc/sample/npc_test_skill.txt
  43. 1 1
      doc/sample/npc_test_time.txt
  44. 1 3
      doc/script_commands.txt
  45. 1 1
      doc/whisper_sys.txt
  46. 1 1
      doc/woe_time_explanation.txt

+ 34 - 37
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

+ 26 - 37
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
 

+ 9 - 9
db/pre-re/item_delay.txt

@@ -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

+ 19 - 16
db/re/item_delay.txt

@@ -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

+ 1 - 1
doc/atcommands.txt

@@ -2,7 +2,7 @@
 //= Atcommand List
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20130827
 //===== Description: =========================================
 //= List of available atcommands and their functions.

+ 1 - 1
doc/ea_job_system.txt

@@ -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 

+ 1 - 1
doc/effect_list.txt

@@ -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.

+ 1 - 1
doc/item_bonus.txt

@@ -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,

+ 1 - 1
doc/item_db.txt

@@ -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.

+ 1 - 1
doc/map_cache.txt

@@ -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 

+ 1 - 1
doc/mapflags.txt

@@ -2,7 +2,7 @@
 //= Mapflag List
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20130830
 //===== Description: =========================================
 //= List of available mapflags and their functions.

+ 1 - 1
doc/md5_hashcheck.txt

@@ -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.

+ 1 - 1
doc/mob_db_mode_list.txt

@@ -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.

+ 1 - 1
doc/packet_struct_notation.txt

@@ -2,7 +2,7 @@
 //= Packet Structure Notation
 //===== By: ==================================================
 //= Ai4rei
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20120810
 //===== Description: =========================================
 //= Explanation how packets are and should be documented.

+ 1 - 1
doc/permissions.txt

@@ -2,7 +2,7 @@
 //= Permissions List
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20130613
 //===== Description: =========================================
 //= List of available permissions and their functions.

+ 1 - 1
doc/quest_variables.txt

@@ -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 

+ 1 - 1
doc/sample/bank_test.txt

@@ -2,7 +2,7 @@
 //= Sample: Bank Test
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20070315
 //===== Description: ========================================= 
 //= Contains commands needed for a basic bank.

+ 1 - 1
doc/sample/basejob_baseclass_upper.txt

@@ -2,7 +2,7 @@
 //= Sample: Class Constants
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20110123
 //===== Description: ========================================= 
 //= Outputs the values of class constants.

+ 1 - 1
doc/sample/checkoption.txt

@@ -2,7 +2,7 @@
 //= Sample: Checkoption
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20070315
 //===== Description: ========================================= 
 //= Demonstrates the 'checkoption' command.

+ 1 - 1
doc/sample/delitem2.txt

@@ -2,7 +2,7 @@
 //= Sample: Delitem2
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20070315
 //===== Description: ========================================= 
 //= Demonstrates the 'delitem2' command.

+ 1 - 1
doc/sample/getequipcardid.txt

@@ -2,7 +2,7 @@
 //= Sample: Getequipcardid
 //===== By: ==================================================
 //= Lupus
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates the 'getequipcardid' command.

+ 1 - 1
doc/sample/getequipid.txt

@@ -2,7 +2,7 @@
 //= Sample: Getequipid
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates the 'getequipid' command.

+ 1 - 1
doc/sample/getiteminfo.txt

@@ -2,7 +2,7 @@
 //= Sample: Getiteminfo
 //===== By: ==================================================
 //= Lupus
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates the 'getiteminfo' command.

+ 1 - 1
doc/sample/getmonsterinfo.txt

@@ -2,7 +2,7 @@
 //= Sample: Getmonsterinfo
 //===== By: ==================================================
 //= Lupus
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20131106
 //===== Description: ========================================= 
 //= Demonstrates the 'getmonsterinfo' command.

+ 1 - 1
doc/sample/gstorage_test.txt

@@ -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.

+ 3 - 5
doc/sample/localized_npc.txt

@@ -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.
 //= 

+ 1 - 1
doc/sample/npc_dynamic_shop.txt

@@ -2,7 +2,7 @@
 //= Sample: Dynamic Shop
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20101219
 //===== Description: ========================================= 
 //= Contains commands needed for a dynamic shop.

+ 1 - 1
doc/sample/npc_extend_shop.txt

@@ -2,7 +2,7 @@
 //= Sample: Extended Shops
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= An example of shop NPCs.

+ 1 - 1
doc/sample/npc_live_dialogues.txt

@@ -2,7 +2,7 @@
 //= Sample: Live Dialogue
 //===== By: ==================================================
 //= Lupus
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20130905
 //===== Description: ========================================= 
 //= An example of an NPC with live dialogue.

+ 1 - 1
doc/sample/npc_shop_test.txt

@@ -2,7 +2,7 @@
 //= Sample: Shops
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20090206
 //===== Description: ========================================= 
 //= An example of shop NPCs.

+ 1 - 1
doc/sample/npc_test_array.txt

@@ -2,7 +2,7 @@
 //= Sample: Array Test
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20090206
 //===== Description: ========================================= 
 //= Demonstrates array commands.

+ 1 - 1
doc/sample/npc_test_chat.txt

@@ -2,7 +2,7 @@
 //= Sample: Chat Test
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates waitingroom commands.

+ 1 - 1
doc/sample/npc_test_checkweight.txt

@@ -2,7 +2,7 @@
 //= Sample: CheckWeight
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121113
 //===== Description: ========================================= 
 //= Demonstrates 'checkweight' command.

+ 1 - 1
doc/sample/npc_test_duplicate.txt

@@ -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:

+ 1 - 1
doc/sample/npc_test_func.txt

@@ -2,7 +2,7 @@
 //= Sample: Functions
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20120901
 //===== Description: ========================================= 
 //= Demonstrates use of functions.

+ 1 - 1
doc/sample/npc_test_npctimer.txt

@@ -2,7 +2,7 @@
 //= Sample: NPC Timers
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates NPC timer commands.

+ 1 - 1
doc/sample/npc_test_npctimer2.txt

@@ -2,7 +2,7 @@
 //= Sample: Attached NPC Timers
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates attached NPC timer commands.

+ 1 - 1
doc/sample/npc_test_pcre.txt

@@ -2,7 +2,7 @@
 //= Sample: PCRE
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20100108
 //===== Description: ========================================= 
 //= Demonstrates PCRE commands.

+ 1 - 1
doc/sample/npc_test_quest.txt

@@ -2,7 +2,7 @@
 //= Sample: Quest Test
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121227
 //===== Description: ========================================= 
 //= Demonstrates quest commands.

+ 1 - 1
doc/sample/npc_test_setitemx.txt

@@ -2,7 +2,7 @@
 //= Sample: Setiteminfo & Setitemscript
 //===== By: ==================================================
 //= Lupus
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates 'setiteminfo' and 'setitemscript' commands.

+ 1 - 1
doc/sample/npc_test_setmapflag.txt

@@ -2,7 +2,7 @@
 //= Sample: Mapflag Test
 //===== By: ==================================================
 //= Jbain
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates mapflag commands.

+ 1 - 1
doc/sample/npc_test_skill.txt

@@ -2,7 +2,7 @@
 //= Sample: Skill
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20121003
 //===== Description: ========================================= 
 //= Demonstrates the 'skill' command.

+ 1 - 1
doc/sample/npc_test_time.txt

@@ -2,7 +2,7 @@
 //= Sample: Time Test
 //===== By: ==================================================
 //= rAthena Dev Team
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20070315
 //===== Description: ========================================= 
 //= Demonstrates time commands.

+ 1 - 3
doc/script_commands.txt

@@ -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.

+ 1 - 1
doc/whisper_sys.txt

@@ -2,7 +2,7 @@
 //= NPC Whisper System
 //===== By: ==================================================
 //= lordalfa
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20120904
 //===== Description: =========================================
 //= A description of rAthena's NPC whispering system.

+ 1 - 1
doc/woe_time_explanation.txt

@@ -2,7 +2,7 @@
 //= WoE Time Explanation
 //===== By: ==================================================
 //= erKURITA
-//===== Current Version: =====================================
+//===== Last Updated: ========================================
 //= 20120717
 //===== Description: =========================================
 //= Details on the behavior of the default WoE controller.