AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Metamod:Source Plugins (https://forums.alliedmods.net/forumdisplay.php?f=76)
-   -   Stripper:Source (Updated 2011-04-15) (https://forums.alliedmods.net/showthread.php?t=39439)

SkaP 02-14-2010 18:20

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Thought so. I think I know whats going on, your missing a Pak file on your server. When you are it will cause you to clip though props because the server doesn't recognize them as physically big as they look. Check your servers left4dead2/left4dead2 folder and make sure you have these paks in there and if your missing one or more upload them from your game folder. Make sure they are in that folder and not any other, they will not load from any other folder. Pak02 0-10 is the addon support in your tools bar in steam.

PHP Code:

pak01_000.vpk
pak01_001
.vpk                 
pak01_002
.vpk          
pak01_003
.vpk  
pak01_004
.vpk
pak01_005
.vpk
pak01_006
.vpk   
pak01_007
.vpk    
pak01_008
.vpk                     
pak01_009
.vpk                       
pak01_010
.vpk                   
pak01_011
.vpk              
pak01_012
.vpk
pak01_013
.vpk 
pak01_014
.vpk           
pak01_015
.vpk
pak01_016
.vpk 
pak01_017
.vpk 
pak01_018
.vpk 
pak01_019
.vpk 
pak01_020
.vpk 
pak01_021
.vpk 
pak01_022
.vpk 
pak01_023
.vpk 
pak01_024
.vpk 
pak01_025
.vpk 
pak01_026
.vpk 
pak01_027
.vpk 
pak01_028
.vpk 
pak01_029
.vpk 
pak01_030
.vpk 
pak01_031
.vpk 
pak01_032
.vpk 
pak01_033
.vpk 
pak01_dir
.vpk        
pak02_000
.vpk        
pak02_001
.vpk        
pak02_002
.vpk        
pak02_003
.vpk        
pak02_004
.vpk        
pak02_005
.vpk        
pak02_006
.vpk        
pak02_007
.vpk        
pak02_008
.vpk        
pak02_009
.vpk        
pak02_010
.vpk        
pak02_dir
.vpk 


Skorpion1976 02-14-2010 18:25

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Hm, I have those files since last l4d2 update from January. BUT they are on directory higher, they donīt lie in the directory with all the other vpks.
Must have been a funny update. The local srcds update did the same on my server, everything got put in a dir 1 level higher. will copy that now and test again. thanks for the info!!!

EDIT: WORKING! Thanks!

SkaP 02-14-2010 18:31

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Yeah my update did the same thing on my server, I had to move them down as well. Your welcome.

Thraka 02-14-2010 23:21

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
How many levels of routes can be created? If we could get like 3 variations of the hedge maze, that would be AWESOME!! Maybe even randomly choose which is enabled\disabled!

Where did you get the map source files? Decompile? Pm me with info :)

dirka_dirka 02-15-2010 00:23

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Quote:

Originally Posted by Thraka (Post 1089216)
Where did you get the map source files? Decompile? Pm me with info :)

google

AtomicStryker 02-15-2010 15:04

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
1 Attachment(s)
The file i coded does NOT do dynamic pathing (it does only contain one path to begin with).

It shows how it would work: A Plugin or Player Trigger would execute the relays to get the path it wants.



EDIT:

Here. This file does random pathing - easy, medium, or hard. Easy is no restrictions, medium is SkaPs original, and hard is my mod of it.

Look into the file for explanations.

Thraka 02-15-2010 23:23

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
... AWEsOME. Thx man! Need more of this. Every map should have this type of thing all over. I would love to have this built into every map.

Questions though:
1) When you play with the VMF, do you use stripper dump to get these entities back out? Whenever I tried to use HAMMER to read info, it has the normal names, not in stripper format. So how do you easily convert this to that?

2) With the easy medium hard, is it possible to let the director choose? Valve says it's supposed to make it harder on the team that is doing better. I've yet to see it in versus though.

Edit:
I tried the config as is (so OnMapSpawn) and the first team ended up with the HARD config and the 2nd team had easy. :(

SkaP 02-16-2010 02:41

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Quote:

Originally Posted by Thraka (Post 1090298)
... AWEsOME. Thx man! Need more of this. Every map should have this type of thing all over. I would love to have this built into every map.

Questions though:
1) When you play with the VMF, do you use stripper dump to get these entities back out? Whenever I tried to use HAMMER to read info, it has the normal names, not in stripper format. So how do you easily convert this to that?

2) With the easy medium hard, is it possible to let the director choose? Valve says it's supposed to make it harder on the team that is doing better. I've yet to see it in versus though.

Edit:
I tried the config as is (so OnMapSpawn) and the first team ended up with the HARD config and the 2nd team had easy. :(

Working on it. Gonna finish the Parish first. I got some ideas for the sewer part and I am looking at the graveyard to see what's possible. Now that I know how to get the dynamic pathing I can make two of each part.

1. When reading the VMFs you double click the entity and it will give you properties. Match up the entites with the dump for stripper to find that entity. You can not remove static props but everything else goes. If you can't find it that way check the postion of the item you choose at the bottom to find it's origin and match it up with the stripper dump.

2. There is no dynamic pathing in versus it's been taken out completely. The logic entities activate one way and thats it but adding new ones can cause it to activate like what Atomic did.

SkaP 02-16-2010 03:34

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
1 Attachment(s)
Graveyard Dynamic Pathing Enabled!

Ok I am not done with the cemetery as an infected friendly map yet but I have readded the cemetery's dynamic pathing to be exactly like Valve semi-intended it to work. It was pretty easy after seeing Atomic's code so thank him for this not me.

What I have done is stripped Valve's original logic_auto that that activates the logic_case, which chooses the path in the graveyard, based on director Anger. Then I just added a new logic_auto that randomly picks the path(there are 4 A-B-C-D) at map start. It should pick the same path for both teams. Try it out, it took a while to see all the paths but they are all there. Difficulty is based on which fence opens the closer it is to the highway. So if the first fence is open the path is harder/longer, if you need to walk all the way down the first lane to get in it's the easy path.

AtomicStryker 02-16-2010 05:57

Re: Stripper:Source (1.2.1, L4D2 + Perf Improvements)
 
Quote:

Originally Posted by Thraka (Post 1090298)
I tried the config as is (so OnMapSpawn) and the first team ended up with the HARD config and the 2nd team had easy. :(


Didn't happen with my (very short) test, OnMapSpawn shouldnt fire again after a map has loaded ...

Well, a score-based Plugin to manage pathing would be my first choice anyway.


All times are GMT -4. The time now is 11:47.

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