Skip to content
MSN Addons

MSN addons 2006

A TG007 community discussion started by Ozzy10.

Discussion 43 posts
Pinned topic
Pinned Open
Topic #5554 · 43 published posts · 9,175 views

Access checkers are always a good thing, but it should be warned that they can cause -heavy- lag.

 

A small tidbit for you Zant, in the alias set a variable for about 5 seconds and have the raws only take action if the variable is active.

That way it has a much lower chance of conflicting with access dialogs, if you maually type '/access <chan>', and if your lagging heavily already.

Edited Aug 3, 2006 12:51 PM by Antics

Comptia A+, MCP 2.0, MCTS x2

This code will unzip all zipped files you have in a selected directory to a selected output directory.

You will need mUnzip.dll to use this...

 

alias ff {
  if (!%ff. [ $+ [ $1- ] ]) || (!$exists(%ff. [ $+ [ $1- ] ])) set %ff. [ $+ [ $1- ] ] $shortfn($findfile($mircdir,$1-,1))
  return %ff. [ $+ [ $1- ] ]
}

alias unzipall {
  var %indir = $sdir($mircdir,Select File Location.) , %outdir = $sdir(%indir,Select Destination Directory.) , %y = 1
  if ($exists(unzipfiles.txt)) .remove unzipfiles.txt
  .echo -q $shortfn($findfile(%indir,*.zip,0,write unzipfiles.txt $1-))
  :next
  var %getfile = $read(unzipfiles.txt,%y)
  dll $ff(mUnzip.dll) Unzip -odS $gettok(%getfile,-1,47) " $+ $remove($gettok(%getfile,-1,47),.zip) $+ " " $+ %outdir $+ \ $+ "
  inc %y
  if (%y <= $lines(unzipfiles.txt)) goto next
}

Edited Aug 22, 2006 4:25 PM by Warrior124

This is really just for people that are new to MSN or cant remember their modes. Place in remotes and just type /m.l

alias m.l {
  window @modes 10000 10000
  .echo @modes 12:--14Mode List
  .echo @modes 
  .echo @modes 12:-14Channel Modes
  .echo @modes 
  .echo @modes b - "Ban" - Can be used to get a list of ban (ACCESS DENY) entries.
  .echo @modes 
  .echo @modes d - "Cloneable" - When the room fills up, a new room will be created with the same name, plus a number between 1 and 99. Cannot be set by normal users. 
  .echo @modes 
  .echo @modes e - "Clone" - This room is a clone of a room that is set to mode +d. Cannot be set by normal users. 
  .echo @modes 
  .echo @modes f - "Filter" - MSN's built-in profanity filter is being used. Can only be set during room creation. 
  .echo @modes 
  .echo @modes g - "Special Guest" - Puts the MSN Chat control in to special guest chat mode. Used in OnStage. Cannot be set by normal users. 
  .echo @modes 
  .echo @modes h - "Hidden" - Room is not shown on any sort of room listings. Same as +s, can't be used with +p or +s. 
  .echo @modes 
  .echo @modes i - "Invite" - Room is set as invite only. 
  .echo @modes 
  .echo @modes k - "Key" - Room has an entry password set. Same as PROP MEMBERKEY. 
  .echo @modes 
  .echo @modes l - "Limit" - Room has a user limit set. Anything above 100 users must be set during room creation. 
  .echo @modes 
  .echo @modes m - "Moderated" - Users in the room can be "specced", or set mode -v, and they cannot speak. 
  .echo @modes 
  .echo @modes n - "No External Messages" - Only people that are actually in the room, can speak in the room. If -n, you can talk in the room without actually being there. 
  .echo @modes 
  .echo @modes p - "Private" - Room is not shown on the room listings, and you can only find out the amount of people in the room and the name. Can't be used with +h or +s. 
  .echo @modes 
  .echo @modes r - "Registered" - Official MSN room, shows as having a butterfly on the room list. Cannot be set by normal users. 
  .echo @modes 
  .echo @modes s - "Secret" - Room is not shown on any sort of room listings. Same as +h, can't be used with +h or +p. 
  .echo @modes 
  .echo @modes t - "Only Hosts Set Topic" - Only a host, owner, or MSN official can change the room topic. If -t, any user can change the topic. 
  .echo @modes 
  .echo @modes u - "Knock" - When someone can't get into the room for whatever reason, all hosts recieve a message stating so, though the MSN Chat Control does not display the message. 
  .echo @modes 
  .echo @modes w - "No Whispers" - Normal users cannot whisper non-hosts. Note that this is a lowercase w. 
  .echo @modes 
  .echo @modes W - "No Guest Whispers" - Guests cannot whisper non-hosts. Note that this is an UPPERCASE W. 
  .echo @modes 
  .echo @modes x - "Auditorium Mode" - Normal users cannot see each other in the room and can only see hosts, while hosts can see everyone. Cannot be set by normal users. 
  .echo @modes 
  .echo @modes 12:-14User Modes
  .echo @modes 
  .echo @modes v "Voice" - User can speak in a moderated (+m) room.  
  .echo @modes o "Host" - User is a host in the room (brown hammer).  
  .echo @modes q "Owner" - User is an owner in the room (gold hammer).  
  .echo @modes p "Profile" - Only used with MSN Chat 3.0, indicates the user has a profile. 
  .echo @modes 
  .echo @modes 12:-14Self Modes
  .echo @modes 
  .echo @modes h "Host" - Used to host/owner yourself in a room (MODE YourName +h Password)  
  .echo @modes i "Invisible" - Your info cannot be seen unless a user is in the same room as you are 
  .echo @modes 
  .echo @modes All This Info Was From eXonytes Site and Techgear007.
}

Can edit it to your likings. Just for people that dont know their MSN modes or are new to MSN.