AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   CS:S DM (https://forums.alliedmods.net/forumdisplay.php?f=77)
-   -   How to Block Rounds (https://forums.alliedmods.net/showthread.php?t=39440)

Scooter789 04-24-2009 15:37

Re: How to Block Rounds
 
Quote:

Originally Posted by frisk (Post 664446)
but still if one team is destroyed T or CT the round ends
how can i prevent this from happening

This is a bit of an issue, because if an entire team is eliminated at one time, the round ends and the flow of DM is broken by a resetting round.

How can this be prevented without using bots? There has got to be a way to ignore round_end events, or something.


EDIT: Now that I think about it, the whole not-ending thing is a bigger issue. I have a tourney coming up where mp_fraglimit will be unlimited, and the map has to end when mp_timelimit runs out.

I've had no luck getting this to happen so far. I've tried a few EventScripts addons, to no avail.

zhelev81 05-10-2009 06:58

Re: How to Block Rounds
 
Do we have somewhere force round end plugin ?? I have removed the objects with Bail stripper from my maps and now the round doesn't end.My rounds are 8 minutes each and the mp_time limit is 30 min,I need plugin like in the zombiereloaded to force the round to end on for example 4 seconds left,then the server will be able to change the map when mp_timelimit is over...

I was looking for this plugin but I did not find it on the forum ...

Anyone knows if there is such ?

badger413 08-14-2009 02:49

Re: How to Block Rounds
 
i just got a css public server installed sourcemod and cssdm. i downloaded the stripper source plugin but my server will not allow the BIN folder files to be downloaded. Can I still install the other files/folders and will the block rounds work?

sinx 01-17-2011 10:28

Re: How to Block Rounds
 
I have a problem, i've used stripper, everything works fine with my cs:s dm server, but i only wanna skip the defuse kits that appear when you spawn?

-=Leb=- 01-17-2011 14:32

Re: How to Block Rounds
 
go to your cfg/cssdm and then open cssdm.equip

and change
// Whether to give defusekits to CTs
"defusekits" "yes"

to "no""

Aces 07-23-2011 18:12

Re: How to Block Rounds
 
Quote:

Originally Posted by frisk (Post 664446)
i use stripper with these settings
filter:
{
"classname" "/.*bomb.*/"
}
{
"classname" "/.*hostage.*/"
}
but still if one team is destroyed T or CT the round ends
how can i prevent this from happening

also all the things removed with stipper give an error in console
missing model

Has anyone figured out how to do this? :/

Tiny 07-26-2011 14:04

Re: How to Block Rounds
 
By the way, is there a difference between the two codes for the stripper cfg ?

Code:

filter: { "classname" "/weapon*/" }
or
Code:

filter: { "classname" "/.*weapon.*/" }

chipf0rk 02-10-2013 01:28

Re: How to Block Rounds
 
Quote:

Originally Posted by Tiny (Post 1519052)
By the way, is there a difference between the two codes for the stripper cfg ?

Code:

filter: { "classname" "/weapon*/" }
or
Code:

filter: { "classname" "/.*weapon.*/" }

Yes there is. The system uses regular expressions to match the entity classnames, and ".*" means "any character (.), however often (*)", so the two together are much like the * wildcard in a Windows file search or something like that.
I'm not sure what "weapon*" will do right now, but it will for sure not work the way you intend it to.

---

I myself am still on the search for the plugin that can actually do what has been mentioned - prevent the round from ending even if one team is dead. It is horrible to play with very few players on the server because the rounds restart all the time. I have to use bots to prevent this, but I don't really want to use bots. Anyone got any idea? Dr!fter mentioned in a thread that there IS a plugin but he can't recall which one it was:

Quote:

Originally Posted by Dr!fter (Post 1179159)
Remove the map objectives for round not to end. Then when the timer hits 0:00 it will stay there until one entire team dies (for example all t's die) Theres also a extension that patchs it even if all the players on one team die. Cant recall which one it is.

I need this urgently :/
Thanks in advance!

chipf0rk 02-10-2013 09:03

Re: How to Block Rounds
 
Alright, I was able to do this, found this info:

In an orange box update the var mp_ignore_round_win_conditions was added, you have to set it to 1 so that the round never ends. Yes, also when one team is completely dead. But be aware that never means never, I've read that apparently the round doesn't even restart when the roundtime ends with that variable set to 1.
But that doesn't really matter for my DM server.

adamnp 02-11-2013 16:53

Re: How to Block Rounds
 
Quote:

Originally Posted by chipf0rk (Post 1891549)
Alright, I was able to do this, found this info:

In an orange box update the var mp_ignore_round_win_conditions was added, you have to set it to 1 so that the round never ends. Yes, also when one team is completely dead. But be aware that never means never, I've read that apparently the round doesn't even restart when the roundtime ends with that variable set to 1.
But that doesn't really matter for my DM server.

Thanks for that bit of info - I've been digging for that myself. Funny, @another thread I came across regarding this issue, a guy replied saying he submitted a request to create the cvar in a bug report. Everyone gave him shit about it -- lol, low and behold here it is.
( http://forums.alliedmods.net/showpos...0&postcount=10 )

Cheers mate!


All times are GMT -4. The time now is 12:13.

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