Top

My First Script - Picture Window


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Jun 30, 2009
Last Updated  Jun 30, 2009
Tags  animation  boring  first  mirc  picwin  test 

Introduction

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.

Grab the Code

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

  (2)  RSS
Solitude
Comments: 23
 
mIRC Snippet:  My First Script - Picture Window
Posted on Jun 30, 2009 8:21 pm
Bleh. No comments, then? Must suck :(
TheNitelyfe
Comments: 46
 
mIRC Snippet:  My First Script - Picture Window
Posted on Jul 1, 2009 1:06 am
EXCELLENT FOR A FIRST

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom