Skip to content
MSN

@join command

A TG007 community discussion started by Molson™.

Discussion 5 posts
Page 1 of 1
Open
Topic #1507 · 5 published posts · 605 views

I'm looking for @join command. so When I do that my script will join the room I type like this @join testing125 and it joins the room.

Custom Computer

AMD Athlon 64 x2 Dual Core 5200+

Asus M2N-SLI MOB

2GB DDR2 @ 800mhz

160GB Hard Drive

NVidia GeForce 8400GS 256

It depends on what connection you use. If you have Vincula the command will be

 

alias @join { msn $replace($2-,$chr(32),\b) }

 

If you are using ClearMSN it would be

 

alias @join { join $chr(37) $+ $chr(35) $+ $replace($2-,$chr(32),\b) }

on *:text:@join*:#:{
 set -u60 %joining $nick $chan
 msg $chan Now Joining $2 $+ , $nick
 join $2
}
on *:join:#:{
 if ($nick == $me) && (%joining) {
   tokenize 32 %joining
   sockwrite -n msn.server* PRIVMSG $2 :I have Joined $chan $+ , $1
   unset %joining
 }
}

 

should work in vincula and clearmsn.

bfush.PNG

dialog join {
title "Joining Group Chatroom"
size -1 -1 129 56
option dbu
box "Join Room", 1, 1 21 127 20
edit "", 4, 4 28 121 10, autohs
button "Join Now", 2, 26 43 37 12, ok
button "Cancel", 6, 64 43 37 12, cancel
box "Msn User Role", 3, 1 1 127 20
combo 5, 4 8 121 22, size edit drop
}


on *:DIALOG:join:init:*: {
did -a $dname 5 %msnpp.userrole
}

on *:dialog:join:sclick:2:{
joins -c G_ $+ $did($dname,4).text 
set %msnpp.userrole $did($dname,5).text 
set %proprole on
}

raw 913:*: {
if (%proprole == on) {
  prop $ ROLE %msnpp.userrole
  hop
  unset %proprole
}
}

 

 

Code by Devil Code ex (MSN Addons section)

Thanks for the help guys, works great.

Custom Computer

AMD Athlon 64 x2 Dual Core 5200+

Asus M2N-SLI MOB

2GB DDR2 @ 800mhz

160GB Hard Drive

NVidia GeForce 8400GS 256