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
|
/**
* @file
* Party-specific structures.
*/
#ifndef PARTY_H
#define PARTY_H
/** One party. First item is ::firstparty. */
typedef struct party_struct {
char *partyleader; /**< Who is the leader. */
char passwd[9]; /**< Party password. */
struct party_struct *next; /**< Next party in list. */
char *partyname; /**< Party name. */
#ifdef PARTY_KILL_LOG
struct party_kill {
char killer[MAX_NAME+1], dead[MAX_NAME+1];
int64_t exp;
} party_kills[PARTY_KILL_LOG];
int64_t total_exp;
uint32_t kills;
#endif
} partylist;
#endif
|