WoW:API LoggingChat: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(bit of formatting and grammar) |
||
Line 12: | Line 12: | ||
=== Arguments === | === Arguments === | ||
<!-- List each argument, together with its type --> | <!-- List each argument, together with its type --> | ||
:;newState : Boolean - toggles chat logging | |||
=== Returns === | === Returns === | ||
<!-- List each return value, together with its type --> | <!-- List each return value, together with its type --> | ||
:;isLogging : Boolean - current state of logging | |||
Line 24: | Line 23: | ||
<!-- If it helps, include an example here, though it's not required if the usage is self-explanatory --> | <!-- If it helps, include an example here, though it's not required if the usage is self-explanatory --> | ||
if (LoggingChat()) then | if (LoggingChat()) then | ||
DEFAULT_CHAT_FRAME:AddMessage(" | DEFAULT_CHAT_FRAME:AddMessage("Chat is already being logged"; | ||
else | else | ||
DEFAULT_CHAT_FRAME:AddMessage(" | DEFAULT_CHAT_FRAME:AddMessage("Chat is not being logged - starting it!"); | ||
LoggingChat(1); | LoggingChat(1); | ||
DEFAULT_CHAT_FRAME:AddMessage("Chat | DEFAULT_CHAT_FRAME:AddMessage("Chat is now being logged to Logs\\WOWChatLog.txt"); | ||
end | end |
Revision as of 03:22, 10 August 2006
← WoW API < LoggingChat
Toggles the chat logging and returns the current state.
isLogging = LoggingChat([newState])
Parameters
Arguments
- newState
- Boolean - toggles chat logging
Returns
- isLogging
- Boolean - current state of logging
Example
if (LoggingChat()) then DEFAULT_CHAT_FRAME:AddMessage("Chat is already being logged"; else DEFAULT_CHAT_FRAME:AddMessage("Chat is not being logged - starting it!"); LoggingChat(1); DEFAULT_CHAT_FRAME:AddMessage("Chat is now being logged to Logs\\WOWChatLog.txt"); end