[Improvement] Filtered Messages Extension (#4435)

* [Improvment] Filtered Messages Extension

Added:
ItemSpeech 25
Strikethrough 26
Stuns 27
BardSongsOnPets 28

I wired up Strikethrough and Stuns as they already had message entries.

ItemSpeech and BardSongsOnPets do not appear to be currently used in the source.

Note: There are still 5 unknown Filters in RoF2 that need to be investigated:

Achievments
Fellowships
Mercenary Messages
PVP Messages
Spam

* Spelling Error

* Missed some stun calls
This commit is contained in:
Fryguy
2024-07-31 18:28:45 -04:00
committed by GitHub
parent 421767e1e5
commit 2feb05be18
5 changed files with 86 additions and 33 deletions
+4 -4
View File
@@ -7256,10 +7256,10 @@ luabind::scope lua_register_filters() {
luabind::value("FocusEffects", FilterFocusEffects),
luabind::value("PetSpells", FilterPetSpells),
luabind::value("HealOverTime", FilterHealOverTime),
luabind::value("Unknown25", FilterUnknown25),
luabind::value("Unknown26", FilterUnknown26),
luabind::value("Unknown27", FilterUnknown27),
luabind::value("Unknown28", FilterUnknown28)
luabind::value("ItemSpeech", FilterItemSpeech),
luabind::value("Strikethrough", FilterStrikethrough),
luabind::value("Stuns", FilterStuns),
luabind::value("BardSongsOnPets", FilterBardSongsOnPets)
)];
}