Template:QuestInfo/doc: Difference between revisions

m removing categories from doc page
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
The QuestInfo template is used to display question information from {{DQ9}}.  It is a meta-template and should only be used inside of a [[Template:DQIXQuest]] sub-template.
== Usage ==
== Usage ==
{| style="float: left; background: transparent;"
|
<pre>{{QuestInfo
<pre>{{QuestInfo
| num  =  
| num  =  
Line 14: Line 14:
| hint =  
| hint =  
}}</pre>
}}</pre>
|}
''num'' is the number of the quest<br/>
<br/>
''num'' is the numbering of the quest<br/>
''title'' is the title of the quest<br/>
''title'' is the title of the quest<br/>
''location'' is where the hero can receive the quest<br/>
''location'' is where the hero can receive the quest<br/>
''available'' is the timing the quest is available<br/>
''available'' is the conditions which dictate when the quest is available<br/>
''requester'' is the NPC who give the quest to the hero<br/>
''requester'' is the NPC who give the quest to the hero<br/>
''responser'' is the NPC who announce the completion of the quest, if none is supplied, by default it will be the same as the requester<br/>
''responser'' is the NPC who announce the completion of the quest, if none is supplied, by default it will be the same as the requester<br/>
''item'' is the item(s) needed to be collected for completing the quest<br/>
''item'' is the item(s) needed to be collected for completing the quest<br/>
''reward'' is the item or skill obtained as the reward for completing the quest<br/>
''reward'' is the item or skill obtained as the reward for completing the quest<br/>
''detail'' is the detail description of the quest'<br/>
''detail'' is the detail description of the quest from the game'<br/>
''hint'' is the way to complete the quest
''hint'' is advice for completing the quest
<br/><br/><br/>
<br/><br/><br/>


== Example ==
== Example ==
===Sample===
{{QuestInfo
{{QuestInfo
| num  = 0
| num  = 0
Line 39: Line 38:
| reward = Fruit of Quest
| reward = Fruit of Quest
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
| hint = Do this quest fast
}}
}}
'''Code'''
====Code====
{| style="float: left; background: transparent;"
|
<pre>{{QuestInfo
<pre>{{QuestInfo
| num  = 0
| num  = 0
Line 52: Line 50:
| item = Seed of accomplishment
| item = Seed of accomplishment
| reward = Fruit of Quest
| reward = Fruit of Quest
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
| hint = Do this quest fast
}}</pre>
===Sample: Least info===
{{QuestInfo
| num  = 0
| title  = Example quest
| location = Questville
| requester = King of Quests
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
}}
====Code====
<pre>{{QuestInfo
| num  = 0
| title  = Example quest
| location = Questville
| requester = King of Quests
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
| detail = King of Quest ask you to deliver the '''Seed of Accomplishment''' to '''Questor'''.
}}</pre>
}}</pre>
|}