DB/Lock: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 16: Line 16:
Retrieved from "http://www.sourcepeek.com/wiki/Lock.dbc"
Retrieved from "http://www.sourcepeek.com/wiki/Lock.dbc"


==6.0.1.18179==
struct LockRec {
  uint32_t m_ID;
  uint32_t m_Type[8];
  uint32_t m_Index[8];
  uint32_t m_Skill[8];
  uint32_t m_Action[8];
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]

Revision as of 21:00, 2 November 2014

Header Info

Records...................298
Fields.....................33
Record Size...............132
String Block Size...........1

Structure

Column	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	Type[8] 		Integer 	If this is 1, then the next lock_properties is an item ID, if it's 2, then it's an iRef to LockType.dbc 
10 	Lock_Properties[8] 	Integer 	If the corresponding Type field is 2 then this is an iRefID_LockType.dbc. 
						If the corresponding Type field value is 1 then this is the itemID of the key or item that 'unlocks' this item. 
18 	Required_Skill[8] 	Integer 	Required skill needed for Lock_Properties
26 	Action[8] 		Integer 	Something to do with direction / opening / closing

Retrieved from "http://www.sourcepeek.com/wiki/Lock.dbc"

6.0.1.18179

struct LockRec {
  uint32_t m_ID;
  uint32_t m_Type[8];
  uint32_t m_Index[8];
  uint32_t m_Skill[8];
  uint32_t m_Action[8];
};