summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c
index a51f65f..c5bcae1 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -376,7 +376,7 @@ struct {
{buildin_gettimetick,"gettimetick","i"},
{buildin_gettime,"gettime","i"},
{buildin_gettimestr,"gettimestr","si"},
- {buildin_openstorage,"openstorage",""},
+ {buildin_openstorage,"openstorage","*"},
{buildin_guildopenstorage,"guildopenstorage","*"},
{buildin_itemskill,"itemskill","iis"},
{buildin_monster,"monster","siisii*"},
@@ -3522,8 +3522,16 @@ int buildin_gettimestr(struct script_state *st)
*/
int buildin_openstorage(struct script_state *st)
{
- st->state=STOP;
- storage_storageopen(script_rid2sd(st));
+// int sync = 0;
+// if (st->end >= 3) sync = conv_num(st,& (st->stack->stack_data[st->start+2]));
+ struct map_session_data *sd=script_rid2sd(st);
+
+// if (sync) {
+ st->state=STOP;
+ sd->npc_flags.storage = 1;
+// } else st->state = END;
+
+ storage_storageopen(sd);
return 0;
}
@@ -3531,6 +3539,7 @@ int buildin_guildopenstorage(struct script_state *st)
{
struct map_session_data *sd=script_rid2sd(st);
int ret;
+ st->state=STOP;
ret = storage_guild_storageopen(sd);
push_val(st->stack,C_INT,ret);
return 0;