summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-03-13 17:06:46 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-03-13 17:06:46 +0000
commit33ef1aa65495269c552827c8b89f2ac503a570f2 (patch)
tree46fd041716500ed2eb7d16ccd206f0ef58e2bd38 /doc
parent1aa92a51088162353e1dd14b4484f63b056bce60 (diff)
downloadhercules-33ef1aa65495269c552827c8b89f2ac503a570f2.tar.gz
hercules-33ef1aa65495269c552827c8b89f2ac503a570f2.tar.bz2
hercules-33ef1aa65495269c552827c8b89f2ac503a570f2.tar.xz
hercules-33ef1aa65495269c552827c8b89f2ac503a570f2.zip
* Script commands documentation updates.
- Added missing description for script command 'cooking' provided by Masao (bugreport:3372, follow up to r13628). - Fixed wrong item levels being listed in the description to script command 'produce'. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14742 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r--doc/script_commands.txt42
1 files changed, 36 insertions, 6 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index 6afc94444..0be0460e1 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -4,7 +4,7 @@
//= A reference manual for the eAthena scripting language.
//= Commands are sorted depending on their functionality.
//===== Version ===========================================
-//= 3.37.20110306
+//= 3.38.20110313
//=========================================================
//= 1.0 - First release, filled will as much info as I could
//= remember or figure out, most likely there are errors,
@@ -159,6 +159,9 @@
//= Added 'buyingstore' command. [Ai4rei]
//= 3.37.20110306
//= Added 'searchstores' command. [Ai4rei]
+//= 3.38.20110313
+//= Added 'cooking' command. [Ai4rei]
+//= Fixed item levels in 'produce' command.
//=========================================================
This document is a reference manual for all the scripting commands and functions
@@ -4317,11 +4320,38 @@ Valid item levels are:
1 - Level 1 Weapons
2 - Level 2 Weapons
3 - Level 3 Weapons
- 16 - Blacksmith's Stones and Metals
- 32 - Alchemist's Potions
- 64 - Whitesmith's Coins
- 123 - Whitesmith's Nuggets
- 256 - Assassin Cross's Deadly Poison
+ 21 - Blacksmith's Stones and Metals
+ 22 - Alchemist's Potions, Holy Water, Assassin Cross's Deadly Poison
+ 23 - Elemental Converters
+
+---------------------------------------
+
+*cooking <dish level>;
+
+This command will open a produce window on the client connected to the invoking
+character. The 'dish level' is the number which determines what kind of dish
+level you can produce. You can see the full list of dishes that can be produced in
+'db/produce_db.txt'.
+
+The window will be shown empty if the invoking character does not have enough of
+the required incredients to cook a dish.
+
+Valid dish levels are:
+
+11 - Level 1 Dish
+12 - Level 2 Dish
+13 - Level 3 Dish
+14 - Level 4 Dish
+15 - Level 5 Dish
+16 - Level 6 Dish
+17 - Level 7 Dish
+18 - Level 8 Dish
+19 - Level 9 Dish
+20 - Level 10 Dish
+
+Altough it's required to set a dish level, it doesn't matter if you set it to 1
+and you want to cook a level 10 dish, as long as you got the required incredients
+to cook the dish the command works.
---------------------------------------