quest.h 570 B

123456789101112131415
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _QUEST_H_
  4. #define _QUEST_H_
  5. int quest_pc_login(TBL_PC * sd);
  6. int quest_load_info(TBL_PC * sd, struct mmo_charstatus * st);
  7. int quest_make_savedata(TBL_PC * sd);
  8. int quest_add(TBL_PC * sd, struct quest * qd);
  9. int quest_delete(TBL_PC * sd, int quest_id);
  10. int quest_update_objective(TBL_PC * sd, int quest_id, int objective_num, const char * name, int count);
  11. int quest_update_status(TBL_PC * sd, int quest_id, bool status);
  12. #endif