blob: 0bddb02b82a2650613de8bf1c07023131f534bec (
plain) (
blame)
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
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2015 Evol developers
#include "common/hercules.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common/conf.h"
#include "common/HPMi.h"
#include "common/memmgr.h"
#include "common/mmo.h"
#include "common/socket.h"
#include "common/strlib.h"
#include "common/timer.h"
#include "map/battle.h"
#include "map/itemdb.h"
#include "map/mob.h"
#include "plugins/HPMHooking.h"
#include "emap/mob.h"
#include "emap/data/mobd.h"
#include "emap/struct/mobdext.h"
int emob_deleteslave_sub_pre(struct block_list **blPtr,
va_list ap)
{
struct block_list *bl = *blPtr;
if (!bl)
{
hookStop();
return 0;
}
TBL_MOB *md = (TBL_MOB *)bl;
if (!md)
{
hookStop();
return 0;
}
const int id = va_arg(ap, int);
if (md->master_id > 0 && md->master_id == id)
{
if (md->db->status.mode & MD_SURVIVE_WITHOUT_MASTER)
{
md->master_id = 0;
md->master_dist = 0;
}
else
{
status_kill(bl);
}
}
hookStop();
return 0;
}
void emob_read_db_additional_fields_pre(struct mob_db **entryPtr,
struct config_setting_t **itPtr,
int *nPtr __attribute__ ((unused)),
const char **sourcePtr __attribute__ ((unused)))
{
int i32 = 0;
struct MobdExt *data = mobd_get(*entryPtr);
if (!data)
{
hookStop();
return;
}
if (mob->lookup_const(*itPtr, "WalkMask", &i32))
data->walkMask = i32;
}
uint32 emob_read_db_mode_sub_post(uint32 retVal,
struct mob_db *entry __attribute__ ((unused)),
struct config_setting_t *t)
{
struct config_setting_t *t2;
if ((t2 = libconfig->setting_get_member(t, "SurviveWithoutMaster")))
retVal |= libconfig->setting_get_bool(t2) ? MD_SURVIVE_WITHOUT_MASTER : 0;
return retVal;
}
|