From ab9362782312ad81ef1c1d47dcac464607a710a2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 23 Dec 2014 00:16:51 +0300 Subject: map: if got buy command for market npc, show market instead of buy shop. --- src/map/npc.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) (limited to 'src/map/npc.c') diff --git a/src/map/npc.c b/src/map/npc.c index 7b15491..74ec586 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -52,3 +52,62 @@ void enpc_parse_unknown_mapflag(const char *name, char *w3, char *w4, const char *retval = EXIT_FAILURE; } } + +int enpc_buysellsel(struct map_session_data* sd, int *id, int *type) +{ + struct npc_data *nd; + + if (!sd) + return 1; + + if ((nd = npc->checknear(sd, map->id2bl(*id))) == NULL) + { + hookStop(); + return 1; + } + + if (nd->option & OPTION_INVISIBLE) // can't buy if npc is not visible (hack?) + { + hookStop(); + return 1; + } + + if (*type == 0 && nd->subtype == SCRIPT && nd->u.scr.shop && nd->u.scr.shop->type == NST_MARKET) + { + clif->npc_market_open(sd, nd); + hookStop(); + return 0; + } + + if (nd->subtype != SHOP && !(nd->subtype == SCRIPT && nd->u.scr.shop && nd->u.scr.shop->items)) + { + if (nd->subtype == SCRIPT) + ShowError("npc_buysellsel: trader '%s' has no shop list!\n", nd->exname); + else + ShowError("npc_buysellsel: no such shop npc %d (%s)\n", *id, nd->exname); + + if (sd->npc_id == *id) + sd->npc_id = 0; + hookStop(); + return 1; + } + + if (nd->class_ < 0 && !sd->state.callshop) + { // not called through a script and is not a visible NPC so an invalid call + hookStop(); + return 1; + } + + // reset the callshop state for future calls + sd->state.callshop = 0; + sd->npc_shopid = *id; + + if (*type == 0) + clif->buylist(sd, nd); + else + clif->selllist(sd); + + hookStop(); + return 0; +} + -- cgit v1.2.3-70-g09d2