Skip to content
MSN

View Profiles In Groups Chat.

A TG007 community discussion started by CreepingDeth101™.

Discussion 9 posts
Page 1 of 1
Open
Topic #947 · 9 published posts · 737 views

I've seen it done a bunha times in several groups, now I want to add it. Specifically I'm looking for one that'll just open a new internet explorer window to it. I'm using guarddog so standard nicklist stuff doesn't work. Actually I just need to know what code I need to retrieve the profile URL, I can handle the rest. Thanks.

 

wizard.gif

look in addons section on here, i think the codes there

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

I did check before I posted this but none of the ones I've downloaded worked. All kindsa bugs.

alias viewprofile {
 if ($1) {
   echo -a * Viewing $1 $+ 's Profile...
   set %vp.nick $1
   prop $1 PUID
 }
}
raw 818:*:{
 if (%vp.nick == $2) && ($3 == PUID) {
   unset %vp.nick
   url -n http://members.msn.com/ $+ $4
 }
}
raw 819:*:{ unset %vp.nick }

 

usage: /viewprofile <nickname>

bfush.PNG

yes the code vex provided would be the best in this situation. GuarDDog v. 4.0 (the one being worked on now), will have all the things which i missed out on, like a kicker and a view profile button, etc.

alias viewprofile {
if ($1) {
  echo -a * Viewing $1 $+ 's Profile...
  set %vp.nick $1
  prop $1 PUID
}
}
raw 818:*:{
if (%vp.nick == $2) && ($3 == PUID) {
  unset %vp.nick
  url -n http://members.msn.com/ $+ $4
}
}
raw 819:*:{ unset %vp.nick }

- Provided By vexation...

 

Thanks for the code...heck I didn't even stop to think that raws would have something to do with it. I thought I'd be able to handle it on my own for making my code (with credits although I don't intend to release it lol_sign.gif ) I checked the raw numerics page and couldn't find these. Can someone explain what these two particular raws do? I can make the thing work once I get that down. Yeah I'm not great at scripting, I'm pretty sure this is easy stuff.

 

when you send the /PROP command, you're telling the server you want the PROPERTIES assigned to whatever you specify (channel or nickname)...

 

on MSN, the PUID is the profile id property assigned to users. it has nothing to do with the MSNProfile property they specify when they connect (so you can catch scripters if their 'profile type' doesnt match what they actually have on their profile). to retrieve the PUID property, you specify that's what you want by sending this command to the server: /PROP <nickname> PUID

 

the response to that command comes in the form of raws 818-819:

 

818 - the response itself (containing the information you need)

* there will be more than one 818 call if you specify the wildcard (*) instead of a specific property. specifying the wildcard will give you ALL the properties you're allowed to see

819 - lets you know the response is finished

bfush.PNG

thanks. lol that was swift. now if I can only get the lookup server connections to work I'll be set. thanks again.

Can Someone help me with an add-on for group room profile checker. I have a script for group room and I have the remote code but I not sure what has to be changed in vincula. Can someone help me please?

This is what I have so far:

 

on *:TEXT:!profile*:?: {

set %pflshw $true

set %tnick $nick

prop $2 PUID

}

on *:TEXT:!profile*:#: {

set %pflshw $true

set %tnick $nick

prop $2 PUID

}

raw 818:*: {

if ($3 == PUID) && (%pflshw) {

amsg $chan %tnick $msn.decode($2) $+ 's Profile link http://chat.msn.com/profile.msnw?epuid= $+ $4-

%msnc.stoppropend = $true

unset %pflshw

haltdef

}

}