-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgroup.h
More file actions
45 lines (29 loc) · 972 Bytes
/
group.h
File metadata and controls
45 lines (29 loc) · 972 Bytes
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
#ifndef twf_group_h
#define twf_group_h
/*
* PET ROUTINES
*/
char_data *has_mount ( char_data*, bool = true );
bool has_elemental ( char_data* );
int undead_pets ( char_data* );
int number_of_pets ( char_data* );
int pet_levels ( char_data* );
inline bool is_pet( char_data* ch )
{
return( !ch->pcdata && is_set( ch->status, STAT_PET ) );
}
/*
* FOLLOWING ROUTINES
*/
//char_array* followers ( char_data*, Content_Array* = 0 );
//void add_followers ( char_data*, char_array&, Content_Array* = 0 );
void add_follower ( char_data*, char_data*, const char* = empty_string );
void stop_follower ( char_data* );
/*
* GROUP ROUTINES
*/
int min_group_move ( char_data* );
int min_group_hit ( char_data* );
void add_group( char_data*, char_data* );
char_data *group_leader( char_data* );
#endif // twf_group_h