Denora:Howtos
From AnopeWiki
Contents |
Compiling and installing modules
Instructions for *nix
- Place the source file of the module in
src/modules - In the Denora root (outside src/) type
make modules - Issue the command
make install - On IRC, type
/msg StatServ MODLOAD module-name - Edit your denora.conf and at the bottom of the modules block, add a line like this:
delayed modulename
Instructions for win32
If you already have the windows binary of the module (.dll file):
- Place the dll in
data/modules - On IRC, type
/msg StatServ MODLOAD module-name - Add the module to the denora configuration file for automatic loading on startup
If you need to compile the module from source:
- Place the source file in
src/modules - Edit
src/modules/makefile.inc.win32and add the source filename to the SRCS line - In
src/modules, issue the commandnmake -f Makefile.win32 - Then issue the command
nmake -f Makefile.win32 install - On IRC, type
/msg StatServ MODLOAD module-name - Add the module to the denora configuration file for automatic loading on startup

