diff options
author | Emistry Haoyan <Equinox1991@gmail.com> | 2016-08-20 03:10:26 +0800 |
---|---|---|
committer | Emistry Haoyan <Equinox1991@gmail.com> | 2016-08-28 03:43:04 +0800 |
commit | ac6fd81810e6afb1ef60e7f2c7f8fc6e03408724 (patch) | |
tree | 92b8376366297339cae6612128d2786463f740f4 /doc/script_commands.txt | |
parent | 16f998c8a79153ed9f6721c36e129b6080fa59d2 (diff) | |
download | hercules-ac6fd81810e6afb1ef60e7f2c7f8fc6e03408724.tar.gz hercules-ac6fd81810e6afb1ef60e7f2c7f8fc6e03408724.tar.bz2 hercules-ac6fd81810e6afb1ef60e7f2c7f8fc6e03408724.tar.xz hercules-ac6fd81810e6afb1ef60e7f2c7f8fc6e03408724.zip |
Update *makeitem2 script command
- squash commits.
- fix conflicts during rebase.
- fix travis build warnings.
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 204723905..92d5a0a4e 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -4976,7 +4976,32 @@ will be used. --------------------------------------- -*cleanarea("<map name>", <x1>, <y1>, <x2>, <y2>) +*makeitem2(<item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,{"<map name>",<X>,<Y>,<range>}) +*makeitem2("<item name>",<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,{"<map name>",<X>,<Y>,<range>}) + +This script command work like 'makeitem', but it has additional parameters +to expand the usage of the scritp command. + +Parameter List: + itemid - ID / Name of an item + amount - Amount you want produced (Value: 1~MAX_AMOUNT) + - if item type is Armor/Wepaon/PetEgg/PetArmor, amount will be limit to 1 + identify - Item to be identified (1) or not (0) + refine - Refine count of item. (Value: 0 ~ MAX_REFINE) + attribute - Item is broken (1) or not (0) + card1,2,3,4 - Card IDs that compound on each slot + +Optional Parameter List: + map name - Map name (Default to attached player map) + X,Y - The coordinate of item will be dropped + If value = 0, it's drop random across the map + If value = -1, its drop around player + range - Range of item drop around player. (Value: 1 ~ battle_config.area_size, Default: 3) + Default value will be used if no player are attached to the script. + +--------------------------------------- + +*cleanarea("<map name>",<x1>,<y1>,<x2>,<y2>) *cleanmap("<map name>") These commands will clear all items lying on the ground on the specified |