diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-31 18:57:22 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-31 18:57:22 +0000 |
commit | 6f88f2409f1853ae205573257865462540f935fc (patch) | |
tree | 30598fa37157d159bce0f8712a8b2b38047e2eab /doc/sample/getiteminfo.txt | |
parent | d35717644b58c55b50098b3b0a08cf8002d39cca (diff) | |
download | hercules-6f88f2409f1853ae205573257865462540f935fc.tar.gz hercules-6f88f2409f1853ae205573257865462540f935fc.tar.bz2 hercules-6f88f2409f1853ae205573257865462540f935fc.tar.xz hercules-6f88f2409f1853ae205573257865462540f935fc.zip |
Moved /npc/sample/ to /doc/sample. These are examples, not actual npcs.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14277 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/sample/getiteminfo.txt')
-rw-r--r-- | doc/sample/getiteminfo.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/sample/getiteminfo.txt b/doc/sample/getiteminfo.txt new file mode 100644 index 000000000..e98212739 --- /dev/null +++ b/doc/sample/getiteminfo.txt @@ -0,0 +1,16 @@ +//by Lupus + +prontera,156,179,6 script test_getiteminfo 117,{ + mes "Please enter an item ID (501 ... 14000)"; + input @value; +//WOW! this line uses INTERNAL function of your client to show item name by its ID! +// ^nItemID^XXXX -> Item Name + mes "Item ID: "+@value+" ^nItemID^"+@value; + mes "Current Item info:"; + set @id,0; +L_LOOP: + mes " getiteminfo("+@value+","+@id+") = "+getiteminfo(@value,@id); + set @id,@id+1; + if(@id<14) goto L_LOOP; + close; +}
\ No newline at end of file |