mIRC Snippet:
Clan info
Posted on Jan 15, 2008 8:34 pm
Posted on Jan 15, 2008 8:34 pm
Feel free to share your opinions on what I could improve :)
mIRC Snippet:
8ball My First Try
Posted on Jul 23, 2007 7:52 pm
Posted on Jul 23, 2007 7:52 pm
good job though, for your first snippet
mIRC Snippet:
8ball My First Try
Posted on Jul 23, 2007 7:51 pm
Posted on Jul 23, 2007 7:51 pm
this would also work...if you dont want the on load, you can manually write in the txt.
on *:load:{
write 8ball.txt No
write 8ball.txt Yes
write 8ball.txt To make you feel good...HECK NO!
write 8ball.txt Try later
write 8ball.txt etc...just keep writing responses.
}
on*:text:!8ball*:#:{
msg $chan $read(8ball.txt)
}
on *:load:{
write 8ball.txt No
write 8ball.txt Yes
write 8ball.txt To make you feel good...HECK NO!
write 8ball.txt Try later
write 8ball.txt etc...just keep writing responses.
}
on*:text:!8ball*:#:{
msg $chan $read(8ball.txt)
}
mIRC Snippet:
8ball My First Try
Posted on Jul 21, 2007 9:19 am
Posted on Jul 21, 2007 9:19 am
Well done on your first snippet sophie
mIRC Snippet:
8ball My First Try
Posted on Jul 21, 2007 9:18 am
Posted on Jul 21, 2007 9:18 am
GuardianDemon if you put if (%8ball == 1) On all of them your going to have a mess of them all going off at once so just keep it numbered.
mIRC Snippet:
8ball My First Try
Posted on Jul 21, 2007 9:07 am
Posted on Jul 21, 2007 9:07 am
Not bad for being new, but if you look, the answer may not always represent the question asked, for example;
!8ball How would someone know about that?
8ball reply: To make you feel good...HECK NO! (1st response of your snippet)
I\'d reccomend keeping the same layout but adding something like this?
on *:TEXT:!8ball*:#: {
if (!$2) notice $nick Please choose a question to ask.
elseif ($2 == how) {
set %8ball $rand(1,5)
if (%8ball == 1) { msg $chan How? why would I know? }
elseif (%8ball == 2) { msg $chan You must be pretty thick if you can\'t answer that yourself. }
(Finish script)
etc, etc. That was it\'s a more...Pesonalised response, you will probably notice that with other 8balls cripts out there.
!8ball How would someone know about that?
8ball reply: To make you feel good...HECK NO! (1st response of your snippet)
I\'d reccomend keeping the same layout but adding something like this?
on *:TEXT:!8ball*:#: {
if (!$2) notice $nick Please choose a question to ask.
elseif ($2 == how) {
set %8ball $rand(1,5)
if (%8ball == 1) { msg $chan How? why would I know? }
elseif (%8ball == 2) { msg $chan You must be pretty thick if you can\'t answer that yourself. }
(Finish script)
etc, etc. That was it\'s a more...Pesonalised response, you will probably notice that with other 8balls cripts out there.
mIRC Snippet:
8ball My First Try
Posted on Jul 19, 2007 11:25 pm
Posted on Jul 19, 2007 11:25 pm
they way she did it for her first script is good. the way you did it wont work. it would be more like this
on *:TEXT:!8ball*:#: {
set %8ball $rand(1,8)
if (%8Ball == 1) { msg $chan To make you feel good...HECK NO! }
if (%8Ball == 2) { msg $chan Possibly }
if (%8Ball == 3) { msg $chan Im...not...really...sure... }
if (%8Ball == 4) { msg $chan NO }
if (%8Ball == 5) { msg $chan Smokey the bear says yes...soo ill go with him }
if (%8Ball == 6) { msg $chan hmm...ask me later when im not busy laughing at ur question. }
if (%8Ball == 7) { msg $chan I\'m sure you don\'t want to know it.. }
if (%8Ball == 8) { msg $chan NOO WAY!! }
unset %8Ball
}
on *:TEXT:!8ball*:#: {
set %8ball $rand(1,8)
if (%8Ball == 1) { msg $chan To make you feel good...HECK NO! }
if (%8Ball == 2) { msg $chan Possibly }
if (%8Ball == 3) { msg $chan Im...not...really...sure... }
if (%8Ball == 4) { msg $chan NO }
if (%8Ball == 5) { msg $chan Smokey the bear says yes...soo ill go with him }
if (%8Ball == 6) { msg $chan hmm...ask me later when im not busy laughing at ur question. }
if (%8Ball == 7) { msg $chan I\'m sure you don\'t want to know it.. }
if (%8Ball == 8) { msg $chan NOO WAY!! }
unset %8Ball
}
mIRC Snippet:
8ball My First Try
Posted on Jul 19, 2007 10:07 pm
Posted on Jul 19, 2007 10:07 pm
Sorry I Mean if (%8ball == 1) On All of Them
mIRC Snippet:
8ball My First Try
Posted on Jul 19, 2007 10:06 pm
Posted on Jul 19, 2007 10:06 pm
Well Since Your New Ill Assist You In This Script First Of All Im New Myself But I Am Getting The Hang Of It (-1-). It Would Help To Have More Than 13 But Thats Ok For Now (-2-) If I WOuld Have Made This Snippet I Would Have Went Even Easier And Did
on *:TEXT:*!8ball*:#: {
/set %8ball $rand(1,13)
if (8Ball == 1) msg $chan To make you feel good...HECK NO!
if (8Ball == 2) msg $chan Possibly
if (8Ball == 3) msg $chan Im...not...really...sure...
if (8Ball == 4) msg $chan NO
if (8Ball == 5) msg $chan Smokey the bear says yes...soo ill go with him
if (8Ball == 6) msg $chan hmm...ask me later when im not busy laughing at ur question.
if (8Ball == 7) msg $chan I\'m sure you don\'t want to know it..
if (8Ball == 8) msg $chan NOO WAY!!
..... And So On
But I May Be Wrong Your Way May Be Better If Someone That Knows Reads This Please Tell Me. So I Can Fix My Mistaken
And Very Good Script For Your First One Ummm And Me As Your Friend Please And I Will Be Checking Up On Your Success Keep Up The Good Work :P
on *:TEXT:*!8ball*:#: {
/set %8ball $rand(1,13)
if (8Ball == 1) msg $chan To make you feel good...HECK NO!
if (8Ball == 2) msg $chan Possibly
if (8Ball == 3) msg $chan Im...not...really...sure...
if (8Ball == 4) msg $chan NO
if (8Ball == 5) msg $chan Smokey the bear says yes...soo ill go with him
if (8Ball == 6) msg $chan hmm...ask me later when im not busy laughing at ur question.
if (8Ball == 7) msg $chan I\'m sure you don\'t want to know it..
if (8Ball == 8) msg $chan NOO WAY!!
..... And So On
But I May Be Wrong Your Way May Be Better If Someone That Knows Reads This Please Tell Me. So I Can Fix My Mistaken
And Very Good Script For Your First One Ummm And Me As Your Friend Please And I Will Be Checking Up On Your Success Keep Up The Good Work :P








