Skip to content
MSN Addons Archive

msn addons august

A TG007 community discussion started by Ozzy10.

Closed discussion 3 posts
Page 1 of 1
Closed
Topic #1070 · 3 published posts · 1,519 views

Please feel free to post msn addons here, but also remember that some people dont know too much about msn and are learning.

Please make sure you post full code for your addon and that you add credits for other peoples work.

My code does NOT have bugs. It just develops random features.

Here is a number game addon I created. I posted this in the July section yesterday, but decided to delete it, and move it here to the august section. Here is the code. smile.gif

 

alias numberguess { set %guess $rand(1, $+ %numberguess $+ ) | msg $chan I'm thinking of a number between 1 and %numberguess $+ . Which number am I thinking of? }
menu menubar {
-
Number Guess
.On { set %guessetup on | set %numberguess $?="Enter Ending Number" | timer $+ %numberguess 1 5 numberguess }
.Off { unset %guessetup | unset %numberguess }  
-
}
on ^*:TEXT:*:#:{
if (%guessetup == on) && ($1 == %guess) {
msg $chan Congradulations, $nick $+ . The correct answer was %guess
numberguess
}
}

some ctcp kicks i wrote:

Need to be modified to work for your scripts though!

.. not too hard lol_sign.gif

 

CTCP *:*:*: {

if (finger isin $1) {

if (%fingerstatus == 1) { .ctcpreply $nick FINGER %fingerreply }

if (%fingerkick == 1) && (%fingerstatus == 1) { .kick $active $nick No Ctcp thanks tongue.gif }

}

if (version isin $1) {

if (%versionstatus == 1) { .ctcpreply $nick VERSION %versionreply }

if (%versionkick == 1) && (%versionkick == 1) { .kick $active $nick No Ctcp thanks tongue.gif }

}

if (time isin $1) {

if (%timestatus == 1) { .ctcpreply $nick TIME %timereply }

if (%timekick == 1) && (%timestatus == 1) { .kick $active $nick No Ctcp thanks tongue.gif }

}

if (vincula isin $1) {

if (%vincstatus == 1) { .ctcpreply $nick VERSION %vincreply }

if (%vinculakick == 1) && (%vincstatus == 1) { .kick $active $nick No Ctcp thanks tongue.gif }

}

if (whoareyou isin $1) {

if (%pr0status == 1) { .ctcpreply $nick VERSION %pr0reply }

if (%pr0kick == 1) && (%pr0status == 1) { .kick $active $nick LoL, Im Absorbx's script tongue.gif }

}

}

 

Edited Aug 18, 2004 12:47 AM by Absorbx_o

"Be more concerned with your character than your reputation

because your character is who you really are while your reputation is merely what others think of you."

 

DesolateMx 8.0