• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

CMapLoaderHelper::Init Error

Joined
Jun 11, 2008
Messages
588
Reaction score
45
I tried using GSL to add my own custom made maps, however the client has trouble loading the bsp.

Code:
--System Error--
Host_Error: CMapLoadHelper::Init, unable to open maps/Beach.bsp

In the Source SDK, this is thrown from the following code:
Code:
if ( s_MapFileHandle == FILESYSTEM_INVALID_HANDLE )
	{
		Host_Error( "CMapLoadHelper::Init, unable to open %s\n", szNameOnDisk );
		return;
}

I've tried putting the bsp (Beach.bsp) in all the following directories with no luck:
Code:
/data/maps
/data/maps/Beach
/maps
/maps/Beach

Sometimes it alternates the previous error with this following one instead:
Code:
CModelLoader::Map_IsValid:  No such map 'Beach'

In the Source SDK, this is thrown from the following code:
Code:
if ( mapfile != FILESYSTEM_INVALID_HANDLE )
	{
		...
	else
	{
		Warning( "CModelLoader::Map_IsValid:  No such map '%s'\n", mapname );
}

I've also tried packing my custom bsp into a HFS file with other maps, but that didn't seem to have any effect.

If anyone familiar with source engine can point me in the right direction, that'd be greatly appreciated.



On an unrelated note, does anyone know how to bypass the binary sync check?
VUPuX1K - CMapLoaderHelper::Init Error - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Aug 29, 2018
Messages
32
Reaction score
5
On an unrelated note, does anyone know how to bypass the binary sync check?

I had that same error before...

What happened was that I ran the game with Update ON and
it updated the game guard files. Reinstalling the game fixed it...

Now on how to bypass the new files, I've no idea...
 
Upvote 0
Joined
Jun 11, 2008
Messages
588
Reaction score
45
I had that same error before...

What happened was that I ran the game with Update ON and
it updated the game guard files. Reinstalling the game fixed it...

Now on how to bypass the new files, I've no idea...

I've always ran with -noupdate though, but I'll give it a shot and do a fresh reinstall.
Thanks!

Edit: It didn't work =(
 
Last edited:
Upvote 0
Back
Top