This is a wiki for a reason. Anyone can contribute. If you see something that is inaccurate or can be improved, don't ask that it be fixed--just improve it.
[ Disclaimer, Create new user --- Wiki markup help, Install P99 ]

Difference between revisions of "Template:HuntingGuideSpot"

From Project 1999 Wiki
Jump to: navigation, search
Line 99: Line 99:
 
   <td>{{{monsters|}}}</td>
 
   <td>{{{monsters|}}}</td>
 
   <td>{{{xpModifier|}}}</td>
 
   <td>{{{xpModifier|}}}</td>
   <td>{{#if: {{{image}}} | [[File:{{{image|}}}]] | }}</td>
+
   <td>{{#if: image | [[File:{{{image|}}}]] | }}</td>
 
   <td>{{{notes|}}}</td>
 
   <td>{{{notes|}}}</td>
 
</tr>
 
</tr>
 
</includeonly>
 
</includeonly>

Revision as of 17:37, 20 June 2019

Contents

Introduction

Template for a single hunting spot location on the Per-Level Hunting Guide. Used together with a HuntingGuideTableStart template and an HTML table end tag to create a hunting guide table.

Fields

  • soloLevel: The level range of characters who will see mobs "con blue" at this location
  • groupLevel: The level range of characters who can expect to get experience with a full group at this location (deprecated; in the future once a "Group Hunting Guide" exists this field may be removed)
  • zone: The zone where the hunting spot is located (no brackets needed, this will automatically create a wiki link if you get the zone name correct)
  • area: A brief description of where in that zone the spot is (with any corresponding numbers from the zone's map, if appropriate)
  • monsters: A list of at least some of the monsters to kill at this spot (possibly with their names truncated to fit)
  • xpModifier: The experience percentage, not ZEM (remember, a ZEM of 75 = 100%), that is known for that zone in the wiki (NOTE: see warning about wiki ZEMs on guide page)
  • image (optional): An image to use for this spot (preferably of the spot itself, but possibly just of a monster there); only include the file name, without the "file:" part (so for instance to use "File:Npc a spectre.png" only enter "Npc a spectre.png"
  • imageWidth (optional): The width of the image, followed by "px" (eg. "75px"). This will vary since different images have different dimensions, but it should not exceed 75px? 100px?
  • notes: Any other details that would be useful for someone wanting to hunt here. In particular if the spot is good for one or more particular classes the phrase "Good for ___" (eg. "Good for Druids and Shaman") should be used.

Example

Solo Level Range Group Level Range Zone Area Monsters Exp Mod* Era Image Notes (on Class/Faction/Drops/Quests/etc.)
01-03 - Greater Faydark Ruins near Kelethin lifts Assorted critters 100% Cla Save Orc Hatchets from Orc Pawns for Orc Hatchets (Quest)

Example Code

{{HuntingGuideTableStart}}
{{HuntingGuideSpot
  |soloLevel= 01-03 
  |groupLevel= - 
  |zone=Greater Faydark
  |area= Ruins near Kelethin lifts 
  |monsters= Assorted critters 
  |xpModifier= 100% 
  |notes= Save [[Orc Hatchet]]s from [[Orc Pawn (Crushbone)|Orc Pawn]]s for [[Orc Hatchets | Orc Hatchets (Quest)]]
}}
</table>

Multi-Row Example

Solo Level Range Group Level Range Zone Area Monsters Exp Mod* Era Image Notes (on Class/Faction/Drops/Quests/etc.)
01-03 - Greater Faydark Ruins near Kelethin lifts Assorted critters 100% Cla Save Orc Hatchets from Orc Pawns for Orc Hatchets (Quest)
04-10 05-10 Qeynos Hills ? Rabid Wolves and assorted 100% Cla Save Diseased Wolf Pelts for Rabid Wolves (Quest); watch out for Holly Windstalker

Combining Templates for Multiple Rows

Multiple rows can be created by combining multiple templates together, like so:

{{HuntingGuideTableStart}}
{{HuntingGuideSpot
  |soloLevel= 01-03 
  |groupLevel= - 
  |zone=Greater Faydark
  |area= Ruins near Kelethin lifts 
  |monsters= Assorted critters 
  |xpModifier= 100% 
  |notes= Save [[Orc Hatchet]]s from [[Orc Pawn (Crushbone)|Orc Pawn]]s for [[Orc Hatchets | Orc Hatchets (Quest)]]
}}
{{HuntingGuideSpot
  |soloLevel= 04-10 
  |groupLevel= 05-10 
  |zone=Qeynos Hills
  |area= ? 
  |monsters= [[A Rabid Wolf | Rabid Wolves]] and assorted 
  |xpModifier= 100% 
  |notes= Save [[Diseased Wolf Pelt]]s for [[Rabid Wolves | Rabid Wolves (Quest)]]; watch out for [[Holly Windstalker]]
}}
</table>