mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2005
Posts: 2
L
Bowl of petunias
OP Offline
Bowl of petunias
L
Joined: Feb 2005
Posts: 2
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.

Joined: Mar 2004
Posts: 526
Fjord artisan
Offline
Fjord artisan
Joined: Mar 2004
Posts: 526
have done several searches and have not found one. sorry.


Help others! It makes the world a better place, Makes you feel good, and makes you Healthy!
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
I'm not certain on this but you might be able to do it with the SendKeys alias. *shrugs*

Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
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.

Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
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
}

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Nice... :tongue:

Joined: Feb 2005
Posts: 2
L
Bowl of petunias
OP Offline
Bowl of petunias
L
Joined: Feb 2005
Posts: 2
So Cooooooooooooooool.

Thank you very much. smile


Link Copied to Clipboard