• Home
  • Index
  • Search
  • Download
  • Server Rules
  • House Roleplay Laws
  • Player Utilities
  • Player Help
  • Forum Utilities
  • Returning Player?
  • Toggle Sidebar
Interactive Nav-Map
Tutorials
New Wiki
ID reference
Restart reference
Players Online
Player Activity
Faction Activity
Player Base Status
Discord Help Channel
DarkStat
Server public configs
POB Administration
Missing Powerplant
Stuck in Connecticut
Account Banned
Lost Ship/Account
POB Restoration
Disconnected
Member List
Forum Stats
Show Team
View New Posts
View Today's Posts
Calendar
Help
Archive Mode




Hi there Guest,  
Existing user?   Sign in    Create account
Login
Username:
Password: Lost Password?
 
  Discovery Gaming Community Discovery Development Discovery Mod General Discussion Discovery Mod Bug Reports Fixed or invalid
« Previous 1 2 3 4 5 … 87 Next »
[Systems] Taus show incorrect region when cloaked.

Server Time (24h)

Players Online

Active Events - Scoreboard
Gallic Royal Navy Forces - 83 / 10,000
Gallic Royal Navy Forces - 107 / 10,000
Liberty-Bretonia Combined Fleet - 33 / 10,000
Liberty-Bretonia Combined Fleet - 38 / 10,000

Latest activity

[Systems] Taus show incorrect region when cloaked.
Offline Leo
08-16-2025, 11:44 PM,
#1
Pathfinder
Posts: 2,786
Threads: 399
Joined: Dec 2007

Type: Systems
Bug: When cloaked, shows Omega Border Worlds

Reproduction Steps:
  • Cloak in Tau-23
  • Look at Player List API on the forums
  • Question if you have a JD capable of jumping from Tau-23 to Omegas.

Additional Information: link

Do not repeat this template for unrelated bugs, each needs their own thread.

[Image: AlGbG5Y.png]
You fear oblivion. Yet you forget. The universe remembers every atom of your being. Even dust hums your name in the dark.
Offline Eternal.Journey
08-17-2025, 12:55 AM,
#2
Hic Sunt Dracones
Posts: 341
Threads: 51
Joined: Jan 2024

To add to the above - It is also something I noticed today when I was cloaked in Alaska (Do Not Ask). Whenever cloaked with a Nomad Hybrid Cloak today (The ship I was using is Wilde.Walkuere, in case it's related to that) and this bug I've noticed before, too. Forgot about until now, and tested it again. Sure enough, Cloaked in "Liberty" region listed me in "Liberty", "Omega Border Worlds" in the Player List API.

[Image: LBD7JlK.png]
Offline Alex.
08-25-2025, 01:18 PM,
#3
Developer
Posts: 3,789
Threads: 144
Joined: Aug 2009
Staff roles: Server Manager
Coding Dev
Moderator

I believe the API used on the forums shows the text for the system nickname written to player_cloak_status.json by the game server. So this is probably some FLHook config somewhere.

FLHook suggestions
All other dev queries
Please only PM me through the forums for things that need to be private like anticheat etc.
[Image: dI8iG0a.png]
Offline Alex.
08-25-2025, 01:24 PM,
#4
Developer
Posts: 3,789
Threads: 144
Joined: Aug 2009
Staff roles: Server Manager
Coding Dev
Moderator

Yeah it's the cloak.cfg [PlayerListCloak] "mask" items. Tau-23 is bw08 which is configured to map to EW63 which is "Taus" though...

FLHook suggestions
All other dev queries
Please only PM me through the forums for things that need to be private like anticheat etc.
[Image: dI8iG0a.png]
Offline Alex.
08-25-2025, 03:10 PM,
#5
Developer
Posts: 3,789
Threads: 144
Joined: Aug 2009
Staff roles: Server Manager
Coding Dev
Moderator

Cloaked in T-23, in-game player list showed "Taus", https://discoverygc.com/forums/api_inter...ers_online shows a system of "Taus" but with a region of "Omega Border Worlds"

FLHook suggestions
All other dev queries
Please only PM me through the forums for things that need to be private like anticheat etc.
[Image: dI8iG0a.png]
Offline Alex.
08-25-2025, 03:26 PM,
#6
Developer
Posts: 3,789
Threads: 144
Joined: Aug 2009
Staff roles: Server Manager
Coding Dev
Moderator

Quote:MariaDB [dgcserver]> select * from regions;
| id | name |
+----+----------------------+
| 1 | Unknown |
| 2 | Liberty Space |
| 3 | Bretonia Space |
| 4 | Kusari Space |
| 5 | Rheinland Space |
| 6 | Gallia Space |
| 7 | Tau Border Worlds |
| 8 | Omega Border Worlds |
| 9 | Sigma Border Worlds |
| 10 | Gallic Border Worlds |
| 11 | Independent Worlds |
| 12 | North Edge Worlds |
| 13 | South Edge Worlds |
| 14 | Nomad Worlds |
| 15 | Uncharted Space |

| id | region_id | nickname | name | id | name |
+-----+-----------+------------+-----------------------------+----+----------------------+
| 10 | 1 | BR10 | New London Atmosphere | 1 | Unknown |
| 30 | 1 | BW14 | Bretonia | 1 | Unknown |
| 60 | 1 | EW85 | Omegas | 1 | Unknown |
| 154 | 1 | CA01 | Rheinland | 1 | Unknown |
| 111 | 4 | KU17 | Sigmas | 4 | Kusari Space |
| 142 | 5 | RH12 | Omicrons | 5 | Rheinland Space |
| 27 | 8 | BW11 | Liberty | 8 | Omega Border Worlds |
| 56 | 8 | EW19 | Gallia | 8 | Omega Border Worlds |
| 59 | 8 | EW63 | Taus | 8 | Omega Border Worlds |
| 43 | 15 | EW05 | Kusari | 15 | Uncharted Space |
| 57 | 15 | EW37 | Ind. Worlds | 15 | Uncharted Space |

So ran this to fix:
Quote:update systems set region_id = 11 where name = 'Ind. Worlds';
update systems set region_id = 4 where name = 'Kusari';
update systems set region_id = 7 where name = 'Taus';
update systems set region_id = 6 where name = 'Gallia';
update systems set region_id = 2 where name = 'Liberty';
update systems set region_id = 12 where name = 'Omicrons';
update systems set region_id = 9 where name = 'Sigmas';
update systems set region_id = 5 where name = 'Rheinland';
update systems set region_id = 8 where name = 'Omegas';
update systems set region_id = 3 where name = 'Bretonia';
update systems set region_id = 3 where name = 'New London Atmosphere';

FLHook suggestions
All other dev queries
Please only PM me through the forums for things that need to be private like anticheat etc.
[Image: dI8iG0a.png]


  • View a Printable Version
  • Subscribe to this thread


Users browsing this thread:
1 Guest(s)



Powered By MyBB, © 2002-2025 MyBB Group. Theme © 2014 iAndrew & DiscoveryGC
  • Contact Us
  •  Lite mode
Linear Mode
Threaded Mode