mIRC Homepage
I want to make automatically some image file(like gif,png) which shows some information of IRC chan such as user-list, chan's title etc.

Is there any *.mrc files to make it, or *.tcl for eggdrop?

Thanks, in advance.
have done several searches and have not found one. sorry.
I'm not certain on this but you might be able to do it with the SendKeys alias. *shrugs*
If its just the information from these things, rather than exactly what they look like, then you could just use mircs scripting to create a file with the data in, and then use a text2jpg or text2gif program to convert it, there are several on the web.
Here's a really basic (and sloppy laugh) example of how you can make an image file with mIRC script.
Code:
alias makeimage {
  if !$chan(1) { return }
  window -hp @Image 1 1 300 200
  drawtext -p @image 12 25 5 Stats for $chan(1)

  drawtext @image 4 5 25 $chan(1) Users:
  drawtext @image 4 200 25 $nick($chan(1),0)
  drawtext @image 3 5 40 $chan(1) OPs:
  drawtext @image 3 200 40 $nick($chan(1),0,o)
  drawtext @image 2 5 55 $chan(1) Voices:
  drawtext @image 2 200 55 $nick($chan(1),0,v,o)
  drawtext @image 1 5 70 $chan(1) Regs:
  drawtext @image 1 200 70 $nick($chan(1),0,r)

  drawtext @image 12 5 120 Add more stuff as you wish
  drawtext @image 12 5 145 see /help picture windows.

  drawsave @Image Image.jpg
  close -@ @Image
  run Image.jpg
}
Nice... :tongue:
So Cooooooooooooooool.

Thank you very much. smile
© mIRC Discussion Forums