1
2
3
4
5
6
7
8
9
10
11
12
|
on *:TEXT:!add *:#:{
if (%gather == 1) {
var %x = 1, %s
while ($($+(%,nick,%x),2) != $null) { var %s = %s - $v1 | inc %x }
if (%x == 11) { notice $nick Team is full }
else {
set $+(%,nick,%x) $2
notice $nick $2 is now player %x
}
notice $nick Team: $right(%s,-1)
}
} |