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

View Poll Results: Which of the following would you like implemented?
Boomer: Bile Feet (increased movement speed) 2 40.00%
Charger: Broken Ribs (post pummel damage) 3 60.00%
Charger: Snapped Leg (slowed down if hit during charge) 3 60.00%
Jockey: Bacterial Infection (post ride damage) 2 40.00%
Smoker: Collapsed Lung (post strangle damage) 2 40.00%
Witch: Death causes panic event 4 80.00%
Witch: Anger causes her to summon a mob 2 40.00%
Spitter: Supergirl (temp invincibility after spitting) 3 60.00%
Multiple Choice Poll. Voters: 5. You may not vote on this poll

[L4D2] Vicious Infected V-1.83 (Updated: 1/20/14)


Post New Thread Reply   
 
Thread Tools Display Modes
marvel
BANNED
Join Date: Dec 2009
Old 05-22-2010 , 16:22   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #91

Thanks a bunch! great additions as well, I'm gonna test this right now

I and other players as well love this plugin, good to see you support it like this
marvel is offline
birno
Senior Member
Join Date: Mar 2010
Old 05-22-2010 , 18:39   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #92

Thx but maybe you forget to add the gamedata file?

Code:
L 05/22/2010 - 23:12:36: [SM] Error parsing gameconfig file "C:\Program Files (x86)\Steam\steamapps\common\left 4 dead 2\left4dead2\addons\sourcemod\gamedata\l4d2_viciousinfected.txt":
L 05/22/2010 - 23:12:36: [SM] Error 1 on line 0, col 0: Stream failed to open
L 05/22/2010 - 23:12:36: [SM] Native "LoadGameConfigFile" reported: Unable to open l4d2_viciousinfected: File could not be opened: The system cannot find the file specified.
birno is offline
Mortiegama
Senior Member
Join Date: Feb 2010
Old 05-22-2010 , 23:19   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #93

@Birno - Heh, yeah I did. Added on the front page now.
__________________
Mortiegama is offline
ghosthunterfool
Senior Member
Join Date: Mar 2010
Old 05-23-2010 , 00:10   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #94

mortiegama i think the smoker + jockey need more abilities ... i think smoker clone would be great if its possible meaning when a smoker died it spawn another smoker with a % chance
ghosthunterfool is offline
dirka_dirka
Veteran Member
Join Date: Nov 2009
Old 05-23-2010 , 00:28   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #95

there are other plugins which give those infected "abilities" like:
smoker could incorporate 2 other plugins abilities- the smoker cloud damage and smoke it (walk with survivor)

jockey could jump w/ survivor, blindfold them and do a sort of pounce damage.
dirka_dirka is offline
marvel
BANNED
Join Date: Dec 2009
Old 05-24-2010 , 11:26   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #96

Ok found another bug, major one.

When you are tank and you choose to spawn a witch when tank spawns, and when u kill the witch with the tank another tank and another witch spawns. You can then repeat this and create unlimited tanks and witches

http://img249.**************/img249/182/testid.jpg
marvel is offline
marvel
BANNED
Join Date: Dec 2009
Old 05-25-2010 , 09:09   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #97

Btw I get a lot more server crashes as well since the new version. Server cant be up for like more than an hour.

I think it might be the jockey thingy, I'll try to disable it.
marvel is offline
Mortiegama
Senior Member
Join Date: Feb 2010
Old 05-25-2010 , 15:23   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #98

@Marvel - I am in the process of basically retooling the entire Witch/Mini Tank spawn system. I should have that ready at some point today. It's also going to include a lot of new abilities (incorporated from various other plugins).

As for the server crash, I'm not 100% sure what would cause that. I've had my server running for many hours with the latest versions without a problem, but I'll look into what might happen. I did notice there were problems when the tank was lit on fire which is being corrected in the next patch.
__________________
Mortiegama is offline
McFlurry
Veteran Member
Join Date: Mar 2010
Location: RemoveEdict(0);
Old 05-25-2010 , 17:06   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #99

@Mortiegama
I know that the survival tank horde bug has been around for a while but why not use this, I tested it and it works.

PHP Code:
    decl String:GameMode[16];
    
GetConVarString(FindConVar("mp_gamemode"), GameModesizeof(GameMode));    
    
decl String:Map[56];
    
GetCurrentMap(Mapsizeof(Map));
    if(
StrEqual(GameMode"survival"))
    {
        
PrintToServer("Survival modes does not allow tank horde!");
    }
    else
    {
        if (
isTank && isCullingSwarm && isSwarmable)
        {
            if(
isTankInPlay){return;}    
            
isTankInPlay true;
            new 
client GetClientOfUserId(GetEventInt(event"userid"));
            
TankClient client;
            new 
flags3 GetCommandFlags("z_spawn");
            new 
flags4 GetCommandFlags("director_force_panic_event");
            
SetCommandFlags("z_spawn"flags3 & ~FCVAR_CHEAT);
            
SetCommandFlags("director_force_panic_event"flags4 & ~FCVAR_CHEAT);
            
FakeClientCommand(client"director_force_panic_event");
            
SetCommandFlags("z_spawn"flags3|FCVAR_CHEAT);
            
SetCommandFlags("director_force_panic_event"flags4|FCVAR_CHEAT);
            if (
isAnnouncePrintToChatAll("[SM] The Tank has caused a Panic Event!"); 
        }
    } 
This is under the Tank spawn event.
__________________
McFlurry is offline
Send a message via Skype™ to McFlurry
birno
Senior Member
Join Date: Mar 2010
Old 05-25-2010 , 17:39   Re: [L4D2] Vicious Infected V-1.64 (Updated: 5/22/10)
Reply With Quote #100

I think in the new version the witch spawn doesn't work.
I enable the Mourning Widow and the Worried Wife too, but no witches.
birno 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 21:39.


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