Basic conceptsDetails of a commandEnergyMech commands are often described in a terse `usage' line. The format of this line is quite simple, describing the name of the command, its required arguments and its optional arguments. In the EnergyMech documentation, command names are written in all upper case, its required arguments are enclosed in less-than ( < ) and greater-than ( > ) signs and its optional arguments enclosed in brackets ( [ ] ). The pipe character ( | ) is used where there are more than one valid argument or list of arguments. Consecutive dots ( ... ) are used where any number of arguments may be used. Literal arguments are typically written in all upper case aswell. Lets examine an example command description; Usage: SPY <channel|STATUS|MESSAGE|RAWIRC> [channel|">" filename]Translated into to plain english this would be read something like; Defining a featureWhen this document talks about defining a feature it usually means that you have to manually edit a `#define' in the config.h file before you compile your EnergyMech. Defines are used in the EnergyMech source code to include or exclude the features that you select. Since defining affects what code is actually compiled into the EnergyMech binary, you have to recompile your EnergyMech if you notice that you need a feature that you havent already included or forgot to include. The configure script will suggest what features to include or exclude when you run it and will then create the config.h file from a template (config.h.in). There are defines in the config.h file that aren't mentioned in the configure script because they are obscure, highly technical (such as ASSUME_SOCKOPTS) or extremely dangerous (such as PLEASE_HACK_MY_SHELL). Note that if you run configure again, any manual changes you have made to the config.h file will be overwritten by the values in the template (config.h.in) and your selections made in the configure script. Conclusions:
TerminologyTerms used
SignalsSignals are handled by the first bot to be added to a process. The SIGHUP and SIGUSR1 procedures will only affect the first bot that is added. No other bots will be affected.
UserlistAssociated commands:
Command AliasesAssociated commands:
TCL ScriptsAssociated commands:
Note that the TCL command is only available if you manually define PLEASE_HACK_MY_SHELL in the config.h file before compiling. The DCC filesendTo use this feature you need to put the files you wish to transfer in a "public" subdirectory. If you for example run the EnergyMech from the directory "/home/luser/emech", you need to place the files you wish to make available in a directory called "/home/luser/emech/public". On the IRC side, a user can simply type ".send <filename>" for the EnergyMech to send the file to them via DCC. Depending on how you set the command level for the 'send' command, it can be made available to the public. Change the command level to 0 (zero) to make it available to any user. The default command level for the 'send' command is 10 (ten) which would require users to be in the userlist in order to use the command. The IRC ProxyTo enable the IRC Proxy, you need to add one line to the mech.conf file; set bncport <portnum>portnum is the port that you want it to listen for connections on. Once its listening (you can check this in debug mode), you connect with your IRC client to the port and follow the on-screen prompts... You will be prompted for a handle and a password which needs to be in the userlist. The user record also needs the special +BNC flag to be allowed access to the IRC proxy. To set this flag for a user record, use the command; user <handle> +bncThe final step is to enter which server to connect to. You can also specify a port and a virtual host if there is any available. The line could look something like; irc.chatserver.net 6667 my.vanity.domain.comBoth the port and virtual host is optional. If you dont specify a port, it will connect on port 6667. If no virtual host is specified, it will connect from the default interface of the shell box, which is usually what you go with. You should probably ask your shell administrator for permission before running an IRC proxy. Shell admins typically charge for 2 background processes, one process for a bot and one process for an IRC proxy. The E3 combines these two elements into the same process and some admins could probably be a bit ticked off (most admins are cheap, they feel like you're cheating them out of their money when you squeeze more features into a single background process...). Copyright © 2000-2005 Proton, All rights reserved.
Last edited August 30th, 2005. |