Skip to content
General Chat Talk

Moschino Has No Channel Lister

A TG007 community discussion started by JOhnson.

Discussion 6 posts
Page 1 of 1
Open
Topic #16198 · 6 published posts · 1,424 views

:oops: wonder if anyone knows that since the buzzen updates Moschino has no channel lister

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.

Edited Aug 21, 2015 11:20 AM by err0r

Get information about ircWx here

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
}

Get information about ircWx here



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 }

}



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.

Get information about ircWx here

:clap: Thanks error it works fine, much appreciated :clap: