Try changing:
to
I think the me command will have a better effect for what you're going after there. :)
Oh also, since you have more than 6 elements in the "randomis" alias/list, you should either use listlen or count out exactly how many elements there are so you actually have a chance of seeing them all:
HTH :)
[SELECT ALL] Code:
bind "J" [say is (at $randomis (rnd 6))]
to
[SELECT ALL] Code:
bind "J" [me is (at $randomis (rnd 6))]
I think the me command will have a better effect for what you're going after there. :)
Oh also, since you have more than 6 elements in the "randomis" alias/list, you should either use listlen or count out exactly how many elements there are so you actually have a chance of seeing them all:
[SELECT ALL] Code:
bind "J" [me is (at $randomis (rnd (listlen $randomis)))]
HTH :)