forked from kyonshi/grenzland-mud
Actually ue typedefs for obj_data, char_data and descriptor_data.
Some linting in a couple of files. Massive commit...
This commit is contained in:
+12
-12
@@ -89,23 +89,23 @@ void destroy_quests(void);
|
||||
void assign_the_quests(void);
|
||||
void parse_quest(FILE *quest_f, int nr);
|
||||
int count_quests(qst_vnum low, qst_vnum high);
|
||||
void list_quests(struct char_data *ch, zone_rnum zone, qst_vnum vmin, qst_vnum vmax);
|
||||
void set_quest(const struct char_data *ch, qst_rnum rnum);
|
||||
void clear_quest(const struct char_data *ch);
|
||||
void generic_complete_quest(struct char_data *ch);
|
||||
void autoquest_trigger_check(struct char_data *ch, const struct char_data *vict, const struct obj_data *object, int type);
|
||||
void list_quests(char_data *ch, zone_rnum zone, qst_vnum vmin, qst_vnum vmax);
|
||||
void set_quest(const char_data *ch, qst_rnum rnum);
|
||||
void clear_quest(const char_data *ch);
|
||||
void generic_complete_quest(char_data *ch);
|
||||
void autoquest_trigger_check(char_data *ch, const char_data *vict, const obj_data *object, int type);
|
||||
qst_rnum real_quest(qst_vnum vnum);
|
||||
int is_complete(const struct char_data *ch, qst_vnum vnum);
|
||||
qst_vnum find_quest_by_qmnum(struct char_data *ch, mob_rnum qm, int num);
|
||||
void add_completed_quest(const struct char_data *ch, qst_vnum vnum);
|
||||
void remove_completed_quest(const struct char_data *ch, qst_vnum vnum);
|
||||
void quest_timeout(struct char_data *ch);
|
||||
int is_complete(const char_data *ch, qst_vnum vnum);
|
||||
qst_vnum find_quest_by_qmnum(char_data *ch, mob_rnum qm, int num);
|
||||
void add_completed_quest(const char_data *ch, qst_vnum vnum);
|
||||
void remove_completed_quest(const char_data *ch, qst_vnum vnum);
|
||||
void quest_timeout(char_data *ch);
|
||||
void check_timed_quests(void);
|
||||
SPECIAL(questmaster);
|
||||
ACMD(do_quest);
|
||||
/* Implemented in qedit.c */
|
||||
void qedit_parse(struct descriptor_data *d, char *arg);
|
||||
void qedit_string_cleanup(struct descriptor_data *d, int terminator);
|
||||
void qedit_parse(descriptor_data *d, char *arg);
|
||||
void qedit_string_cleanup(descriptor_data *d, int terminator);
|
||||
/* Implemented in genqst.c */
|
||||
int copy_quest_strings(struct aq_data *from, struct aq_data *to);
|
||||
int copy_quest(struct aq_data *from, struct aq_data *to, int free_old_strings);
|
||||
|
||||
Reference in New Issue
Block a user