Verified:

allbymyself87 Game profile

Member
944

Jun 9th 2025, 3:19:06

When I login to my Alliance country, I can see news like bonus points and gained 20 land normally.

However, if I proceed to login my country in other servers like Coop and Team after that, those news wouldn't show.
I have to click on See All News link in Main Menu to see those news.

So, somehow bonus points and gained 20 land news only showed once on the 1st server that you login to.
They wouldn't show for subsequent servers that you login to.

Not sure this is a new changes or a bug.
All by myself
Don't wanna be
All by myself anymore

Celphi Game profile

Member
EE Patron
6454

Jun 9th 2025, 10:08:56

Likely bc the flag has_seen is for all servers and it doesn’t track individual servers.

This will fix it.

<?php

$servers = ['alliance', 'team', 'primary', 'ffa', 'express'];
$seen_flag = 0b000000;

function hasSeen($seen_flag, $server_index) {
return ($seen_flag & (1 << $server_index)) !== 0;
}

function markSeen($seen_flag, $server_index) {
return $seen_flag | (1 << $server_index);
}

$current_server = 'team';
$server_index = array_search($current_server, $servers);

if (!hasSeen($seen_flag, $server_index)) {
echo "Showing news for $current_server...\n";
$seen_flag = markSeen($seen_flag, $server_index);
} else {
echo "News already shown for $current_server.\n";
}

echo "Seen bitmask: " . str_pad(decbin($seen_flag), 6, '0', STR_PAD_LEFT) . "\n";



This uses xor to track which servers have been seen.
Resistance is futile. You will be assimilated.

slip Game profile

Member
358

Jun 10th 2025, 0:27:09

I also have this issue. I only play the Cooperation server.

edit: This is untrue. I have an Alpha Cooperation country that does show the bonus's when I login.

Edited By: slip on Jun 10th 2025, 5:56:01
See Original Post

major Game profile

Member
1139

Jun 11th 2025, 0:46:43

Not showing on Co-op for me either.

slip Game profile

Member
358

Jun 13th 2025, 3:31:18

I have not run into this issue for two days.