AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [L4D2] Fake L4D1 Survivors (https://forums.alliedmods.net/showthread.php?t=281314)

cravenge 04-08-2016 12:07

[L4D2] Fake L4D1 Survivors
 
1 Attachment(s)
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!

SELL 04-17-2016 08:24

Re: [L4D2] Fake L4D1 Survivors
 
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

cravenge 04-17-2016 08:40

Re: [L4D2] Fake L4D1 Survivors
 
Quote:

Originally Posted by SELL (Post 2411813)
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.

SELL 04-17-2016 08:55

Re: [L4D2] Fake L4D1 Survivors
 
Quote:

Originally Posted by cravenge (Post 2411818)
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

cravenge 04-17-2016 08:59

Re: [L4D2] Fake L4D1 Survivors
 
Quote:

Originally Posted by SELL (Post 2411825)
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.

Silvers 04-17-2016 10:21

Re: [L4D2] Fake L4D1 Survivors
 
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.

cravenge 04-17-2016 10:52

Re: [L4D2] Fake L4D1 Survivors
 
Quote:

Originally Posted by Silvers (Post 2411852)
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 08-02-2016 23:47

Re: [L4D2] Fake L4D1 Survivors
 
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.

Edison1318 08-03-2016 03:52

Re: [L4D2] Fake L4D1 Survivors
 
Quote:

Originally Posted by cravenge (Post 2441839)
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.

cravenge 08-03-2016 04:32

Re: [L4D2] Fake L4D1 Survivors
 
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.


All times are GMT -4. The time now is 00:03.

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