View Single Post
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 04-14-2022 , 09:35   Re: Remove Map position text
Reply With Quote #2

In CSGO game, simple way you can disable nav place names from every level (from server):
- Make backup copy of file ...csgo/navplace.db
- Edit navplace.db with text editor, add //double slash begin of each line
...csgo/navplace.db


You get errors in console however, but ignore those.
Code:
Warning: NavMesh place BombsiteB is undefined?
Warning: NavMesh place Catwalk is undefined?
Warning: NavMesh place TopofMid is undefined?
Warning: NavMesh place ExtendedA is undefined?
Warning: NavMesh place TRamp is undefined?
Warning: NavMesh place BombsiteA is undefined?
Warning: NavMesh place TunnelStairs is undefined?
Warning: NavMesh place TSpawn is undefined?
Warning: NavMesh place OutsideTunnel is undefined?
Warning: NavMesh place UnderA is undefined?
Warning: NavMesh place Short is undefined?
Warning: NavMesh place UpperTunnel is undefined?
Warning: NavMesh place CTSpawn is undefined?
Warning: NavMesh place LongA is undefined?
Warning: NavMesh place LongDoors is undefined?
Warning: NavMesh place OutsideLong is undefined?
Warning: NavMesh place LowerTunnel is undefined?
Warning: NavMesh place Hole is undefined?
Warning: NavMesh place ShortStairs is undefined?
Warning: NavMesh place Side is undefined?
Warning: NavMesh place MidDoors is undefined?
Warning: NavMesh place BDoors is undefined?
Warning: NavMesh place Ramp is undefined?
Warning: NavMesh place ARamp is undefined?
Warning: NavMesh place Pit is undefined?
Warning: NavMesh place Middle is undefined?

But, when you update your server, file get properly fixed back to original again.


Another way is using plugin, to block game call "LoadPlaceDatabase();"
- Need find signature and use DHooks.
*edit
I found these
Code:
CSGO void CNavMesh::LoadPlaceDatabase( void )
Windows - Signature for sub_105FA0F0:
55 8B EC 83 E4 F8 81 EC CC 00 00 00 83 64 24 34 FC 
\x55\x8B\xEC\x83\xE4\xF8\x81\xEC\xCC\x00\x00\x00\x83\x64\x24\x34\xFC

Linux - Signature for sub_914660:
55 89 E5 57 56 8D 75 98 
\x55\x89\xE5\x57\x56\x8D\x75\x98
__________________
Do not Private Message @me

Last edited by Bacardi; 04-14-2022 at 10:15.
Bacardi is offline