richard1017
Chieftain
- Joined
- Aug 5, 2015
- Messages
- 16
For those who want to un-bundle notifications, this method works well for me.
In file UI_bc1\NotificationPanel\NotificationPanel.lua, notification types are defined as
The "B"s and "special" at the end of some lines indicate bundle. Delete these "B"s (and the "special" for NOTIFICATION_MINOR_QUEST) un-bundle the corresponding notification.
BTW, this method doesn't work with the CBP. I suppose you may need to change the notification lua file in the CBP mod.
Enjoy
In file UI_bc1\NotificationPanel\NotificationPanel.lua, notification types are defined as
Code:
-------------------------------------------------
-- List of notification types we can handle
-------------------------------------------------
local g_notificationNames = {}
local g_notificationBundled = {}
for k, v, w in ([[
NOTIFICATION_POLICY SocialPolicy
NOTIFICATION_MET_MINOR CityState B
NOTIFICATION_MINOR CityState B
NOTIFICATION_MINOR_QUEST CityState special
NOTIFICATION_ENEMY_IN_TERRITORY EnemyInTerritory B
NOTIFICATION_REBELS EnemyInTerritory B
NOTIFICATION_CITY_RANGE_ATTACK CityCanBombard B
NOTIFICATION_BARBARIAN Barbarian B
NOTIFICATION_GOODY AncientRuins B
....
The "B"s and "special" at the end of some lines indicate bundle. Delete these "B"s (and the "special" for NOTIFICATION_MINOR_QUEST) un-bundle the corresponding notification.
BTW, this method doesn't work with the CBP. I suppose you may need to change the notification lua file in the CBP mod.
Enjoy