WoW:API GetTitleText: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(upgraded deprecated template) |
||
Line 1: | Line 1: | ||
{{wowapi}} | |||
--[[User:Mesoonic|Mesoonic]] 05:51, 24 Mar 2005 (EST) | --[[User:Mesoonic|Mesoonic]] 05:51, 24 Mar 2005 (EST) | ||
;:'''Description''' | ;:'''Description''' | ||
Line 16: | Line 17: | ||
;:DEFAULT_CHAT_FRAME:AddMessage(GetTitleText()) | ;:DEFAULT_CHAT_FRAME:AddMessage(GetTitleText()) | ||
;end | ;end | ||
Revision as of 17:26, 6 January 2007
← WoW API < GetTitleText
--Mesoonic 05:51, 24 Mar 2005 (EST)
- Description
- When you select an NPC who offers a quest, you use this function
- to obtain the quest name even before it is accepted
- Example
- function MesoonicUI_OnLoad()
- this
- RegisterEvent("QUEST_DETAIL")
- end
- function MesoonicUI_OnEvent()
- if (event == "QUEST_DETAIL") then
- MesoonicUI_DisplayQuestName()
- end
- end
- function MesoonicUI_DisplayQuestName()
- DEFAULT_CHAT_FRAME
- AddMessage(GetTitleText())
- end