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

left 4 dead 2 all 8 survivors versus offline


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
BrutalFoX
Junior Member
Join Date: Jan 2020
Old 01-13-2020 , 09:50   left 4 dead 2 all 8 survivors versus offline
Reply With Quote #1

i am using all 8 survivors mod and increased max players up to 32 ..in the first round all 8 survivors are there fighting against 8 infected bots but when the next round begins only zoey is there along side l4d2 surviors and other survivors from l4d1 are removed i also tried using this mod without source mode and realized its not conflicting with any plugins and its because of the game design itself
i used
l4d2downtown
superversus
botcreator
zoeyunlock
l4d_survivor_identity_fix
reservedslotsut
but still these plugins didnt help me to prevent the game from removing the bots in 8v8 offline versus
but in regular versus 4v4 everything is alright
can anyone help me to fix this
BrutalFoX is offline
Silvers
SourceMod Plugin Approver
Join Date: Aug 2010
Location: SpaceX
Old 01-13-2020 , 10:15   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #2

PHP Code:
#include <sourcemod>

ConVar g_hLimitsurvivor_limit;

public 
Plugin myinfo =
{
    
name "[L4D & L4D2] Survivor Limit - Convar Upper Bounds",
    
author "SilverShot",
    
description "Sets survivor_limit cvar upper bounds.",
    
version "1.0",
    
url "https://forums.alliedmods.net/showthread.php?t=320875"
}

public 
void OnPluginStart()
{
    
survivor_limit FindConVar("survivor_limit");
    if( 
survivor_limit == null SetFailState("Failed to find cvar 'survivor_limit'.");

    
g_hLimit CreateConVar("l4d2_survivor_limit""8""Maximum number of survivors."0);
    
g_hLimit.AddChangeHook(ConVarChanged_Cvar);
}

public 
void ConVarChanged_Cvar(Handle convar, const char[] oldValue, const char[] newValue)
{
    
SetConVarBounds(survivor_limitConVarBound_Uppertrueview_as<float>(g_hLimit.IntValue));


Also search: https://forums.alliedmods.net/showthread.php?t=109413
__________________

Last edited by Silvers; 01-13-2020 at 10:15.
Silvers is offline
BrutalFoX
Junior Member
Join Date: Jan 2020
Old 01-13-2020 , 10:50   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #3

Quote:
Originally Posted by Silvers View Post
PHP Code:
#include <sourcemod>

ConVar g_hLimitsurvivor_limit;

public 
Plugin myinfo =
{
    
name "[L4D & L4D2] Survivor Limit - Convar Upper Bounds",
    
author "SilverShot",
    
description "Sets survivor_limit cvar upper bounds.",
    
version "1.0",
    
url "https://forums.alliedmods.net/showthread.php?t=320875"
}

public 
void OnPluginStart()
{
    
survivor_limit FindConVar("survivor_limit");
    if( 
survivor_limit == null SetFailState("Failed to find cvar 'survivor_limit'.");

    
g_hLimit CreateConVar("l4d2_survivor_limit""8""Maximum number of survivors."0);
    
g_hLimit.AddChangeHook(ConVarChanged_Cvar);
}

public 
void ConVarChanged_Cvar(Handle convar, const char[] oldValue, const char[] newValue)
{
    
SetConVarBounds(survivor_limitConVarBound_Uppertrueview_as<float>(g_hLimit.IntValue));


Also search: https://forums.alliedmods.net/showthread.php?t=109413
i dont quite understand what to do with these codes and i also searched for a pluging by that name and didnt find anything
perhaps can u direct me to this pluging or tell me what to do
BrutalFoX is offline
Shadowysn
Senior Member
Join Date: Sep 2015
Location: Location:
Old 01-14-2020 , 23:28   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #4

Quote:
Originally Posted by Silvers View Post
PHP Code:
#include <sourcemod>

ConVar g_hLimitsurvivor_limit;

public 
Plugin myinfo =
{
    
name "[L4D & L4D2] Survivor Limit - Convar Upper Bounds",
    
author "SilverShot",
    
description "Sets survivor_limit cvar upper bounds.",
    
version "1.0",
    
url "https://forums.alliedmods.net/showthread.php?t=320875"
}

public 
void OnPluginStart()
{
    
survivor_limit FindConVar("survivor_limit");
    if( 
survivor_limit == null SetFailState("Failed to find cvar 'survivor_limit'.");

    
g_hLimit CreateConVar("l4d2_survivor_limit""8""Maximum number of survivors."0);
    
g_hLimit.AddChangeHook(ConVarChanged_Cvar);
}

public 
void ConVarChanged_Cvar(Handle convar, const char[] oldValue, const char[] newValue)
{
    
SetConVarBounds(survivor_limitConVarBound_Uppertrueview_as<float>(g_hLimit.IntValue));


Also search: https://forums.alliedmods.net/showthread.php?t=109413
It doesn't do anything for me.

Setting l4d2_survivor_limit to 8 doesn't allow me to set survivor_limit to 8, it'll always remain at 4.

Setting l4d2_survivor_limit to 8.0, however, glitches survivor_limit.
Whenever I try to set survivor_limit to any number, it'll now always be set to 0. And I can't seem to reset the bounds either, survivor_limit will stay at 0 no matter how much I change either l4d2_survivor_limit or survivor_limit.
__________________
ragdoll spam, that is all

Steam profile, where I game, obviously.
Youtube channel, where I do Stick Death Maze animations and some other stuff.
no plugin requests, sorry


My Plugins:
-search list-
Modified Plugins:
1 | 2 | 3 | 4

Last edited by Shadowysn; 01-14-2020 at 23:28.
Shadowysn is offline
Silvers
SourceMod Plugin Approver
Join Date: Aug 2010
Location: SpaceX
Old 01-15-2020 , 05:19   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #5

Quote:
Originally Posted by Shadowysn View Post
It doesn't do anything for me.

Setting l4d2_survivor_limit to 8 doesn't allow me to set survivor_limit to 8, it'll always remain at 4.

Setting l4d2_survivor_limit to 8.0, however, glitches survivor_limit.
Whenever I try to set survivor_limit to any number, it'll now always be set to 0. And I can't seem to reset the bounds either, survivor_limit will stay at 0 no matter how much I change either l4d2_survivor_limit or survivor_limit.
Use the plugin from post #4 which removes the upper bound limit instead of setting one.
__________________
Silvers is offline
BrutalFoX
Junior Member
Join Date: Jan 2020
Old 01-15-2020 , 08:19   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #6

Quote:
Originally Posted by Shadowysn View Post
It doesn't do anything for me.

Setting l4d2_survivor_limit to 8 doesn't allow me to set survivor_limit to 8, it'll always remain at 4.

Setting l4d2_survivor_limit to 8.0, however, glitches survivor_limit.
Whenever I try to set survivor_limit to any number, it'll now always be set to 0. And I can't seem to reset the bounds either, survivor_limit will stay at 0 no matter how much I change either l4d2_survivor_limit or survivor_limit.
install l4d2toolz and l4d2 bugfixes and download these files below
https://forums.alliedmods.net/showthread.php?t=308483
https://github.com/Satanic-Spirit/de...dons/sourcemod
https://forums.alliedmods.net/showthread.php?t=280539
https://forums.alliedmods.net/showpo...69&postcount=5
https://forums.alliedmods.net/showthread.php?p=1042521
https://forums.alliedmods.net/showthread.php?p=999861
https://forums.alliedmods.net/showthread.php?p=2407497
https://forums.alliedmods.net/showthread.php?p=2407497
http://www.sourcemod.net/vbcompiler.php?file_id=171483
https://forums.alliedmods.net/attach...3&d=1537442935
https://forums.alliedmods.net/showthread.php?p=1029519
and download survivor limit plugin which our friend has shared in the links above
and once u downloaded and put all the files in place make sure l4dtoolz works properly and sourcemode makes somem config files in left4dead2/cfg/sourcemode/superverssus.cfg edit that file and change survivor and infected limit to 8 and save the file and then download this addon
http://www.mediafire.com/file/e0r703..._l4d1.vpk/file
and always keep it active
i couldnt find this addon so i had to upload it for u and idk who the author is
remember u have to change the config file of superversus and download survivor limit plugin above to make this work
im playing 8v8 versus with bots without any problem
if u couldnt make it work i can upload my plugin and sourcemode and l4dtoozl and config files and addons for you
ill help as best as i can
have fun

Last edited by BrutalFoX; 01-15-2020 at 08:28. Reason: forgot some tips
BrutalFoX is offline
Shadowysn
Senior Member
Join Date: Sep 2015
Location: Location:
Old 01-15-2020 , 23:45   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #7

Quote:
Originally Posted by BrutalFoX View Post
install l4d2toolz and l4d2 bugfixes and download these files below
https://forums.alliedmods.net/showthread.php?t=308483
https://github.com/Satanic-Spirit/de...dons/sourcemod
https://forums.alliedmods.net/showthread.php?t=280539
https://forums.alliedmods.net/showpo...69&postcount=5
https://forums.alliedmods.net/showthread.php?p=1042521
https://forums.alliedmods.net/showthread.php?p=999861
https://forums.alliedmods.net/showthread.php?p=2407497
https://forums.alliedmods.net/showthread.php?p=2407497
http://www.sourcemod.net/vbcompiler.php?file_id=171483
https://forums.alliedmods.net/attach...3&d=1537442935
https://forums.alliedmods.net/showthread.php?p=1029519
and download survivor limit plugin which our friend has shared in the links above
and once u downloaded and put all the files in place make sure l4dtoolz works properly and sourcemode makes somem config files in left4dead2/cfg/sourcemode/superverssus.cfg edit that file and change survivor and infected limit to 8 and save the file and then download this addon
http://www.mediafire.com/file/e0r703..._l4d1.vpk/file
and always keep it active
i couldnt find this addon so i had to upload it for u and idk who the author is
remember u have to change the config file of superversus and download survivor limit plugin above to make this work
im playing 8v8 versus with bots without any problem
if u couldnt make it work i can upload my plugin and sourcemode and l4dtoozl and config files and addons for you
ill help as best as i can
have fun
I already have l4dtoolz and l4d2_bugfixes, as well as most of these.
(And even some alternatives too, like Mission and Weapons - Info Editor in place of Left 4 Downtown 2 and DeathChaos' survivor set enforcer. You can now have L4D2 survivor's arms and icons in L4D1 maps, coming with the cost of dynamically changing the value of survivor_set while the game is in play.)

Instead of Superversus, I use ABM.
With ABM I'm already able to achieve having 8 survivors on every map start.
Problem was, people would experience having their character and weapons get switched with someone else's, and ty_saveweapon hasn't eradicated the problem completely.
__________________
ragdoll spam, that is all

Steam profile, where I game, obviously.
Youtube channel, where I do Stick Death Maze animations and some other stuff.
no plugin requests, sorry


My Plugins:
-search list-
Modified Plugins:
1 | 2 | 3 | 4

Last edited by Shadowysn; 01-16-2020 at 00:51.
Shadowysn is offline
Silvers
SourceMod Plugin Approver
Join Date: Aug 2010
Location: SpaceX
Old 01-13-2020 , 12:12   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #8

This will remove the upper bound, so you can set "survivor_limit" cvar to whatever value you want. Put inside your servers cfg/server.cfg.

Edit: I don't know if this will definitely fix your problem, but it might. Superversus apparently already has this change so might be another issue.

Because this plugin is uploaded using "Post Reply" to the thread, the forum defaults to the latest compiler version (1.10 as of writing). Download and compile locally for SM <= 1.9 , don't bug me about "Unable to load plugin (no debug string table)."
Attached Files
File Type: sp Get Plugin or Get Source (l4d_survivor_limit.sp - 427 views - 457 Bytes)
__________________

Last edited by Silvers; 01-13-2020 at 12:49.
Silvers is offline
BrutalFoX
Junior Member
Join Date: Jan 2020
Old 01-13-2020 , 13:46   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #9

Quote:
Originally Posted by Silvers View Post
This will remove the upper bound, so you can set "survivor_limit" cvar to whatever value you want. Put inside your servers cfg/server.cfg.

Edit: I don't know if this will definitely fix your problem, but it might. Superversus apparently already has this change so might be another issue.

Because this plugin is uploaded using "Post Reply" to the thread, the forum defaults to the latest compiler version (1.10 as of writing). Download and compile locally for SM <= 1.9 , don't bug me about "Unable to load plugin (no debug string table)."
thank u brother your plugin worked perfectly and did exactly what i wanted
idk why superversus coulnt change the value of survivor limit even with cvar commands
BrutalFoX is offline
Silvers
SourceMod Plugin Approver
Join Date: Aug 2010
Location: SpaceX
Old 01-13-2020 , 14:20   Re: left 4 dead 2 all 8 survivors versus offline
Reply With Quote #10

You can thank Lux, as usual, he notified me about this post and solution.
__________________
Silvers 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 03:37.


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