Top

Cool Meter

+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Aug 10, 2007
Last Updated  Oct 11, 2007
Tags  cool  meter 

Introduction

ROFL just wanted to make a lame cool meter i dont want to put this into a notepad make it complicate for newbies :P and it took me about 10 minutes i wouldve added more but na

Grab the Code

Comments

  (12)  RSS
Toasterz4
Comments: 2
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 5:41 am
good idea to start of with, may i suggest adding some type of .txt file to keep track of a person\'s coolness, set the $nick as the variable and add a if $nick is on coolnick.txt == $null) {Your coolness remains %nickrating

as you can see, i dont know the code to do this off the top of my head, but if your serious about a coolness rating, you should lock it so the same nick or host can only get one coolness rating, allso a !coolness command that reads off all the names and coolness ratings in a /time 1 2/notice %nick %Rating format would be a good idea, as a kinda coolness scoreboard,

i dont know, maby its just me trying to complicate a simple and fun idea, or maby its worth doing, the choice is yours, either way, good snippet
Lindrian
Comments: 728
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 7:43 am
uh
why not just:
Code:

var %coolness = $r(1,100), %percent = %coolness $+ %
.timer 1 4 .msg $chan %percent

Anti
Comments: 305
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 5:39 pm
ROFL will that work lindrian??!
napa182
Comments: 953
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 7:39 pm
How about this LMAO
Code:
on ^*:text:!cool*:#: {
  if ( %cool == off ) {
    msg $chan sorry $nick Cool % is off
  }
  elseif ((%cool == on) && ( $2 == $me)) {
    msg $chan $2 Is 100% Cool =P
  }
  else {
    if ( $2 == $2 ) {
    msg $chan $2 Is $rand(0,100) % Cool =P }
  }
}
menu channel {
  cool
  .Turn On { set %cool on | echo -a Cool % Game is now on }
  .Turn Off { set %cool off | echo -a Cool % Game is now off }
}
napa182
Comments: 953
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 7:41 pm
oops typeo lmao
it\'s this
Code:
on ^*:text:!cool*:#: {
  if ( %cool == off ) {
    msg $chan sorry $nick Cool % is off
  }
  elseif ((%cool == on) && ( $2 == $me)) {
    msg $chan $2 Is 100% Cool =P
  }
  else {
  msg $chan $2 Is $rand(0,100) % Cool =P }
}
menu channel {
  cool
  .Turn On { set %cool on | echo -a Cool % Game is now on }
  .Turn Off { set %cool off | echo -a Cool % Game is now off }
}
Anti
Comments: 305
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 7:41 pm
rofl yeah i would do that take to long rofl i like how im always %100 percent cool roflmao
napa182
Comments: 953
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 8:09 pm
well the bot would be 100% cool but you well i would have to think about that one LMAO jk
Anti
Comments: 305
 
mIRC Snippet:  Cool Meter
Posted on Aug 11, 2007 8:27 pm
rofl lemme think about your coolness 0.00% Coolness.. ROFL :PP jkjk
Godzilla
Comments: 91
 
mIRC Snippet:  Cool Meter
Posted on Aug 30, 2007 12:32 am
Maybe use:

set %coolness $rand(1,100)
.timer 1 4 .msg $chan $nick is %coolness $+ % cool. 8-)
warrock
Comments: 23
 
mIRC Snippet:  Cool Meter
Posted on Aug 31, 2007 1:31 am
Hey OhGoody this is Champ, rofl i turned it into a lameness meter hehe :P
T7Davey
Comments: 73
 
mIRC Snippet:  Cool Meter
Posted on Aug 31, 2007 2:12 am
Isn\'t there a missin closing bracket?
Anti
Comments: 305
 
mIRC Snippet:  Cool Meter
Posted on Oct 11, 2007 10:09 am
ok fixed the closed bracket thingy :P wasup Champ:P

Please Register or Login to start posting comments.
Bottom