So you want subscribers to collectively write a list of games then you to choose?
If so, try this. It will allow users to use command !Addgame followed by a game, then it would write the list in a text file in your C:\Users\Administrator\AppData\Roaming\mIRC folder under the name GamesToPlay.txt.
on *:text:!Addgame *:#: {
.write GamesToPlay.txt $2- Chosen by: $nick
msg # $nick added $2- to the list
}
If you wanted you could randomise the choice by using this. It would choose a random line to read from the file when you type !selectgame. Or you could just select manually by looking in the file.
on *:text:!selectgame:#: {
var %Line $lines(GamesToPlay.txt)
var %LineToRead $rand(1,%Line)
msg # The next game to play: $read(GamesToPlay.txt,%LineToRead)
}
Let me know how you get on.