Raised This Month: $32 Target: $400
 8% 

[L4D & L4D2] Left 4 DHooks Direct (1.145) [03-Apr-2024]


Post New Thread Reply   
 
Thread Tools Display Modes
Dragokas
Veteran Member
Join Date: Nov 2017
Location: Ukraine on fire
Old 12-03-2020 , 12:46   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #241

@Mystik Spiral,

Code:
/*
*  CDirector::ForceNextStage(CDirector *this)
*/
"ForceNextStage"
{
	"library"	"server"
	"linux"		"@_ZN9CDirector14ForceNextStageEv"
	"windows"	"\x8B\x2A\x88\x05\x00\x00\xE9\x85\x8D\x01\x00"
	/* 8B ? 88 05 00 00 E9 85 8D 01 00 */
	/* Search "ForceNextStage" call below of XRef */
}
The function is too short. It can become broken again with any update.
__________________
Expert of CMD/VBS/VB6. Malware analyst. L4D fun (Bloody Witch & FreeZone)
[My plugins] [My tools] [GitHub] [Articles] [HiJackThis+] [Donate]
Dragokas is offline
Mi.Cura
Veteran Member
Join Date: Dec 2016
Location: Brazil
Old 12-03-2020 , 17:00   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #242

Quote:
Originally Posted by Dragokas View Post
@Mystik Spiral,

Code:
/*
*  CDirector::ForceNextStage(CDirector *this)
*/
"ForceNextStage"
{
	"library"	"server"
	"linux"		"@_ZN9CDirector14ForceNextStageEv"
	"windows"	"\x8B\x2A\x88\x05\x00\x00\xE9\x85\x8D\x01\x00"
	/* 8B ? 88 05 00 00 E9 85 8D 01 00 */
	/* Search "ForceNextStage" call below of XRef */
}
The function is too short. It can become broken again with any update.

Thanks Dragokas!
__________________
Mi.Cura | Modded Servers | L4D2
https://steamcommunity.com/groups/micuramodzombie
Mi.Cura is offline
Mystik Spiral
Senior Member
Join Date: Oct 2020
Location: Orlando, FL
Old 12-03-2020 , 18:29   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #243

Quote:
Originally Posted by Dragokas View Post
@Mystik Spiral,

Code:
/*
*  CDirector::ForceNextStage(CDirector *this)
*/
"ForceNextStage"
{
	"library"	"server"
	"linux"		"@_ZN9CDirector14ForceNextStageEv"
	"windows"	"\x8B\x2A\x88\x05\x00\x00\xE9\x85\x8D\x01\x00"
	/* 8B ? 88 05 00 00 E9 85 8D 01 00 */
	/* Search "ForceNextStage" call below of XRef */
}
The function is too short. It can become broken again with any update.
Thank you Dragokas, that resolved the error.
Mystik Spiral is offline
Mystik Spiral
Senior Member
Join Date: Oct 2020
Location: Orlando, FL
Old 12-08-2020 , 13:45   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #244

Well, it did not take long for Valve to break this same function again. With the update today (08-Dec-2020), I'm getting this in the sourcemod error log (errors_20201208.log)...

Quote:
L 12/08/2020 - 13:27:08: [left4dhooks.smx] Failed to find signature: ForceNextStage
Please provide the gamedata fix, or provide information about how to fix it. Thank you in advance.
Mystik Spiral is offline
Mi.Cura
Veteran Member
Join Date: Dec 2016
Location: Brazil
Old 12-08-2020 , 15:06   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #245

same,

L 12/08/2020 - 162:14: [left4dhooks.smx] Failed to find signature: ForceNextStage
L 12/08/2020 - 162:17: [SM] Exception reported: Unable to find NextBotCreatePlayerBot<Hunter> signature in gamedata file.
__________________
Mi.Cura | Modded Servers | L4D2
https://steamcommunity.com/groups/micuramodzombie

Last edited by Mi.Cura; 12-08-2020 at 15:12.
Mi.Cura is offline
Dragokas
Veteran Member
Join Date: Nov 2017
Location: Ukraine on fire
Old 12-08-2020 , 18:03   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #246

Code:
			/*
			*  CDirector::ForceNextStage(CDirector *this)
			*/
			"ForceNextStage"
			{
				"library"	"server"
				"linux"		"@_ZN9CDirector14ForceNextStageEv"
				"windows"	"\x8B\x2A\x88\x05\x00\x00\xE9\x2A\x8D\x01\x00"
				/* 8B ? 88 05 00 00 E9 ? 8D 01 00 */
				/* Search "ForceNextStage" call below of XRef */
			}
__________________
Expert of CMD/VBS/VB6. Malware analyst. L4D fun (Bloody Witch & FreeZone)
[My plugins] [My tools] [GitHub] [Articles] [HiJackThis+] [Donate]

Last edited by Dragokas; 12-08-2020 at 18:03.
Dragokas is offline
Mystik Spiral
Senior Member
Join Date: Oct 2020
Location: Orlando, FL
Old 12-08-2020 , 19:10   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #247

Quote:
Originally Posted by Dragokas View Post
Code:
			/*
			*  CDirector::ForceNextStage(CDirector *this)
			*/
			"ForceNextStage"
			{
				"library"	"server"
				"linux"		"@_ZN9CDirector14ForceNextStageEv"
				"windows"	"\x8B\x2A\x88\x05\x00\x00\xE9\x2A\x8D\x01\x00"
				/* 8B ? 88 05 00 00 E9 ? 8D 01 00 */
				/* Search "ForceNextStage" call below of XRef */
			}
Thank you again Dragokas! That fixed the error.
Mystik Spiral is offline
nikolacar4
Junior Member
Join Date: Mar 2018
Old 12-14-2020 , 14:24   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #248

Hi,im having problems with this plugin on survival. And it seems that it breaks only on c8m5_rooftop,and only on survival. I get CSSceneEntry error "pilot" couldnt be found,and then the server crashes after a few seconds. I then tried to disable the left4dhooks plugin and it fixed the problem. Anyone have an idea on how to fix this?
Thanks
nikolacar4 is offline
Dragokas
Veteran Member
Join Date: Nov 2017
Location: Ukraine on fire
Old 12-14-2020 , 14:46   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #249

If you have crash report and error logs, maybe.
__________________
Expert of CMD/VBS/VB6. Malware analyst. L4D fun (Bloody Witch & FreeZone)
[My plugins] [My tools] [GitHub] [Articles] [HiJackThis+] [Donate]
Dragokas is offline
nikolacar4
Junior Member
Join Date: Mar 2018
Old 12-14-2020 , 15:11   Re: [L4D & L4D2] Left 4 DHooks Direct (1.29) [10-Oct-2020]
Reply With Quote #250

Quote:
Originally Posted by Dragokas View Post
If you have crash report and error logs, maybe.
Exact Error: CSceneEntity pilot_radio_pickup_lcs1 unable to find actor named "pilot"
CSceneEntity :"Biker" unable to find gesture "namvet_gesture_head_nod"
Actually nothing is written in the error logs,since when the error happens i just lose connection to the server,and the command prompt of the server is just stuck on the "pilot" error. I've let it sit for 10 minutes,and it doesnt want to go further.
nikolacar4 is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 16:25.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode