diff --git a/default.quests b/default.quests index 6322fd162..b92890232 100644 --- a/default.quests +++ b/default.quests @@ -251,3 +251,36 @@ I have returned Gramps Malone's walking stick. end_description end_step end_quest +quest tutorial/keys +title Getting Past Locked Doors +description +Using either the keys, your weapon or your lockpicking skills, open all three doors and claim the treasure in the chest at the end. +end_description +restart 0 +step 10 +description +I must open the first door, which uses a standard key, I can either use one of the keys beside the door, or I can attempt to break it down or I can use my lockpicking skill do open it. The sign beside the door will tell me how to do this. +end_description +end_step +step 20 +description +I have successfully opened the first door, I should attempt to open the door directly ahead of me in the same way. +end_description +end_step +step 30 +description +I have opened the second door, I should now use the chest key to open the chest and take whatever is within. +end_description +end_step +step 40 +description +I have opened the chest, and found a strange key inside, I should use this to open the last door. +end_description +end_step +step 50 +finishes_quest +description +I have opened the final door, I should open the chest and claim my reward. +end_description +end_step +end_quest diff --git a/start/newbieshouse b/start/newbieshouse index 6a9000a2e..c00acdf71 100644 --- a/start/newbieshouse +++ b/start/newbieshouse @@ -10,7 +10,7 @@ enter_x 9 enter_y 4 msg Created: 2003-07-31 Tchize -Modified: 2008-12-02 Rick Tanner +Modified: 2010-03-26 Cavesomething endmsg end arch dungeon_magic @@ -3314,6 +3314,16 @@ arch wwall_1_2 x 11 y 9 end +arch check_floor +hp 1 +x 11 +y 10 +arch event_trigger +name tutorial/keys 0>10 +title Python +slaying /python/dialog/QuestAdvance.py +end +end arch dungeon_magic x 11 y 10 @@ -4297,6 +4307,11 @@ arch random_wealth end arch random_food end +arch event_apply +name tutorial/keys 40>50 +title Python +slaying /python/dialog/QuestAdvance.py +end end arch dungeon_magic x 14 @@ -4607,6 +4622,11 @@ Use this key to open the locked door in the training house. endmsg x 15 y 5 +arch event_drop +name tutorial/keys 50 +title Python +slaying /python/dialog/QuestEssentialUntil.py +end end arch dungeon_magic x 15 @@ -4930,6 +4950,16 @@ slaying open_door msg Use this key to open the locked door in the training house. endmsg +arch event_drop +name tutorial/keys 50 +title Python +slaying /python/dialog/QuestEssentialUntil.py +end +arch event_pickup +name tutorial/keys 30>40 +title Python +slaying /python/dialog/QuestAdvance.py +end end end arch dungeon_magic @@ -4948,6 +4978,16 @@ arch woodfloor2 x 16 y 5 end +arch check_floor +hp 1 +x 16 +y 6 +arch event_trigger +name tutorial/keys 20>30 +title Python +slaying /python/dialog/QuestAdvance.py +end +end arch dungeon_magic x 16 y 6 @@ -4969,6 +5009,16 @@ arch woodfloor2 x 16 y 7 end +arch check_floor +hp 1 +x 16 +y 8 +arch event_trigger +name tutorial/keys 10>20 +title Python +slaying /python/dialog/QuestAdvance.py +end +end arch dungeon_magic x 16 y 8 diff --git a/start/start.quests b/start/start.quests new file mode 100644 index 000000000..296941da6 --- /dev/null +++ b/start/start.quests @@ -0,0 +1,33 @@ +quest tutorial/keys +title Getting Past Locked Doors +description +Using either the keys, your weapon or your lockpicking skills, open all three doors and claim the treasure in the chest at the end. +end_description +restart 0 +step 10 +description +I must open the first door, which uses a standard key, I can either use one of the keys beside the door, or I can attempt to break it down or I can use my lockpicking skill do open it. The sign beside the door will tell me how to do this. +end_description +end_step +step 20 +description +I have successfully opened the first door, I should attempt to open the door directly ahead of me in the same way. +end_description +end_step +step 30 +description +I have opened the second door, I should now use the chest key to open the chest and take whatever is within. +end_description +end_step +step 40 +description +I have opened the chest, and found a strange key inside, I should use this to open the last door. +end_description +end_step +step 50 +finishes_quest +description +I have opened the final door, I should open the chest and claim my reward. +end_description +end_step +end_quest diff --git a/world.quests b/world.quests index bf1ab9c0d..194da9469 100644 --- a/world.quests +++ b/world.quests @@ -26,6 +26,9 @@ include darcap/darcap.quests +include scorn/scorn.quests + include test/test.quests -include scorn/scorn.quests \ No newline at end of file +include start/start.quests +