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

[L4D2] Fake L4D1 Survivors


Post New Thread Reply   
 
Thread Tools Display Modes
Author
cravenge
Veteran Member
Join Date: Nov 2015
Location: Chocolate Factory
Plugin ID:
5119
Plugin Version:
1.0
Plugin Category:
General Purpose
Plugin Game:
Left 4 Dead
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    A workaround for players who want to use Zoey and Francis on Windows.
    Old 04-08-2016 , 12:07   [L4D2] Fake L4D1 Survivors
    Reply With Quote #1

    Wow, I never realize until now I posted so many modified plugins. Anyways, this is only for Windows users who experiences crashes when using Zoey and Francis (because I'm one of them).

    Since Zoey and Francis have Nick's "m_survivorCharacter" net prop, they will still have his voice, icons, arms, etc. However, if you use the plugin, they will become true Zoey and Francis but silent as in they can't say anything.

    If you want to fully experience them, download [L4D2] Model Based Vocalizations in order for them to vocalize their scenes but now it has parts, one is 100% and needs rewriting but part two is only 18% at the moment and fixed.

    SendProxy Manager --> Main Link / Source

    Commands:
    • "sm_zoey" - Change to Zoey (Nick's Ent Prop)
    • "sm_francis" - Change to Francis (Still Nick's Ent Prop)
    • "sm_bill" - Change to Bill
    • "sm_louis" - Change to Louis
    • "sm_nick" - Change to Nick
    • "sm_ellis" - Change to Ellis
    • "sm_rochelle" - Change to Rochelle
    • "sm_coach" - Change to Coach

    Installation:
    1. Download file and unzip using 7zip, WinRar, etc.
    2. Put the .smx file in your plugins folder.
    3. Put the .sp file in your scripting folder.
    4. Put the .inc file in your scripting/include folder.
    5. Put the .cfg file in your data folder.
    6. Put .autoload and .ext.dll files in your extensions folder.
    7. Put the .txt file in your gamedata folder.
    8. Restart server, and you're done!

    Quote:
    Changelog: 04-08-16
    - First release.

    04-17-16
    - As said by SELL, I forgot to update the extension. Please kindly redownload again.
    Just want to let you all know, it's bug-free at last!
    Attached Files
    File Type: zip [L4D2] Fake L4D1 Survivors.zip (100.1 KB, 1396 views)

    Last edited by cravenge; 05-14-2016 at 06:05. Reason: Extension's Source
    cravenge is offline
    SELL
    Junior Member
    Join Date: Feb 2016
    Old 04-17-2016 , 08:24   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #2

    L 04/17/2016 - 15:21:47: [SM] Error (line 0, column 0): Stream failed to open
    L 04/17/2016 - 15:21:47: [SM] Unable to load plugin "sendproxy_manager-l4d2.smx": Required extension "L4D2SendProxy" file("L4D2SendProxy.ext") not running

    although there is a file in a folder
    SELL is offline
    cravenge
    Veteran Member
    Join Date: Nov 2015
    Location: Chocolate Factory
    Old 04-17-2016 , 08:40   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #3

    Quote:
    Originally Posted by SELL View Post
    L 04/17/2016 - 15:21:47: [SM] Error (line 0, column 0): Stream failed to open
    L 04/17/2016 - 15:21:47: [SM] Unable to load plugin "sendproxy_manager-l4d2.smx": Required extension "L4D2SendProxy" file("L4D2SendProxy.ext") not running

    although there is a file in a folder
    Hmm, did you put the files in the proper places? If you still get that error, there is a possibility that you put a file in the wrong folder. I know because first time I put this in my server, I forgot to put the gamedata file too. Maybe the extension is broken but how can that be? I'm using it until now and it still works fine.
    cravenge is offline
    SELL
    Junior Member
    Join Date: Feb 2016
    Old 04-17-2016 , 08:55   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #4

    Quote:
    Originally Posted by cravenge View Post
    Hmm, did you put the files in the proper places? If you still get that error, there is a possibility that you put a file in the wrong folder. I know because first time I put this in my server, I forgot to put the gamedata file too. Maybe the extension is broken but how can that be? I'm using it until now and it still works fine.
    I understand that this file is missing L4D2SendProxy.ext.so ??? if it so that it is not in the archive

    Last edited by SELL; 04-17-2016 at 08:56.
    SELL is offline
    cravenge
    Veteran Member
    Join Date: Nov 2015
    Location: Chocolate Factory
    Old 04-17-2016 , 08:59   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #5

    Quote:
    Originally Posted by SELL View Post
    I understand that this file is missing L4D2SendProxy.ext.so ??? if it so that it is not in the archive
    Oops, forgot to update the extension as I updated mine. Oh, .dll is for windows and .so only works in Linux.

    EDIT: If you're Linux, you don't need that extension and the other plugins but keep the survivor_chat_select one, using Notepad++ and BTW, don't forget to delete the compiled .smx file, so find these lines:
    PHP Code:
    public Action:ZoeyUse(clientargs)  
    {  
        if (!
    IsSurvivor(client))
        {
            return;
        }
        
        
    SetEntProp(clientProp_Send"m_survivorCharacter"NICK);  
        
    SetEntityModel(clientMODEL_ZOEY);  
        if (
    IsFakeClient(client))
        {
            
    SetClientInfo(client"name""Zoey");
        }
    }

    public 
    Action:BikerUse(clientargs)  
    {  
        if (!
    IsSurvivor(client))
        {
            return;
        }
        
        
    SetEntProp(clientProp_Send"m_survivorCharacter"NICK);  
        
    SetEntityModel(clientMODEL_FRANCIS);  
        if (
    IsFakeClient(client))
        {
            
    SetClientInfo(client"name""Francis");
        }

    And replace them with:
    PHP Code:
    public Action:ZoeyUse(clientargs)  
    {  
        if (!
    IsSurvivor(client))
        {
            return;
        }
        
        
    SetEntProp(clientProp_Send"m_survivorCharacter"ZOEY);  
        
    SetEntityModel(clientMODEL_ZOEY);  
        if (
    IsFakeClient(client))
        {
            
    SetClientInfo(client"name""Zoey");
        }
    }

    public 
    Action:BikerUse(clientargs)  
    {  
        if (!
    IsSurvivor(client))
        {
            return;
        }
        
        
    SetEntProp(clientProp_Send"m_survivorCharacter"FRANCIS);  
        
    SetEntityModel(clientMODEL_FRANCIS);  
        if (
    IsFakeClient(client))
        {
            
    SetClientInfo(client"name""Francis");
        }

    EDIT 2: If not, please download the updated one.

    Last edited by cravenge; 04-17-2016 at 09:20.
    cravenge is offline
    Silvers
    SourceMod Plugin Approver
    Join Date: Aug 2010
    Location: SpaceX
    Old 04-17-2016 , 10:21   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #6

    Did you write the extension? You need to post the sourcecode or source of the extension, it's against the forum rules to only include a compiled version.
    __________________
    Silvers is offline
    cravenge
    Veteran Member
    Join Date: Nov 2015
    Location: Chocolate Factory
    Old 04-17-2016 , 10:52   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #7

    Quote:
    Originally Posted by Silvers View Post
    Did you write the extension? You need to post the sourcecode or source of the extension, it's against the forum rules to only include a compiled version.
    Oh, then I'll do that right now.
    cravenge is offline
    cravenge
    Veteran Member
    Join Date: Nov 2015
    Location: Chocolate Factory
    Old 08-02-2016 , 23:47   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #8

    Update Notifier:

    ==> So for the past few days I've been offline, I found out almost all scenes from nick had no replacements which makes Zoey and Francis mute in L4D2 campaigns. My progress now is 94% (still at the world____b_ ones)
    ==> Fixed the wrong close captions bug when Zoey (bot or player) needs to be rescued. Cause: all CallForRescue scenes have not been replaced. Bug: When incapacitated, some scenes were out of place to be performed.
    ==> Trying to make Zoey's and Francis' scenes in L4D1 campaigns be performed naturally without replacing them.
    ==> Will post FakeZoey version in DeathChaos' thread once I finished replacing all Nick's scenes.
    ==> Also, I added Merudo's weapon placements fix when changing characters.

    EDIT:
    ==> Fixed fall scenes playing on mission lost if coop or round end if versus even though the players are already dead.
    ==> Fixed heal-related scenes performing when actor is not on ground.

    Last edited by cravenge; 08-03-2016 at 04:31.
    cravenge is offline
    Edison1318
    Senior Member
    Join Date: Nov 2015
    Location: Peaceful place of the in
    Old 08-03-2016 , 03:52   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #9

    Quote:
    Originally Posted by cravenge View Post
    Update Notifier:

    ==> So for the past few days I've been offline, I found out almost all scenes from nick had no replacements which makes Zoey and Francis mute in L4D2 campaigns. My progress now is 94% (still at the world____b_ ones)
    ==> Fixed the wrong close captions bug when Zoey (bot or player) needs to be rescued. Cause: all CallForRescue scenes have not been replaced. Bug: When incapacitated, some scenes were out of place to be performed.
    ==> Trying to make Zoey's and Francis' scenes in L4D1 campaigns be performed naturally without replacing them.
    ==> Will post FakeZoey version in DeathChaos' thread once I finished replacing all Nick's scenes.
    ==> Also, I added Merudo's weapon placements fix when changing characters.
    That's nice, i also trying to work on FakeZoey thingy, i used L4D2 talker scripts and modify it, added some line's for Nick and FakeZoey, the only problem is i don't even know how Bill,Francis and Louis would recognized FakeZoey. Too be honest, i really hate it that l4d2 survivors vocalize "Nick to heal" to FakeZoey. I removed lines on l4d2 survivors that vocalize hunter pounced nick and then i modify a bit of fakezoey (DeathChaos's plugin) i managed to added Zoey to vocalize hunter pounced on her l4d1 Survivors.
    __________________
    EdisonGar

    Last edited by Edison1318; 08-03-2016 at 03:53.
    Edison1318 is online now
    Send a message via Skype™ to Edison1318
    cravenge
    Veteran Member
    Join Date: Nov 2015
    Location: Chocolate Factory
    Old 08-03-2016 , 04:32   Re: [L4D2] Fake L4D1 Survivors
    Reply With Quote #10

    Everyone, I never mentioned the plugin has been already updated. It was only a notification so please don't download it yet.

    Edison, DeathChaos already made Pounced Survivor Clone Vocalize Fix plugin to fix that. Also, mine has all fixes I can think of that bugs me.

    Last edited by cravenge; 08-03-2016 at 04:34.
    cravenge 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 09:58.


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