View Single Post
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 06-06-2012 , 11:30   Re: 3 players ingame 1 rtv only required ?
Reply With Quote #4

Line 123 & 140
PHP Code:
g_VotesNeeded RoundToFloor(float(g_Voters) * GetConVarFloat(g_Cvar_Needed)); 
RoundToFloor(3.0 x 0.60 = 1.8) // Rounds a float to the next lowest integer value.
g_VotesNeeded = 1



Then start line 239
PHP Code:
    if (g_Votes >= g_VotesNeeded)
    {
        
StartRTV();
    } 
if(1 >= 1)
StartRTV();
Bacardi is offline