1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../../../common/HPMi.h"
#include "../../../common/malloc.h"
#include "../../../common/mmo.h"
#include "../../../common/socket.h"
#include "../../../common/strlib.h"
#include "../../../map/map.h"
#include "../../../map/npc.h"
#include "../../../map/pc.h"
#include "map/data/mapd.h"
#include "map/data/npcd.h"
#include "map/struct/mapdext.h"
#include "map/struct/npcdext.h"
#include "map/npc.h"
void enpc_parse_unknown_mapflag(const char *name, char *w3, char *w4, const char* start,
const char* buffer, const char* filepath, int *retval)
{
if (!strcmpi(w3, "invisible"))
{
int16 m = map->mapname2mapid(name);
struct MapdExt *data = mapd_get(m);
if (data)
data->invisible = true;
}
else if (!strcmpi(w3, "mask"))
{
int16 m = map->mapname2mapid(name);
struct MapdExt *data = mapd_get(m);
if (data)
data->mask = atoi(w4);
}
else if (!strcmpi(w3, "nopve"))
{
int16 m = map->mapname2mapid(name);
struct MapdExt *data = mapd_get(m);
if (data)
data->flag.nopve = 1;
}
else
{
ShowError("npc_parse_mapflag: unrecognized mapflag '%s' in file '%s', line '%d'.\n", w3, filepath, strline(buffer,start-buffer));
if (retval)
*retval = EXIT_FAILURE;
}
hookStop();
}
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;
}
|