Description
Very basic SoundFX and Error Text suppressor. The addon has two main functions:
- Temporarily disables SoundFX in macros (no more "Woosh!" sounds)
- Permanently suppresses Error Text from appearing on the screen.
The addon offers no GUI, but everything can be done with slash commands. (See below)
Usage
SoundFX Module
- Disable SoundFX:
Same as '/console Sound_EnableSFX 0'. (Use at the beginning of a macro)
/sfx0
- Enable SoundFX:
Same as '/console Sound_EnableSFX 1'. (Use at the end of a macro)
/sfx1
#showtooltip
/sfx0
/castsequence Spell1, Spell2, Spell3, Spell4
/sfx1
Important Note
- Error Speech still has to be turned off in the Options menu.
- This addon only takes care of the SoundFX (i.e. Woosh! sound when a spell is not ready)
Error Text Module
This module basically consists of a blacklist containing strings. When an error event occurs, the addon compares that string with the blacklist and if a match is found, returns without displaying the error text on the screen. You can list, add, remove strings manually using slash commands, as shown below.
- Show content of the blacklist. Also required to get the String ID of each string, which is needed for deleting them using /ste del command.
/ste list
/ste add [string] or [constant]
- Delete a string from the blacklist.
/ste del [string_id]
- Toggle Debug Mode. This will show all errors being blocked and not blocked, as well as some other debuging information. Use for testing only, or if you really can't get that string down.
/ste debug