Top

!8ball script

Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  May 11, 2008
Last Updated  May 11, 2008
Tags  8ball  random 

Introduction

I'm new to scripting and I'd like to present my first script ever: The !8ball script.
I know there are a lot of 8ball scripts on Hawkee, but I need to make a start somewhere, do I?
Have fun grabbing the script.

Grab the Code

Comments

  (8)  RSS
criminal
Comments: 127
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 12:52 am
You can also just use a txt file, and $read, so all the if statements arent needed anymore.
And add timers :)
napa182
Comments: 735
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 12:55 am
well it looks like you just took dull's 8ball script and aadded color to it thats all =/
napa182
Comments: 735
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 1:05 am
you could have done it a bit diff
Code:
on *:TEXT:!8ball*:#:{
  describe # 14,1s15,1ilently 14,1s15,1hakes 14,1u15,1p 14,1t15,1he 14,1 $chr(56) $+ 15,1ball...
  var %8ball 14,1Y15,1es.|14,1N15,1o.|14,1A15,1lways!|14,1N15,1ever!|14,1A15,1bsolutely!|14,1O15,1fcourse not.|14,1H15,1ELL YEAH!!|14,1H15,1ELL NO!!
  .timer 1 1 msg # $gettok(%8ball,$r(1,8),124)
}

Soular
Comments: 5
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 2:12 am
Dude who's Dull.
EL
Comments: 804
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 4:00 am
Umm the dude who posted a code rite before you ..look on the main page next to your name.And he's referring to this snippet http://www.hawkee.com/snippet/4336/ .

Code:

on *:TEXT:-8ball-*:#:{
  /set %a8b $rand(1,8)
  if (%a8b == 1) { describe # 0,1shakes up the ball... | msg # 1,0Yes }
  if (%a8b == 2) { describe # 0,1shakes up the ball... | msg # 1,0No }
  if (%a8b == 3) { describe # 0,1shakes up the ball... | msg # 1,0Absolutely }
  if (%a8b == 4) { describe # 0,1shakes up the ball... | msg # 1,0Never }
  if (%a8b == 5) { describe # 0,1shakes up the ball... | msg # 1,0Yep }
  if (%a8b == 6) { describe # 0,1shakes up the ball... | msg # 1,0Nope }
  if (%a8b == 7) { describe # 0,1shakes up the ball... | msg # 1,0Ofcourse }
  if (%a8b == 8) { describe # 0,1shakes up the ball... | msg # 1,0Nah }
}


Similar no?
napa182
Comments: 735
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 4:13 am
Dan i was talking about the 8ball he has in his DefianceBot http://www.hawkee.com/snippet/4410/
this is the one from that
Code:
on *:TEXT:`8ball*:#:{
  { describe # shakes up the 8ball... }
  /set %8ball $rand(1,8)
  if (%8ball == 1) { msg # Yes. }
  if (%8ball == 2) { msg # No. }
  if (%8ball == 3) { msg # Always! }
  if (%8ball == 4) { msg # Never! }
  if (%8ball == 5) { msg # Absolutely! }
  if (%8ball == 6) { msg # Ofcourse not. }
  if (%8ball == 7) { msg # HELL YEAH!! }
  if (%8ball == 8) { msg # HELL NO!! }
}

EL
Comments: 804
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 4:15 am
Oh lol well close nuff i aint looked at that bot yet i was busy flooding eugene of my server :P
EL
Comments: 804
 
mIRC Snippet:  !8ball script
Posted on May 12, 2008 4:16 am
P.S: Don't flood kids its bad i was ummm testing mode flood protections >D

Please Register or Login to start posting comments.
Bottom