Quote:
|
first round will one user tranfered to CT & he has to player vs. all Terrors. @ round end if he could kill all Terrors, he willbe stay CT & the same game agin.
|
xPaw you missed this one in your code.
Also you don't need to use "if" here:
PHP Code:
new iPlayer = ( iCount == 1 ? iPlayers[ 0 ] : iPlayers[ random( iCount ) ] );
==>
PHP Code:
new iPlayer = iPlayers[ random( iCount ) ];
__________________