blob: 632456da37cc630bf835c3caf2cbdcf48b30c4e8 (
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
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers
#ifndef EVOL_MAP_PC
#define EVOL_MAP_PC
enum VarConst
{
Const_ClientVersion = 10000
};
int epc_readparam_pre(struct map_session_data* sd, int *type);
int epc_setregistry(struct map_session_data *sd, int64 *reg, int *val);
void epc_equipitem_pos(struct map_session_data *sd, struct item_data *id, int *posPtr);
void epc_unequipitem_pos(struct map_session_data *sd, int *nPtr, int *posPtr);
bool epc_can_attack (struct map_session_data *sd, int *target_id);
int epc_takeitem(struct map_session_data *sd, struct flooritem_data *fitem);
int epc_class2idx(int *classPtr);
int epc_jobid2mapid(unsigned short *b_class);
int epc_mapid2jobid(unsigned short *class_, int *sex);
bool epc_db_checkid(unsigned int *class_);
int epc_calc_skilltree_normalize_job(struct map_session_data *sd);
#endif // EVOL_MAP_PC
|