Top

love script + gay script


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  2.2 (of 5 scores)
Date Added  Feb 17, 2007
Last Updated  Feb 18, 2007

Introduction

love script =] paste in remotes
type (!love -nick-) to see if they like you
type (!gay -nick-) to test if they are gay
type (is -nick- gay?) to see if they are gay
type (!dosumthingmanly) to remove your gayness
type (!dosumthinggirly) to add gayness

if you are labeled gay, everytimg you logg in it will say "ROFL -nick- is gay!" it will stop doing that when you type !do sumthing manly.

and if your labeled gay at all, it stays with you slightly, u can remove with dosumthingmanly, but still everytime you logg in it will say "-nick- used to be gay... rofl"

Grab the Code

on *:text:*:#: {
  if ($1 == .love) {
    if ($2 == $me) .describe $chan i love everyone =D
    if ($readini(gay.ini,gay,$2)) { describe $chan sorry, $2 has been labeled gay... | halt }
    var %love = $rand(1,4)
    describe $chan well...
    if (%love == 1) { .timer 1 2 describe $chan how could you love $2 $+ ? $2 is gay... | writeini gay.ini gay $2 is gay | auser gay $2 | halt }
    if (%love == 2) .timer 1 2 describe $chan sorry, they dont like you back. 
    if (%love == 3) .timer 1 2 describe $chan $2 is madly in love with you! 
    if (%love == 4) .timer 1 2 describe $chan $2 only has $rand(1,20) $+ % love for you, sorry =/ 
  }
  if ($1 == .dosumthingmanly) {
    if (!$readini(gay.ini,gay,$nick)) { describe $chan you dont need to.. your not gay. | halt }
    describe $chan you rip off your chesthair, you are gay no more! | .ruser gay $nick | .auser wasgay $nick
    remini gay.ini gay $nick
    writeini gay.ini notgay $nick isnt gay
  }
  if ($1 == .dosomethingmanly) {
    if ($readini(gay.ini,$nick)) { describe $chan you dont need to.. your not gay. | halt }
    describe $chan you rip off your chesthair, you are gay no more! | .ruser gay $nick | .auser wasgay $nick
    remini gay.ini gay $nick
    writeini gay.ini notgay $nick isnt gay
  }
  if ($1 == .dosumthinggirly) {
    if ($readini(gay.ini,gay,$nick)) { describe $chan you dont need to.. your already gay. | halt }
    if ($readini(gay.ini,notgay,$nick))  describe $chan what the hell? | auser gay $nick
    describe $chan whatever... loser
    writeini gay.ini gay $nick is gay
    remini gay.ini notgay $nick 
  }
  if ($1 == .dosomethinggirly) {
    if ($readini(gay.ini,gay,$nick)) { describe $chan you dont need to.. your already gay. | halt }
    if ($readini(gay.ini,notgay,$nick))  describe $chan what the hell? | auser gay $nick
    describe $chan whatever... loser
    writeini gay.ini gay $nick is gay
    remini gay.ini notgay $nick 
  }
  if ($1 == .gay) {
    if ($2 == $me) { .describe $chan of course im not gay... | halt }
    if ($readini(gay.ini,gay,$2)) { describe $chan wow... $2 is already gay... | halt }
    if ($readini(gay.ini,notgay,$2)) { describe $chan Some1 has already checked, $2 is not at all gay. | halt }
    var %gay = $rand(1,2)
    describe $chan well...
    if (%gay == 1) .timer 1 2 describe $chan I checked, and $2 is $rand(1,30) $+ % gay! 
    if (%gay == 2) .timer 1 2 describe $chan I checked, and $2 is $rand(30,100) $+ % gay! | writeini gay.ini gay $2 is gay.. | auser gay $nick
  }
  if ($1 == is * gay?) {
    if ($readini(gay.ini,gay,$2)) { describe $chan yup... $2 is 100% gay! | halt }
    if ($readini(gay.ini,notgay,$2)) { describe $chan nope $2 is not at all gay. | halt }
    if (!$readini(gay.ini,gay,$nick)) {
      var %gay = $rand(1,2)
      describe $chan not sure no1 has checked yet.. ill check for you... 
      if (%gay == 1) .timer 1 2 describe $chan I checked, and $2 is only $rand(1,30) $+ % gay! | writeini gay.ini notgay $2 isnt gay!
      if (%gay == 2) .timer 1 2 describe $chan I checked, and $2 is $rand(30,100) $+ % gay! | writeini gay.ini gay $2 is gay.. | auser gay $nick
    }
  }
}
on ^OWNER:TEXT:.removegay *:#: {
  if ($readini(gay.ini,notgay,$2)) { remini gay.ini notgay $2  }
  ruser gay $2
  ruser wasgay $2
  describe $chan done, and done.
}
on GAY:join:#: { describe $chan ROFL $nick is gay! | notice $nick type .dosumthingmanly to remove this. }
on WASGAY:join:#: { describe $chan $nick used to be gay.. lol }
 

Comments

  (20)  RSS
Korvin
Comments: 336
 
mIRC Snippet:  love script + gay script
Posted on Feb 17, 2007 6:05 pm
just made this tell me if there is any problems
Aaron
Comments: 104
 
mIRC Snippet:  love script + gay script
Posted on Feb 17, 2007 6:22 pm
you dont need all the | halt
Korvin
Comments: 336
 
mIRC Snippet:  love script + gay script
Posted on Feb 17, 2007 6:24 pm
well when i tested it i did, so im going to keep it on no offence.
Korvin
Comments: 336
 
mIRC Snippet:  love script + gay script
Posted on Feb 17, 2007 7:02 pm
tell me whats wrong with it -.-
F*U*R*B*Y*
Comments: 637
 
mIRC Snippet:  love script + gay script
Posted on Feb 17, 2007 8:26 pm
like Aaron said, you don't need all the halts......
A*1*T*E*A*M
Comments: 59
 
mIRC Snippet:  love script + gay script
Posted on Feb 18, 2007 7:21 am
you right F*U*R*B*Y ... he dont need all the halts
Lindrian
Comments: 761
 
mIRC Snippet:  love script + gay script
Posted on Feb 18, 2007 7:57 am
Imo, why not use var %gay = $rand(x,y)
and doubble check so u got all closing and opening brackets.
I found a few of them missing.
MAcMAD
Comments: 25
 
mIRC Snippet:  love script + gay script
Posted on Feb 18, 2007 12:20 pm
yeah you don't need all the halts
Korvin
Comments: 336
 
mIRC Snippet:  love script + gay script
Posted on Feb 18, 2007 1:36 pm
kk how about u tell me again... i dont want to edit it cause if i do ill break it..
Lindrian
Comments: 761
 
mIRC Snippet:  love script + gay script
Posted on Feb 18, 2007 1:45 pm
And I dont see any usa of an INI file in a script like this, since ur just calculating how gay / in lvoe someone is.

And at the last line, or the last part of the script, ur missing an opening bracket at the if statment, and ofcourse an closing bracket
fitzi01
Comments: 3
 
mIRC Snippet:  love script + gay script
Posted on Feb 28, 2007 11:41 am
It works fine and its cool but as the rest said no Need for all the halts :P
Korvin
Comments: 336
 
mIRC Snippet:  love script + gay script
Posted on Feb 28, 2007 10:58 pm
lol i know! im not taking out tho.
milton
Comments: 1
 
mIRC Snippet:  love script + gay script
Posted on Mar 4, 2007 8:21 am
i tryed it it doesnt work how do u get it to work
DaNzO-
Comments: 9
 
mIRC Snippet:  love script + gay script
Posted on Apr 14, 2007 8:23 pm
you dont need all the halts.

m4g3script
Comments: 23
 
mIRC Snippet:  love script + gay script
Posted on Jun 26, 2007 9:54 am
ok DaNzO- to save korvin some time and all the other people like korvin said he KNOWS he just donst want to take them out because he will break the script so read other comments b4 you post yours.
FLoriz
Comments: 5
 
mIRC Snippet:  love script + gay script
Posted on Aug 25, 2007 12:08 pm
you dont need all the halts :p
chocolate_pie
Comments: 12
 
mIRC Snippet:  love script + gay script
Posted on Sep 26, 2007 5:28 pm
I don't really like the fact that the "(nick) used to be gay...lol" stays on that person. It's just plain annoying now...
T_Nick_T
Comments: 7
 
mIRC Snippet:  love script + gay script
Posted on Oct 6, 2008 10:22 pm
Um this isn't working for me either
Fuzion
Comments: 47
 
mIRC Snippet:  love script + gay script
Posted on Oct 6, 2008 11:00 pm
you dont need all the halts :P
termz
Comments: 6
 
mIRC Snippet:  love script + gay script
Posted on Jul 25, 2009 4:32 pm
how do i make it work?

Commenting Options

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

  
Bottom