7 lines
647 B
Lua
7 lines
647 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param count number
|
|
---@param ignoreFilter boolean
|
|
---@return 1nil hasEntry
|
|
---Advances the "cursor" position used by other CombatLog functions. Information about the entry at the "cursor" position can be retrieved with CombatLogGetCurrentEntry(). That function then advances the cursor to the next entry, so calling it repeatedly returns all information in the combat log -- this function can be used to "rewind" the combat log to retrieve information about earlier events or skip entries without retrieving their information.
|
|
function CombatLogAdvanceEntry(count, ignoreFilter) end |