Skip to content
TG007 community snippet #53

8ball

Simple 8ball snippet

By Jess Added Feb 9, 2011 Updated Aug 10, 2012
General IRC All snippets
mIRC script 11 lines
About this snippet

Overview

Simple 8ball snippet
Source code

mIRC script

11 lines · 527 characters
on *:TEXT:8ball*:#: {
  var %i $r(1,8)
  if (%i == 1) { msg # $nick Try back later. }
  elseif (%i == 2) { msg # $nick it is certain. }
  elseif (%i == 3) { msg # $nick hell no are you stupid. }
  elseif (%i == 4) { msg # $nick maybe, I do not know. }
  elseif (%i == 5) { msg # $nick do I look like a magic 8ball? }
  elseif (%i == 6) { msg # $nick Chances are ....... Yes. }
  elseif (%i == 7) { msg # $nick are you sure you want to know? }
  elseif (%i == 8) { msg # $nick why do you ask me such stupid things? }
}
Community

Comments

Want to join the discussion? Sign in to TG007.
DMASaturday, 29 April, 2023
What it do?