diff options
author | L0neW0lf.eAthena <L0neW0lf.eAthena@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-10-26 19:50:33 +0000 |
---|---|---|
committer | L0neW0lf.eAthena <L0neW0lf.eAthena@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-10-26 19:50:33 +0000 |
commit | 53453425e64412f22734ae9a783c853a3f17027e (patch) | |
tree | 2c236f60f8f68d9e272ef71e3058c1a3452b6993 /doc/script_commands.txt | |
parent | b6620108c8dc2b0e394462a7d32cc77a446dddee (diff) | |
download | hercules-53453425e64412f22734ae9a783c853a3f17027e.tar.gz hercules-53453425e64412f22734ae9a783c853a3f17027e.tar.bz2 hercules-53453425e64412f22734ae9a783c853a3f17027e.tar.xz hercules-53453425e64412f22734ae9a783c853a3f17027e.zip |
* Added Rune Knight job quest, and mount rental NPC.
* Added Rune Knight skill updates, and supporting information for r14983.
* Updated Emperium to be plant-mode.
* Updated item database with RE stats.
* Added new constants to const.txt.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14984 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 1afff5377..b8eaa8ebc 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -183,6 +183,9 @@ //= Added 'getmercinfo' command. [Ai4rei] //= 3.46.20110810 //= Added information on OnTouchNPC and 'unitwarp' special case [Skotlex] +//= 3.47.20111025 +//= Documented successruneuse and setdragon. [L0ne_W0lf] +//= Ammended documentation for Produce. //========================================================= This document is a reference manual for all the scripting commands and functions @@ -2769,6 +2772,17 @@ when you want to check item cards or if it's signed. Useful for such quests as Hat[0] +4 -> Player's Hat[0] +4 --------------------------------------- + +*successruneuse(<item id>) + +Returns 0 (failed) or 1 (success) when using Rune Knight Runestone items. + + if(successuserune(12725)){ itemskill RK_REFRESH,1; } else { dispbottom "You have failed to use the runestone."; } + +This function not only determines if the rune stone was used successfully +but will also handle the backfire effects imposed upon the player. + +--------------------------------------- // 2,1.- End of item-related commands. // @@ -3480,6 +3494,30 @@ bird and 0 if they don't. --------------------------------------- +*setdragon {<flag>{,<color>}}; + +If <flag> is 0 this command will remove the mount from the character. +Otherwise it give the invoking character a Dragon Mount if they are a Rune +Knight + +If both <flag> and <color> are supplied, and flag is 1, <color> will change +color of the dragon mount used. <color> is 0 by default. Values higher than 4, +or lower than 0, will default to red or green respectively. + +Valid values for <color> are: + DRAGON_GREEN (0), + DRAGON_BLACK (1), + DRAGON_WHITE (2), + DRAGON_BLUE (3), + DRAGON_RED (4) + +This command is limited to only Rune Knights. + +Note: the character needs to have the skill KN_RIDING to gain a mount +This may be a bug in AEGIS, as RK_DRAGONTRAINING should limit this. + +--------------------------------------- + *checkvending ({"<player name>"}) *checkchatting ({"<Player Name>"}) @@ -4341,7 +4379,7 @@ target cursor is shown. --------------------------------------- -*produce <item level>; +*produce <item level>{,<itemid>}; This command will open a crafting window on the client connected to the invoking character. The 'item level' is a number which determines what kind of a crafting @@ -4359,6 +4397,10 @@ Valid item levels are: 22 - Alchemist's Potions, Holy Water, Assassin Cross's Deadly Poison 23 - Elemental Converters +Supplying <itemid> currently (and for probably will only) ever be used by +the Rune Knight runestones, to create other runestones and affect the +success rate. Using items lower than 12734 or higher 12738 will have no effect. + --------------------------------------- *cooking <dish level>; |