209 @verb #3309:"seat_accept" this none this rxdo #8438 @program #3309:"seat_accept" this none this ":seat_accept( player, seat-index ) => Returns true if it's okay for the given player to sit in the seat specified by seat-index in this:seatlist()" " Currently it only checks to see if there's any room but you could modify it any way you like." x = args[2] numofpeople = 0 for seat in (this.seats) if (seat == x) numofpeople = numofpeople + 1 endif endfor return numofpeople < this:seatlist()[x][2] . 0