Jump to content

Moschino Has No Channel Lister


JOhnson

Recommended Posts

it's because buzzen.net no longer redirects.. you need to change the buzzen.net to chat.buzzen.com

 

Open up GlobalSettings file in the data folder..

 

look for CHANLINK=www.buzzen.net

 

change to

 

CHANLINK=chat.buzzen.com

 

save/close/restart script.

Link to comment
Share on other sites

To fix the open profile edit this alias to the below code

alias Open_Profile {
  var %Nick = $$1, %PID = $$2
  url http://chat.buzzen.com/profile.aspx?pid= $+ $$2
}
Link to comment
Share on other sites

  • 4 weeks later...


Having problems getting profiles in another script ive changed to chat.buzzen.com but then it doesnt work at all all i get is a blank window , any suggestions?





alias profile {

var %i $3

if (!%pid) { if (!%i) { PID $$2 } | inc %i | if (%i < 5) .timer 1 1 profile $$1 $$2 %i | return }

sockclose prof

sockopen prof buzzen.com 80

}

on *:sockopen:prof*:{

if ($sockerr) { sockclose $sockname | halt }

sockwrite -n $sockname GET /chat/redirect.php?mid= $+ %pid HTTP/1.1

sockwrite -n $sockname HOST: www.buzzen.com

sockwrite -n $sockname $str($crlf,2)

unset %pid

}

on *:sockread:prof*: {

if ($sockerr > 0) return

var %r | sockread %r

if (Location: isin %r) { webpage Profile chat.buzzen.com $+ $mid(%r,11-) | sockclose prof }

}



Link to comment
Share on other sites

It's best not to use a socket to get profile to show. I would only use a socket to get information from a profile.

alias profile {
  var %i $3
  if (!%pid) { if (!%i) { PID $$2 } | inc %i | if (%i < 5) .timer 1 1 profile $$1 $$2 %i | return }
  url http://chat.buzzen.com/profile.aspx?pid= $+ %pid
unset %pid
}

I really don't know what some of the above code is for but all you need to go to a profile is the user PID. You can try the above code.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...