DB/EmotesText: Difference between revisions

From wowdev
Jump to navigation Jump to search
Line 6: Line 6:
   uint32_t m_emoteText[16];
   uint32_t m_emoteText[16];
  };
  };
==Structure==
==3.3.5.12340==
 
If a female emote text in #12, #13 or #16 is 0, appropriate male one is used instead. Unknown columns should be tested if they actually work and do something.
'''Column Field Type Notes'''
{| style="background:#FCFCFC; color:black"
1 ID         Integer  
|-
  2 sRefCon String
! width="50" | Field
3 iRefID_[[Emotes.dbc|Emotes]] Integer animation to perform when doing emote
! width="170" | Name
4 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises his fist in anger at %s. -- displayed to others, with target, if you are male.
! width="60" | Type
5 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises his fist in anger at you. -- displayed to target, if you are male.
! width="500" | Description
6 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer You raise your fist in anger at %s. -- displayed to you, some target.
! width="250" | Example
7 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|- style="background:#E0E0E0;"
8 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises his fist in anger. -- displayed to others, without target, if you are male.
| 1 || ID || Integer || Unique row ID. ||
9 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|-
10 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer You raise your fist in anger. -- displayed to you, no target.
| 2 || sRefCon || String || /String which executes this emote. ||
11 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|- style="background:#E0E0E0;"
12 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises her fist in anger at %s. -- displayed to others, with target, if you are female. If 0, #4 is used.
| 3 || iRefID_[[Emotes.dbc|Emotes]] || Integer || Animation to be played. ||
13 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises her fist in anger at you. -- displayed to target, if you are female. If 0, #5 is used.
|-
14 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
| 4 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Male, target, displayed to others. || %s raises his fist in anger at %s.
15 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|- style="background:#E0E0E0;"
16 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer %s raises her fist in anger. -- displayed to others, without target, if you are female. If 0, #8 is used.
| 5 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Male, target, displayed to target. || %s raises his fist in anger at you.
17 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|-  
18 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
| 6 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unisex, target, displayed to sender. || You raise your fist in anger at %s.
19 iRefID_[[EmotesTextData.dbc|EmotesTextData]] Integer         ? - zero
|- style="background:#E0E0E0;"
| 7 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|-  
| 8 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Male, no target, displayed to others. || %s raises his fist in anger.
|- style="background:#E0E0E0;"
| 9 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|-  
| 10 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unisex, no target, displayed to sender.  || You raise your fist in anger.
|- style="background:#E0E0E0;"
| 11 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|-  
| 12 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Female, target, displayed to others. || %s raises her fist in anger at %s.
|- style="background:#E0E0E0;"
| 13 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Female, target, displayed to target. || %s raises her fist in anger at you.
|-  
| 14 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|- style="background:#E0E0E0;"
| 15 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|-  
| 16 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Female, no target, displayed to others. || %s raises her fist in anger.
|- style="background:#E0E0E0;"
| 17 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|-  
| 18 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|- style="background:#E0E0E0;"
| 19 || iRefID_[[EmotesTextData.dbc|EmotesTextData]] || Integer || Unknown ||
|}


==6.0.1.18179==
==6.0.1.18179==

Revision as of 20:18, 30 November 2016

0.5.3.3368

struct EmotesTextRec {
  uint32_t m_ID;
  stringref m_name;
  uint32_t m_emoteID;
  uint32_t m_emoteText[16];
};

3.3.5.12340

If a female emote text in #12, #13 or #16 is 0, appropriate male one is used instead. Unknown columns should be tested if they actually work and do something.

Field Name Type Description Example
1 ID Integer Unique row ID.
2 sRefCon String /String which executes this emote.
3 iRefID_Emotes Integer Animation to be played.
4 iRefID_EmotesTextData Integer Male, target, displayed to others. %s raises his fist in anger at %s.
5 iRefID_EmotesTextData Integer Male, target, displayed to target. %s raises his fist in anger at you.
6 iRefID_EmotesTextData Integer Unisex, target, displayed to sender. You raise your fist in anger at %s.
7 iRefID_EmotesTextData Integer Unknown
8 iRefID_EmotesTextData Integer Male, no target, displayed to others. %s raises his fist in anger.
9 iRefID_EmotesTextData Integer Unknown
10 iRefID_EmotesTextData Integer Unisex, no target, displayed to sender. You raise your fist in anger.
11 iRefID_EmotesTextData Integer Unknown
12 iRefID_EmotesTextData Integer Female, target, displayed to others. %s raises her fist in anger at %s.
13 iRefID_EmotesTextData Integer Female, target, displayed to target. %s raises her fist in anger at you.
14 iRefID_EmotesTextData Integer Unknown
15 iRefID_EmotesTextData Integer Unknown
16 iRefID_EmotesTextData Integer Female, no target, displayed to others. %s raises her fist in anger.
17 iRefID_EmotesTextData Integer Unknown
18 iRefID_EmotesTextData Integer Unknown
19 iRefID_EmotesTextData Integer Unknown

6.0.1.18179

struct EmotesTextRec {
  uint32_t m_ID;
  stringref m_name;
  uint32_t m_emoteID;
  uint32_t m_emoteText[16];
};