diff options
author | Dastgir <dastgirp@gmail.com> | 2018-08-08 15:34:57 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-10-21 21:19:14 +0200 |
commit | 9b878ee44765010758c7c6da630431d9aaef71dc (patch) | |
tree | 2686dfd2dced77902c01c1bb8550250861bd925c /doc/sample | |
parent | 852c13305f67948531bd0277eb1922dbd02b1f26 (diff) | |
download | hercules-9b878ee44765010758c7c6da630431d9aaef71dc.tar.gz hercules-9b878ee44765010758c7c6da630431d9aaef71dc.tar.bz2 hercules-9b878ee44765010758c7c6da630431d9aaef71dc.tar.xz hercules-9b878ee44765010758c7c6da630431d9aaef71dc.zip |
Updated getiteminfo and setiteminfo.
Added ITR_TRADE (Trade restriction) for both script commands
Diffstat (limited to 'doc/sample')
-rw-r--r-- | doc/sample/getiteminfo.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/sample/getiteminfo.txt b/doc/sample/getiteminfo.txt index 57407c072..9d5121635 100644 --- a/doc/sample/getiteminfo.txt +++ b/doc/sample/getiteminfo.txt @@ -9,12 +9,12 @@ //============================================================ prontera,156,179,6 script test_getiteminfo 4_F_KAFRA1,{ - mes "Please enter an item ID."; - input .@value; + mes("Please enter an item ID."); + input(.@value); // This line uses an INTERNAL function of your client to show item name by its ID! // ^nItemID^XXXX -> Item Name - mes "Item ID: "+.@value+" ^nItemID^"+.@value; + mesf("Item ID: %d ^nItemID^%d", .@value, .@value); mes("Current item info:"); mesf("Buy Price: %d", getiteminfo(.@value, ITEMINFO_BUYPRICE)); @@ -34,5 +34,8 @@ prontera,156,179,6 script test_getiteminfo 4_F_KAFRA1,{ mesf("View ID: %d", getiteminfo(.@value, ITEMINFO_VIEWID)); mesf("MATK: %d", getiteminfo(.@value, ITEMINFO_MATK)); mesf("View Sprite: %d", getiteminfo(.@value, ITEMINFO_VIEWSPRITE)); + + .@trade$ = callfunc("F_GetTradeRestriction", .@value); + mesf("Trade Restriction: %s", .@trade$); close; } |