Page 1 of 1

Need help with cloak keys

Posted: Mon Dec 04, 2006 5:11 pm
by N4rK07IX
I just dl unrealircd 3.2.5 and im having hard time generating the cloak keys. I haven't messed with unreal in along time so i'd appriciate if anyone will tell me how to load the loadmodule\cloak.dll. I'm on windows.

The error i get is this :
* Loading IRCd configuration ..
[error] ERROR: No cloaking module loaded. (hint: you probably want to load modules\cloak.dll)
Any help would be appriciated.

Thanks in advance, tom.

Posted: Mon Dec 04, 2006 7:01 pm
by SpaceDoG
Open your unrealircd.conf and make sure that load modules\cloak.dll is not commented with \\, /* */, or #.

Posted: Mon Dec 04, 2006 7:09 pm
by Grunt
SpaceDoG wrote:commented with \\
// :P

Posted: Mon Dec 04, 2006 7:18 pm
by SpaceDoG
bah I can't remember all the different commenting stuff :-P I usually use /* */ and #

Posted: Mon Dec 04, 2006 7:48 pm
by N4rK07IX
Sorry im dumb, this is how it looks like afte uncommentin:
/* FOR *NIX, uncomment the following 2lines: */
//loadmodule "src/modules/commands.so";
//loadmodule "src/modules/cloak.so";

/* FOR Windows, uncomment the following 2 lines: */
//loadmodule "modules commands.dll";
//loadmodule "modules cloak.dll";
Is this how it should look like?

Posted: Mon Dec 04, 2006 8:45 pm
by SpaceDoG

Code: Select all

/* FOR Windows, uncomment the following 2 lines: */
//loadmodule "modules commands.dll";
//loadmodule "modules cloak.dll";
remove the // before loadmodule and it should work.

Posted: Mon Dec 04, 2006 9:05 pm
by N4rK07IX
Heh. Something else popped up.
I fixed all that
/* FOR Windows, uncomment the following 2 lines: */
loadmodule "modules commands.dll";
loadmodule "modules cloak.dll";
Now i get:
* Loading IRCd configuration ..
* unrealircd.conf:41: loadmodule modules commands.dll: failed to load
[error] IRCd configuration failed to load

Posted: Mon Dec 04, 2006 9:56 pm
by Grunt
* Loading IRCd configuration ..
* unrealircd.conf:41: loadmodule modules commands.dll: failed to load
[error] IRCd configuration failed to load
It should look like:

Code: Select all

/* FOR Windows, uncomment the following 2 lines: */
loadmodule "modules/commands.dll";
loadmodule "modules/cloak.dll";

Posted: Mon Dec 04, 2006 10:04 pm
by N4rK07IX
Thanks for putting up with me, I finally got it.

Cheers.