A Simple introductory quest in the newbies house.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@12998 282e977c-c81d-0410-88c4-b93c2d0d6712
master
cavesomething 2010-04-27 12:48:36 +00:00
parent ea59e266e7
commit 60f70e48b7
4 changed files with 121 additions and 2 deletions

View File

@ -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

View File

@ -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

33
start/start.quests 100644
View File

@ -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

View File

@ -26,6 +26,9 @@
include darcap/darcap.quests
include scorn/scorn.quests
include test/test.quests
include scorn/scorn.quests
include start/start.quests