diff options
author | Mysteries <mysteriousragnarok@hotmail.com> | 2013-02-10 22:22:23 -0500 |
---|---|---|
committer | Mysteries <mysteriousragnarok@hotmail.com> | 2013-02-10 22:22:23 -0500 |
commit | 56a20bb18d6fde61bb82cf160a131eb54d464148 (patch) | |
tree | 6c3aa9dfa71e3c4e464fc86f611c40088bf8edd3 /src/map/script.c | |
parent | a2b070b52f1a48dc83ea540fd124c4e47022624a (diff) | |
download | hercules-56a20bb18d6fde61bb82cf160a131eb54d464148.tar.gz hercules-56a20bb18d6fde61bb82cf160a131eb54d464148.tar.bz2 hercules-56a20bb18d6fde61bb82cf160a131eb54d464148.tar.xz hercules-56a20bb18d6fde61bb82cf160a131eb54d464148.zip |
Merged rAthena Changes
- Added checkidle() command that was present in rAthena since r17126
- Documented checkidle() function
- More clearly defined variables in eA Job System documentation
- Added missing 'stopnpctimer' in custom Cluckers script
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index a6d588113..b89121ee4 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -14968,6 +14968,23 @@ BUILDIN_FUNC(checkchatting) // check chatting [Marka] return 0; } +BUILDIN_FUNC(checkidle) +{ + TBL_PC *sd = NULL; + + if (script_hasdata(st, 2)) + sd = map_nick2sd(script_getstr(st, 2)); + else + sd = script_rid2sd(st); + + if (sd) + script_pushint(st, DIFF_TICK(last_tick, sd->idletime)); + else + script_pushint(st, 0); + + return 0; +} + BUILDIN_FUNC(searchitem) { struct script_data* data = script_getdata(st, 2); @@ -17689,6 +17706,7 @@ struct script_function buildin_func[] = { BUILDIN_DEF(roclass,"i?"), //[Skotlex] BUILDIN_DEF(checkvending,"?"), BUILDIN_DEF(checkchatting,"?"), + BUILDIN_DEF(checkidle,"?"), BUILDIN_DEF(openmail,""), BUILDIN_DEF(openauction,""), BUILDIN_DEF(checkcell,"siii"), |