Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(added color theory)
 
(Created page with "{{Stub/NPC}} {{Screenshot||Silverpine Forest}} The '''Horde Hauler''' serves as a means of transportation for lower level characters within Silverpine Forest. The wagon is p...")
 
Line 1: Line 1:
{{wowapitype}}
+
{{Stub/NPC}}
  +
{{Screenshot||Silverpine Forest}}
   
  +
The '''Horde Hauler''' serves as a means of transportation for lower level characters within [[Silverpine Forest]]. The wagon is pulled by a [[Subdued Forest Ettin]], and is driven by a [[Horde Engineer]]. It makes periodic stops along the main road at [[Forsaken High Command]], the crossroads in front of [[The Sepulcher]], and [[The Forsaken Front]]. It only runs north-to-south.
== itemLink API Type (String) ==
 
   
  +
{{Seealso|Horde Coffin Hauler}}
itemLinks are returned by several functions, e.g. [[API GetAuctionItemLink|GetAuctionItemLink]](), [[API GetContainerItemLink||GetContainerItemLink]](), [[API GetInventoryItemLink|GetInventoryItemLink]](), etc.
 
   
  +
==External links==
In essence, they are [[itemString]]s with additional formatting to make in-game text controls display them as clickable hyperlinks.
 
  +
<!-- Read http://www.wowpedia.org/Wowpedia:External_links before posting your links here.
 
  +
Links that do not conform to the rules will be DELETED.
|cff9d9d9d|Hitem:7073:0:0:0|h[Broken Fang]|h|r
 
  +
Repeat violations may result in a BAN.
 
  +
Have a nice day. :) -->
Broken up in its components:
 
  +
{{elinks-npc|44731}}
 
* <tt>"'''|cff9d9d9d'''"</tt> &ndash; Colorizes the link with a medium grey color (Broken Fang is vendortrash)
 
** The first two characters after pipe-c may be the alpha level, where <code>ff</code> is fully opaque.
 
** The next three sets of two characters represent the red, green, and blue levels, just like HTML.
 
* <tt>"'''|H'''"</tt> &ndash; "Hyperlink link data starts here"
 
* <tt>"'''item:7073:0:0:0'''"</tt> &ndash; Read more at [[itemString]].
 
* <tt>"'''|h'''"</tt> &ndash; "End of link, text follows"
 
* <tt>"'''[Broken Fang]'''"</tt> &ndash; The actual text displayed
 
* <tt>"'''|h'''"</tt> &ndash; "End of hyperlink"
 
* <tt>"'''|r'''"</tt> &ndash; Restores color to normal
 
 
== Printing links for debug ==
 
 
Printing out the contents of an item link is perhaps not so obvious; displaying it anywhere in-game will just show you a clickable link. Reformat it slightly to ruin the [[UI Escape Sequences|escape sequences]] and you'll see what it really looks like:
 
 
link = [[API GetContainerItemLink|GetContainerItemLink]](0, 1);
 
printable = [[API gsub|gsub]](link, "\124", "\124\124");
 
ChatFrame1:AddMessage("Here's what it really looks like: \"" .. printable .. "\"");
 
 
"124" is the ascii value of the "|" character. If you are writing this in a regular .lua file, feel free to go ahead and just use "|" and "||". However, if you're typing it in an in-game editor, it's better to use the ascii code escape to avoid problems.
 

Revision as of 02:42, 4 March 2011


The Horde Hauler serves as a means of transportation for lower level characters within Silverpine Forest. The wagon is pulled by a Subdued Forest Ettin, and is driven by a Horde Engineer. It makes periodic stops along the main road at Forsaken High Command, the crossroads in front of The Sepulcher, and The Forsaken Front. It only runs north-to-south.

See also: Horde Coffin Hauler

External links