Raised This Month: $51 Target: $400
 12% 

[EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown


Post New Thread Reply   
 
Thread Tools Display Modes
spumer
Senior Member
Join Date: Aug 2011
Old 07-08-2013 , 03:51   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #481

I hope you fix the linux version bug:
https://forums.alliedmods.net/showpo...&postcount=465
And as i can see version from https://forums.alliedmods.net/showpo...&postcount=453 without this changes.
__________________

Last edited by spumer; 07-08-2013 at 03:52.
spumer is offline
steven124
Member
Join Date: Nov 2009
Location: Siberia
Old 07-08-2013 , 04:10   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #482

mb fix to windows?
steven124 is offline
OtterNas3
Senior Member
Join Date: Apr 2009
Old 07-08-2013 , 04:11   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #483

Quote:
Originally Posted by Martijn79 View Post
Sigs for L4D1 are unchanged, I'm still using downtown on L4D1 without issues.

It's just that there never was a Signature for that in the L4D1 version?
OtterNas3 is offline
dcx2
Senior Member
Join Date: Sep 2011
Old 07-08-2013 , 05:35   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #484

Not sure where the best place to ask this is, but...I would like to add a new forward to Left4Downtown2. I would like to be able to return Plugin_Handled to prevent bots from attempting to use healing items. I've found the signature that I want in both Windows and Linux, but unfortunately I have no idea what to do from here. Can someone teach this man how to fish? Or point me toward some resource on how to modify an extension to support another detour?

PHP Code:
            /* Called by bots to determine whether they should heal, and who
               Look for string "Trying to heal a friend" */
            
"SurvivorBot_UseHealingItems"
            
{
                
"library"    "server"
                "linux"    "@_ZN11SurvivorBot15UseHealingItemsEP6ActionIS_E"
                "windows"  "\x55\x8B\xEC\x83\xEC\x20\x53\x56\x8B\xD9\x57\x8D\x8B"
                
/* 55 8B EC 83 EC 20 53 56 8B D9 57 8D 8B */
            

__________________
dcx2 is offline
stebrickboy
Junior Member
Join Date: Jul 2013
Old 07-08-2013 , 05:58   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #485

So, left4downtown2 is still not working on linux?

I tried both version here: https://forums.alliedmods.net/showpo...postcount=453.

None of them seems working - My linux server still crashes.

BTW...how to generate code in linux like these?


Server waking up from hibernation
L 07/07/2013 - 175:10: "foo<2><STEAM_1:0:12345678><>" connected, address "192.168.1.6:27005"
Client "foo" connected (192.168.1.6:27005).
192.168.1.6:27005:reconnect
L 07/07/2013 - 175:10: "foo<2><STEAM_1:0:12345678><>" disconnected (reason "Connection closing")
Dropped foo from server (Connection closing)
L 07/07/2013 - 175:10: "foo<3><STEAM_1:0:12345678><>" connected, address "192.168.1.6:27005"
Client "foo" connected (192.168.1.6:27005).
String Table dictionary for downloadables should be rebuilt, only found 36 of 42 strings in dictionary
String Table dictionary for soundprecache should be rebuilt, only found 9754 of 16316 strings in dictionary
String Table dictionary for Scenes should be rebuilt, only found 6770 of 13181 strings in dictionary
L 07/07/2013 - 175:11: World triggered "Round_Start"
stebrickboy is offline
crasx
Member
Join Date: May 2011
Location: Lakewood, CO
Old 07-08-2013 , 06:07   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #486

Quote:
Originally Posted by dcx2 View Post
Not sure where the best place to ask this is, but...I would like to add a new forward to Left4Downtown2. I would like to be able to return Plugin_Handled to prevent bots from attempting to use healing items. I've found the signature that I want in both Windows and Linux, but unfortunately I have no idea what to do from here. Can someone teach this man how to fish? Or point me toward some resource on how to modify an extension to support another detour?

PHP Code:
            /* Called by bots to determine whether they should heal, and who
               Look for string "Trying to heal a friend" */
            
"SurvivorBot_UseHealingItems"
            
{
                
"library"    "server"
                "linux"    "@_ZN11SurvivorBot15UseHealingItemsEP6ActionIS_E"
                "windows"  "\x55\x8B\xEC\x83\xEC\x20\x53\x56\x8B\xD9\x57\x8D\x8B"
                
/* 55 8B EC 83 EC 20 53 56 8B D9 57 8D 8B */
            

If the hg owners don't want to, you could prolly do a standalone. I'm too tired to think about that code right now....

anyway, I got these 2 signatures for our server that had issues. GetMasterServerPlayerCounts wasn't letting us have over 8 players.

PHP Code:
            "OnMobRushStart"
            
{
                
"library"  "server"
                "linux"    "@_ZN9CDirector14OnMobRushStartEv"
                "windows"  "\x55\x8B\xEC\x83\xEC\x08\xA1\x2A\x2A\x2A\x2A\xF3\x0F\x10\x2A\x2A\x56\x57\x51"
                
/* 55 8B EC 83 EC 08 A1 ? ? ? ? F3 0F 10 ? ? 56 57 51 */
            
}
            
            
            
"GetMasterServerPlayerCounts"
            
{
                
"library" "engine"
                "linux" "@_ZN11CBaseServer27GetMasterServerPlayerCountsERiS0_S0_"
                "windows" "\x55\x8B\xEC\x56\x8B\xF1\xE8\x2A\x2A\x2A\x2A\x8B\x4D\x08\x89\x01"

                
/* 55 8B EC 56 8B F1 E8 ? ? ? ? 8B 4D 08 89 01    */

            


The other ones weren't working for me. I still need DifficultyChanged, but I don't know where that error is coming from

Last edited by crasx; 07-08-2013 at 06:09.
crasx is offline
Martijn79
Member
Join Date: Jan 2013
Old 07-08-2013 , 06:56   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #487

Quote:
Originally Posted by stebrickboy View Post
So, left4downtown2 is still not working on linux?

I tried both version here: https://forums.alliedmods.net/showpo...postcount=453.

None of them seems working - My linux server still crashes.

BTW...how to generate code in linux like these?


Server waking up from hibernation
L 07/07/2013 - 175:10: "foo<2><STEAM_1:0:12345678><>" connected, address "192.168.1.6:27005"
Client "foo" connected (192.168.1.6:27005).
192.168.1.6:27005:reconnect
L 07/07/2013 - 175:10: "foo<2><STEAM_1:0:12345678><>" disconnected (reason "Connection closing")
Dropped foo from server (Connection closing)
L 07/07/2013 - 175:10: "foo<3><STEAM_1:0:12345678><>" connected, address "192.168.1.6:27005"
Client "foo" connected (192.168.1.6:27005).
String Table dictionary for downloadables should be rebuilt, only found 36 of 42 strings in dictionary
String Table dictionary for soundprecache should be rebuilt, only found 9754 of 16316 strings in dictionary
String Table dictionary for Scenes should be rebuilt, only found 6770 of 13181 strings in dictionary
L 07/07/2013 - 175:11: World triggered "Round_Start"
It works fine on Linux. I run it stable for more than 12 hours without crashes. I don't use the additional slots though but I use score and team manager and some other stuff.

Your crashes must be related to something else.
Martijn79 is offline
Martijn79
Member
Join Date: Jan 2013
Old 07-08-2013 , 07:01   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #488

Quote:
Originally Posted by OtterNas3 View Post
It's just that there never was a Signature for that in the L4D1 version?
You could be right, I'm confused myself right now. I know L4D1 uses an older version someone posted an update here which you can try:

http://forums.alliedmods.net/showpos...postcount=1123
Martijn79 is offline
stebrickboy
Junior Member
Join Date: Jul 2013
Old 07-08-2013 , 07:17   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #489

Quote:
Originally Posted by Martijn79 View Post
It works fine on Linux. I run it stable for more than 12 hours without crashes. I don't use the additional slots though but I use score and team manager and some other stuff.

Your crashes must be related to something else.
It seems to me that dc2x's situation is similar to mine.

Server crashes when:

1. Someone joins to the server;
2. Confogl plugin is loaded.

But server wont crash when I remove Left 4 Downtown (but confogl plugin would not work without it). I removed all other plugins but the result is still the same. Could you share your addon and cfg file with us?

I tried many versions of left4downtown but problems remain unchanged. Crash, restart.

A bit mad now
stebrickboy is offline
adrianman
Senior Member
Join Date: Sep 2010
Old 07-08-2013 , 07:21   Re: [EXTENSION] Left 4 Downtown 2 (0.5.4.2) - L4D2 Only, Updated Left4Downtown
Reply With Quote #490

just remove or comment out the
ValveRejectServerFullFirst windows offset from the Left 4 Downtown gamedata
That should fix the players connecting crash
__________________
The best thing in life's for free

Last edited by adrianman; 07-08-2013 at 09:46.
adrianman is offline
Reply



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 05:27.


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