did you leave the following section in the dchpp.xml config?
Code: Select all
<RegistrationServers>
<Server>vandel405.dynip.com:2501</Server>
<Server>dreamland.gotdns.org:2501</Server>
<Server>dc-dreamland.dhs.org:2501</Server>
</RegistrationServers>I have now taken a sample neo modus hublist every half hour since 0400 this morning. at that time I added a script to allow the vandel bot to get a nicklist without having to log in properly (i.e. sending a $MyINFO).
the hub list seems to update every hour (a little bit less) or so.
the piece of lua that allows the bot to get it's info is:
Code: Select all
function dchpp.clientLine( client, data )
-- a'ight.. we found vandel's bot (12.233.58.90)
if client:getIp() == "12.233.58.90" then
--dchpp.hubMessage( data, "VandelBot" )
if data == "$GetNickList|" then
local nicklist, oplist, tmplist
local function enumnicks( client )
tmplist = tmplist..client:getNick().."$$"
end
tmplist = "" ; dchpp.foreach( enumnicks, 0 ) ; nicklist = tmplist
tmplist = "" ; dchpp.foreach( enumnicks, -1 ) ; oplist = tmplist
client:send( "$NickList "..nicklist.."|$OpList "..oplist.."|" )
end
end
endthree questions which can be summed up to one answer, which I would like from all of you:
1) did you leave the vandel405 part in de dchpp.xml?
2) did you activate registration (<RegisterWithServers type="int">1</RegisterWithServers>) and supply a correct hostname or ip in the settings (<ServerIp type="string">your_hostname_or_ip_goes_here_WITHOUT_:port</ServerIp>)?
3) did you block the vandel405 ip either by not including it in the ipallow list, or adding it to the ipban list?
all 3 questions yes: write yes, otherwise no
[edit: hmz.. I should've reversed the question in (3), luckily BSOD answered correctly]
[edit: changed the title.. replies are not needed anymore]