Ok tested and working:
modules/TOWERS_MODULE/towers_messages.php:-
Replace line 32:
if(eregi("^(.+) \((.+), (clan|neutral|omni)\) attacked (.+) \((clan|neutral|omni)\) in (.+) at ([0-9]+), ([0-9]+).$", $message, $arr)) {
with
if (preg_match("/The (clan|neutral|omni) organization (.+) just entered a state of war! (.+) attacked the (clan|neutral|omni) organization (.+)'s tower in (.+) at location \(([0-9]+), ([0-9]+)\)/i", $message, $arr)) {
and core/aochat.php:-
Replace line 1094:
"{ATT_NAME} ({ATT_ORG}, {ATT_SIDE}) attacked {DEF_ORG} ({DEF_SIDE}) in {ZONE} at {X}, {Y}.",
with
"The {ATT_SIDE} organization {ATT_ORG} just entered a state of war! {ATT_NAME} attacked the {DEF_SIDE} organization {DEF_ORG}'s tower in {ZONE} at location ({X}, {Y}).",