diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/quest_variables.txt | 66 |
2 files changed, 68 insertions, 0 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index a9161d50b..b359bb405 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -36,6 +36,8 @@ Musashiden Date Added
======
+06/26
+ * Added BIT-WISE perm variables info quest_variables.txt [Lupus]
06/25
* Moved Umbala quests from cities/ to quests/, namely Skeletal Gate, Umbala Event, and Create/Dismantle Stone
- Moved Piano and Book of Devil quest from cities/niflheim.txt to quests/quests_niflheim.txt
diff --git a/npc/quest_variables.txt b/npc/quest_variables.txt new file mode 100644 index 000000000..d3448ef71 --- /dev/null +++ b/npc/quest_variables.txt @@ -0,0 +1,66 @@ +--------------------------------------------------------------
+- Permanent Quest Variables -
+--------------------------------------------------------------
+
+This file should help to understand and manage bit-wise quest
+variables. You can store up to 31 boolean value into a single
+variable. [Lupus]
+--------------------------------------------------------------
+
+
+--------------------------------------------------------------
+Variable: MISC_QUEST
+
+
+Quest: Juice Maker Quest
+Info: How to make juices. This bit keeps final state of the quest.
+How to set: set MISC_QUEST,MISC_QUEST | 1;
+How to check: if(MISC_QUEST & 1){}
+
+
+Quest: Tempestra Quest
+Info: Has you given a potion to Temperstra or not.
+How to set: set MISC_QUEST,MISC_QUEST | 2;
+How to check: if(MISC_QUEST & 2){}
+
+
+Quest: Morgenstein Quest
+Info: How to make Mixture & Counteragent. Also subquest for Alchemist Job
+ This bit keeps final state of the quest.
+How to set: set MISC_QUEST,MISC_QUEST | 4;
+How to check: if(MISC_QUEST & 4){}
+
+
+Quest: Prontera Culvert Quest
+Info: Could you enter the Prontera Culvert or not.
+How to set: set MISC_QUEST,MISC_QUEST | 8;
+How to check: if(MISC_QUEST & 8){}
+
+
+Quest: Edgar's Offer
+Info: Cheap ticket from Izlude to Alberta.
+ This bit keeps final state of the quest.
+How to set: set MISC_QUEST,MISC_QUEST | 16;
+How to check: if(MISC_QUEST & 16){}
+
+Quest: Piano Quest
+Info: The only way from Niflheim to Umbala.
+How to set: set MISC_QUEST,MISC_QUEST | 32;
+How to check: if(MISC_QUEST & 32){}
+
+
+Quest: ?
+Info: ?
+How to set: set MISC_QUEST,MISC_QUEST | ?;
+How to check: if(MISC_QUEST & ?){}
+
+--------------------------------------------------------------
+Variable: MISC_QUEST2
+
+
+Quest: ?
+Info: ?
+How to set: set MISC_QUEST,MISC_QUEST | ?;
+How to check: if(MISC_QUEST & ?){}
+
+--------------------------------------------------------------
|