In ctc, there's an alias set up to puke a cript which changes the new "score limit".
Code: Select all
alias winlimit "puke 399"ACS:
Code: Select all
script 399 (int max) net { // Change the winning score
if(ActivatorTID()==1000){
WinningScore = max;
PrintBold(s:"ScoreLimit set to ", i:max);}
if(ActivatorTID()>1000){
Print(s:"Only the server creator can change the win limit!");
}
}