This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

8 survivors in the rescue vehicle


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
cravenge
Veteran Member
Join Date: Nov 2015
Location: Chocolate Factory
Old 11-22-2020 , 08:46   Re: 8 survivors in the rescue vehicle
Reply With Quote #1

In case of anyone still getting dead reports in Dark Carnival with the Stripper config I shared above:
Quote:
There is also no need to alter the "m_currentReviveCount" netprop nor teleporting the extra survivors back to the saferoom since the game already handles that as long as there is enough escape positions for all survivors. Keep in mind that there are several maps that are picky and want the survivors to be in those spots in order for them to be counted as survived and that is why going by the old method doesn't always work 100% nowadays.

Last edited by cravenge; 11-22-2020 at 10:20.
cravenge is offline
cravenge
Veteran Member
Join Date: Nov 2015
Location: Chocolate Factory
Old 11-29-2020 , 19:20   Re: 8 survivors in the rescue vehicle
Reply With Quote #2

If anyone's having trouble on adding extra info_survivor_position entities for other tricky finales besides Dark Carnival through Stripper, don't hesitate to tell the name of the custom campaign (if I have it) to me and I'll PM the config to you.
cravenge is offline
rtokuda
Senior Member
Join Date: Dec 2019
Old 11-29-2020 , 19:25   Re: 8 survivors in the rescue vehicle
Reply With Quote #3

Quote:
Originally Posted by cravenge View Post
If anyone's having trouble on adding extra info_survivor_position entities for other tricky finales besides Dark Carnival through Stripper, don't hesitate to tell the name of the custom campaign (if I have it) to me and I'll PM the config to you.
If you can send the Stripper of the official campaigns, I thank you, because I find it very complicated to open the hammer and try to find the info_survivor_position entities.
rtokuda is offline
Marttt
Veteran Member
Join Date: Jan 2019
Location: Brazil
Old 11-29-2020 , 21:34   Re: 8 survivors in the rescue vehicle
Reply With Quote #4

I always browse by here (except last stand map)

https://github.com/Stabbath/L4D2-Dec...Dumps/Official
__________________
Marttt is offline
Maku
Member
Join Date: Dec 2020
Location: United Kingdom
Old 03-01-2021 , 09:29   Re: 8 survivors in the rescue vehicle
Reply With Quote #5

I am using DeathChaos25's plugin (FinaleFinishGodmode.smx)

It works perfectly fine in other maps but in Dark Carnival, I played as Zoey and she was considered deceased along with 2 other players (I think it was 8 players or 7 players) and 3 were considered deceased (Since one of them was incapped by a tank but I never saw the other one incapped like me and we got into the helicopter safely).

I have tested the plugin in RE1, RE2 Side A, RE2 Side B, and RE3 and it works fine. I have also tested it in Dead Center and The Passing which was also fine (These were all 5+ players since some people sometimes crash/leaves the game).


Edit: Death toll also says the same thing sadly... may have to use Crasher's one instead.

Last edited by Maku; 03-03-2021 at 20:40. Reason: Tested on another map
Maku is offline
sbrblz
Member
Join Date: Jun 2021
Old 08-17-2021 , 23:50   Re: 8 survivors in the rescue vehicle
Reply With Quote #6

Has anyone found a way to get more than 8 survivors in a finale? It seems using any of the working methods, just has the "alll survivors escaped" text replaced with "was the first survivor out!" any survivor over 8 is listed as deceased. I tested with myself and 9 other bots as well as 2 players and 8 bots. I did try the stripper configs that were posted, using c1m4 atrium map, even uncommenting the 2 extra parts for extra survivors didn't yield a successful result. I also tried Psyk0tik's plugin and set l4d_esfp_amount "6" with the same result. It's not a big deal I suppose, I am just asking since there is a small chance that I might have 9 players at some point for a LAN game.
sbrblz is offline
Marttt
Veteran Member
Join Date: Jan 2019
Location: Brazil
Old 09-23-2021 , 21:11   Re: 8 survivors in the rescue vehicle
Reply With Quote #7

This is for Stripper extension.

You should paste it into "addons/stripper/maps" folder.
__________________

Last edited by Marttt; 09-23-2021 at 21:12.
Marttt is offline
yabi
Senior Member
Join Date: Jun 2021
Location: Taiwan
Old 09-24-2021 , 13:01   Re: 8 survivors in the rescue vehicle
Reply With Quote #8

Quote:
Originally Posted by Marttt View Post
This is for Stripper extension.

You should paste it into "addons/stripper/maps" folder.


Steam\steamapps\common\Left 4 Dead 2\left4dead2\addons\stripper\maps

@@?Is that right?~
yabi is offline
Marttt
Veteran Member
Join Date: Jan 2019
Location: Brazil
Old 09-24-2021 , 13:24   Re: 8 survivors in the rescue vehicle
Reply With Quote #9

Yeah but you need Stripper extension installed.

Link here
__________________
Marttt is offline
sorallll
Senior Member
Join Date: Oct 2018
Old 02-11-2022 , 06:55   Re: 8 survivors in the rescue vehicle
Reply With Quote #10

Currently I use this and it works fine

PHP Code:
HookEvent("finale_vehicle_leaving"Event_FinaleVehicleLeaving);

void Event_FinaleVehicleLeaving(Event event, const char[] namebool dontBroadcast)
{
    
int entity FindEntityByClassname(MaxClients 1"info_survivor_position");
    if(
entity == INVALID_ENT_REFERENCE)
        return;

    
float vOrigin[3];
    
GetEntPropVector(entityProp_Send"m_vecOrigin"vOrigin);

    
int iSurvivor;
    static const 
char sOrder[][] = {"1""2""3""4"};
    for(
int i 1<= MaxClientsi++)
    {
        if(!
IsClientInGame(i) || GetClientTeam(i) != TEAM_SURVIVOR)
            continue;
            
        if(++
iSurvivor 4)
            continue;
            
        
entity CreateEntityByName("info_survivor_position");
        
DispatchKeyValue(entity"Order"sOrder[iSurvivor RoundToFloor(iSurvivor 4.0) * 4]);
        
TeleportEntity(entityvOriginNULL_VECTORNULL_VECTOR);
        
DispatchSpawn(entity);
    }

sorallll 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 16:21.


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