diff options
author | shennetsind <ind@henn.et> | 2013-06-08 19:06:40 -0300 |
---|---|---|
committer | Euphy <euphy@rathena.org> | 2013-06-15 15:44:29 -0400 |
commit | 707bbc516f23f184e046a52b2a375313ceee94f0 (patch) | |
tree | ae37ba3602e060eaecce7cd8563b6ca9d497f66b | |
parent | 8a12a6a285817e2d500ad1de2f62b117c1a5ebb1 (diff) | |
download | hercules-707bbc516f23f184e046a52b2a375313ceee94f0.tar.gz hercules-707bbc516f23f184e046a52b2a375313ceee94f0.tar.bz2 hercules-707bbc516f23f184e046a52b2a375313ceee94f0.tar.xz hercules-707bbc516f23f184e046a52b2a375313ceee94f0.zip |
Fixed getequipcardid name
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index 1a3a20c7c..b36d86111 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -11598,7 +11598,7 @@ BUILDIN(setiteminfo) Useful for such quests as "Sign this refined item with players name" etc Hat[0] +4 -> Player's Hat[0] +4 *------------------------------------------*/ -BUILDIN(getequpcardid) +BUILDIN(getequipcardid) { int i=-1,num,slot; TBL_PC *sd; @@ -17638,7 +17638,7 @@ void script_parse_builtin(void) { BUILDIN_DEF(compare,"ss"), // Lordalfa - To bring strstr to scripting Engine. BUILDIN_DEF(getiteminfo,"ii"), //[Lupus] returns Items Buy / sell Price, etc info BUILDIN_DEF(setiteminfo,"iii"), //[Lupus] set Items Buy / sell Price, etc info - BUILDIN_DEF(getequpcardid,"ii"), //[Lupus] returns CARD ID or other info from CARD slot N of equipped item + BUILDIN_DEF(getequipcardid,"ii"), //[Lupus] returns CARD ID or other info from CARD slot N of equipped item // [zBuffer] List of mathematics commands ---> BUILDIN_DEF(sqrt,"i"), BUILDIN_DEF(pow,"ii"), |