From ff4faca9cc44e98abad50bfda849f596d7bc81c1 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Sun, 12 Jan 2014 17:08:46 -0200 Subject: Follow up 20bdc01fa687b174a732be4483ddea4982d67ce9 Fixed scripting deficiency of being unable to tell whether a user is assigned to a specific instance or not ( 20bdc01fa687b174a732be4483ddea4982d67ce9 removed that ability ), because users can be assigned to more than a single instance on hercules, the previous instance_id() isn't viable, so I'm introducing has_instance2(""), returns the instance id of that map for the user (as long as the user is assigned to a instead with that map), -1 upon failure -- valid instance ids are >= 0. Signed-off-by: shennetsind --- src/map/script.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'src/map/script.c') diff --git a/src/map/script.c b/src/map/script.c index 3bd6d033d..64943dd2a 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -16558,11 +16558,15 @@ BUILDIN(has_instance) { const char *str; int16 m; int instance_id = -1; - + bool type = strcmp(script->getfuncname(st),"has_instance2") == 0 ? true : false; + str = script_getstr(st, 2); if( (m = map->mapname2mapid(str)) < 0 ) { - script_pushconststr(st, ""); + if( type ) + script_pushint(st, -1); + else + script_pushconststr(st, ""); return true; } @@ -16609,11 +16613,17 @@ BUILDIN(has_instance) { } if( !instance->valid(instance_id) || (m = instance->map2imap(m, instance_id)) < 0 ) { - script_pushconststr(st, ""); + if( type ) + script_pushint(st, -1); + else + script_pushconststr(st, ""); return true; } - script_pushconststr(st, map->list[m].name); + if( type ) + script_pushint(st, instance_id); + else + script_pushconststr(st, map->list[m].name); return true; } int buildin_instance_warpall_sub(struct block_list *bl,va_list ap) { @@ -18921,6 +18931,7 @@ void script_parse_builtin(void) { BUILDIN_DEF(instance_check_party,"i???"), BUILDIN_DEF(instance_mapname,"s?"), BUILDIN_DEF(instance_set_respawn,"sii?"), + BUILDIN_DEF2(has_instance,"has_instance2","s"), /** * 3rd-related -- cgit v1.2.3-70-g09d2