Top

PARTY HARD!!


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  3.0
Scores Submitted  1
Date Added  Jul 10, 2008
Last Updated  Jul 10, 2008
Tags  hard  party 

Introduction

With this PARTY HARD script there is no visible flooding (all echo'd) and it's much more fun. It will change the color of your background to a random color, echo PARTY HARD, and constantly yet randomly change the color of that text aswell. It also allows you to type like normal as if the script wasn't being executed.

WARNING: THERE ARE FAST FLASHING COLORS. USE SCRIPT WITH CAUTION.

Installation:
Paste into the remote.

Use:
'/party' activates the Party.
'/party off' deactivates the Party.

Thanks to EL for the update :D

Grab the Code

Comments

  (3)  RSS
EL
Comments: 1,210
 
mIRC Snippet:  PARTY HARD!!
Posted on Jul 10, 2008 9:54 pm
ok first off you should add a warning cause of the flashin lights and color changes.Seconds you should use it as a remote just add the alias before the word an put it in remote it will save you room in yur aliases ini.Next add the tree bar and nicklist and the text bar to the changes make it a full effect not jus the background and normal.Also set the colors the person already has ina var so wenyou stop the flashing they get there set up back an no just back an white.`-.-´
Code:

alias party {
  if (!$1) {
set %color1  $color(background)
set %color2  $color(normal)
    .timerc 0 0 randcolors
  }
  else if ($1 == off) {
    .timerc off
    color background %color1
    color normal %color2
    halt
  }
}

alias randcolors {
  color background $rand(1,15)
  color normal $rand(0,15)
  echo -a PARTY HARD
}


Thats what i went by addin the alias and color save.`-.-´
napa182
Comments: 996
 
mIRC Snippet:  PARTY HARD!!
Posted on Jul 10, 2008 11:37 pm
EL said:
Quote:
ok first off you should add a warning cause of the flashin lights and color changes.


why cuz they can cause seizures??
ffs
NIGathan
Comments: 35
 
mIRC Snippet:  PARTY HARD!!
Posted on Jul 10, 2008 11:46 pm
Ah, thanks for that EL, and if you read I state exactly what it does, but ya I hear what you\'re saying.

napa: You never can be too sure...

Please Register or Login to start posting comments.
Bottom