DB/TaxiNodes: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Added Category WotLK)
(18 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Contains name and location data for flight nodes. This information is strictly used on the flight point selection map that is shown when clicking on a flight master.  
Contains name, location and used mount data for flight nodes. This information is strictly used on the flight point selection map that is shown when clicking on a flight master.  
 
==Header Info ==
Records...................164
Fields.....................24
Record Size................64
String Block Size........4711


==0.5.3.3368==
struct TaxiNodesRec
{
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_X;
  float m_Y;
  float m_Z;
  {{Template:Type|langstringref}} m_Name_lang;
};
==1.12.1.5875==
struct TaxiNodesRec {
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_pos[3];
  {{Template:Type|langstringref}} m_Name_lang;
  uint32_t m_MountCreatureID[2];
};
==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 iRefID_[[Map.dbc|Map]] Integer Map on which the flight point node is located  
  2 iRefID_[[Map.dbc|Map]] Integer Map on which the flight point node is located  
  3 x Float x Location on flightpoint selection map  
  3 x Float x Location on flightpoint selection map  
  4 y Float y Location on flightpoint selection map
  4 y Float y Location on flightpoint selection map
  5 z Float z Location on flightpoint selection map
  5 z Float z Location on flightpoint selection map
  6-22 sRefName String + [[Loc]] Only seen on flightpoint map.  
  6-22 sRefName [[Loc]] Only seen on flightpoint map.  
  23-24 MountCreatureID[2] Integer H, A: Display ID
  23-24 MountCreatureID[2] Integer A, H: creature entry from creature_template
 
Retrieved from "http://www.sourcepeek.com/wiki/TaxiNodes.dbc"


==6.0.1.18179==
struct TaxiNodesRec {
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_pos[3];
  {{Template:Type|langstringref}} m_Name_lang;
  uint32_t m_MountCreatureID[2];
  uint32_t m_conditionID;
  uint32_t m_Flags;
  float m_MapOffset[2];
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 16:25, 2 October 2017

Contains name, location and used mount data for flight nodes. This information is strictly used on the flight point selection map that is shown when clicking on a flight master.

0.5.3.3368

struct TaxiNodesRec
{
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_X;
  float m_Y;
  float m_Z;
  langstringref m_Name_lang;
};

1.12.1.5875

struct TaxiNodesRec {
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_pos[3];
  langstringref m_Name_lang;
  uint32_t m_MountCreatureID[2];
};

Structure

Column	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	iRefID_Map 		Integer 	Map on which the flight point node is located 
3 	x 			Float 		x Location on flightpoint selection map 
4 	y 			Float 		y Location on flightpoint selection map
5 	z 			Float 		z Location on flightpoint selection map
6-22 	sRefName 		Loc		Only seen on flightpoint map. 
23-24 	MountCreatureID[2] 	Integer 	A, H: creature entry from creature_template

6.0.1.18179

struct TaxiNodesRec {
  uint32_t m_ID;
  uint32_t m_ContinentID;
  float m_pos[3];
  langstringref m_Name_lang;
  uint32_t m_MountCreatureID[2];
  uint32_t m_conditionID;
  uint32_t m_Flags;
  float m_MapOffset[2];
};