You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
846 B
38 lines
846 B
/** |
|
* @file quests.cpp |
|
* |
|
* Interface of functionality for handling quests. |
|
*/ |
|
#ifndef __QUESTS_H__ |
|
#define __QUESTS_H__ |
|
|
|
extern BOOL questlog; |
|
extern BYTE *pQLogCel; |
|
extern QuestStruct quests[MAXQUESTS]; |
|
extern int ReturnLvlX; |
|
extern int ReturnLvlY; |
|
extern int ReturnLvlT; |
|
extern int ReturnLvl; |
|
|
|
void InitQuests(); |
|
void CheckQuests(); |
|
BOOL ForceQuests(); |
|
BOOL QuestStatus(int i); |
|
void CheckQuestKill(int m, BOOL sendmsg); |
|
void DRLG_CheckQuests(int x, int y); |
|
void SetReturnLvlPos(); |
|
void GetReturnLvlPos(); |
|
void ResyncMPQuests(); |
|
void ResyncQuests(); |
|
void DrawQuestLog(); |
|
void StartQuestlog(); |
|
void QuestlogUp(); |
|
void QuestlogDown(); |
|
void QuestlogEnter(); |
|
void QuestlogESC(); |
|
void SetMultiQuest(int q, int s, int l, int v1); |
|
|
|
/* rdata */ |
|
extern QuestData questlist[MAXQUESTS]; |
|
|
|
#endif /* __QUESTS_H__ */
|
|
|