Hey there,

There is no need to post 3 different posts in such a short time, these boards are not IRC and it could take a couple of hours or longer for you to receive an answer. Furthermore, you have 2 hours to edit your post before the ability to do that is blocked, simply click on the 'Edit' button and add what you forgot to it.

You can just use the code that CtrlAltDel provided to you, but change the channel name in the first line to the channel you want it to activate on:

Code:
on *:text:*:[color:red]#C.H.I[/color]: {
  if (!list isin $1) .play $chan !list.txt 2000 
  ; (plays a text file to the channel)
  if (!hit isin $1) .play $nick !hit.txt 2000 
  ; (plays a text file to the user)
}


This will /play the file !list.txt to the channel if someone types !list, or if they type !hit it will /play the file !hit.txt. You need to create these files and put the information inside them for this to work, or replace those files in the code with the files you want to play. For further help, type /help playing files in mIRC where each part of the /play command is explained. I don't think the -m switch was used correctly so I removed it from the above.

The code is not meant to be taken literally. You need to change !hit.txt and !list.txt to whatever file you want to read and play information from. You can use play $nick to send it to the nickname that wrote the comand.

Regards,