My First Script - Picture Window

By Solitude on Jun 30, 2009

I made this mIRC Picture Window with the help of BlueThen's tutorial and mIRCs help file on Picture Windows

BlueThen's Tutorial: http://www.hawkee.com/phpBB2/viewtopic.php?t=18557

To use it, put it in your mIRC Remotes (ALT+R) and hit 'ok'. Then in your mIRC Active window type /Animation

NOTE: This is following the tutorial nearly 100%, just a few small changes.

*This is my first script that I've actually made. I have read the help files a bit, but never attempted to create something.

alias Animation { 
  window -pd @Animation -1 -1 500 500 
  window -hpd @Animation.buffer -1 -1 500 500 
  set %Animation.X 300 
  set %Animation.Y 2
  Animation.frame 
} 
alias -l Animation.frame { 
  if ($window(@Animation)) { 
    inc %Animation.y 4  
    clear @Animation.Buffer  
    drawfill @Animation.Buffer 4 4 12 12  
    drawdot @Animation.Buffer 12 20 %Animation.x %Animation.y
    drawcopy @Animation.Buffer 0 0 500 500 @Animation 0 0 500 500 
    .timer 1 0 Animation.frame 
  } 
} 
on *:Close:@Animation: { 
  window -c @Animation.buffer 
  unset %Animation.*
}

Comments

Sign in to comment.
TheNitelyfe   -  Jul 01, 2009

EXCELLENT FOR A FIRST

 Respond  
Solitude   -  Jun 30, 2009

Bleh. No comments, then? Must suck :(

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.