View Single Post
eyal282
Veteran Member
Join Date: Aug 2011
Old 12-13-2017 , 17:46   Re: [L4D2] Wait for loaders on door lock
Reply With Quote #5

Quote:
Originally Posted by Crasher_3637 View Post
I don't see how informing you of the rules is considered useless. Breaking rules can have consequences soo...


Anyway, you would just need to increase the timer that starts the countdown. So maybe change this:

PHP Code:
public Action:OnRoundStart(Handle:event, const String:name[], bool:dontBroadcast)
{
    if(
isBugged() || isBugged2())
    {
        
CreateTimer(2.0timerMapStartLocker);
    }
    else
    {
        
CreateTimer(2.0timerMapStartBlocker);
    }

To this?

PHP Code:
public Action:OnRoundStart(Handle:event, const String:name[], bool:dontBroadcast)
{
    if(
isBugged() || isBugged2())
    {
        
CreateTimer(30.0timerMapStartLocker);
    }
    else
    {
        
CreateTimer(30.0timerMapStartBlocker);
    }

Also, if you want help as soon as possible, try private messaging other users. I've done that a few times recently and they've gotten back to me within an hour or so.
I don't want players to be kept forever, that's why I wanna wait for loaders.
eyal282 is offline