Assuming you have go set up (http://golang.org/),
git clone git://github.com/vermi/rbot.git
cd rbot
git submodule init
git submodule update
gomake
rbot.conf and auth.conf will be copied. Configure those. bans.list will also be touched; it requires no configuration, but the bot won't run without it. Afterwards, run the bot with the following command:
./rbot
If you're going to be running the bot for extended periods of time, we recommended using the nohup
command.
nohup ./rbot &
This will keep the bot from stopping if you log off. By default, all output will be logged to ./nohup.out
As a side note, cmd-ap.go is specific to #anime-planet.com on Rizon; it's not necessary for any normal functions of the bot, so you can remove it if you want. Just be sure to remove it from Makefile and handler.go as well.
Access is configured in auth.conf, is per-channel, based on ident and host; nick is ignored. The owner is configured per server and other access is configured per channel. Owners can use any commands. Ignores are checked before access.
The following is a description of the commands enabled by each flag:
a
: add remove ignore unignoreo
: op halfop deop dehalfop kick|k ban|b unban|u kbh
: halfop|hop dehalfop|dehop kick|k ban|b unban|u kb (hop and dehop can only be used on yourself and you cannot kick or kb people with o or h)v
: voice, devoicet
: topic appendtopics
: sayIn addition, a user must have at least one flag to use flags
and list
(so users without access can't spam the bot).
All commands are prefixed with the trigger configured in rbot.conf.
Access related commands:
flags raylu
: get's raylu's flagsflags
: get's your flagsadd raylu t
: gives raylu the t flagremove raylu t
: removes the t flag from rayluremove raylu
: removes all of raylu's flagsignore raylu
: ignores all messages from raylu's host on this networkunignore raylu
: unignore raylulist
: lists all users and their accesslist raylu
: searches the access list for rayluAdmin commands:
nick john
: changes the bot's nick to johnsay text
: says text to the channelbans
: Lists the ban-log for the current channel, if it exists.The ban-log may need to be zeroed out manually from time to time to reduce clutter.
Op commands:
halfop|hop
: halfop yourselfhalfop|hop raylu john
: halfop raylu and johnop
: op yourselfop raylu john
: op raylu and johndeop
: deop yourselfdeop raylu john
: deop raylu and johndehalfop
: dehalfop yourselfdehalfop|dehop raylu john
: dehalfop raylu and johnvoice
: voice yourselfvoice raylu john
: voice raylu and johndevoice
: devoice yourselfdevoice raylu john
: devoice raylu and johnkick|k raylu
: kick rayluban|b raylu john!*@*
: ban raylu by hostname and john by nickunban|u raylu john!*@*
: unban raylu by hostname and john by nickkb raylu
: kick raylu, then ban him by hostnametopic text
: sets the topic and basetopic to texttopic
: gets the current basetopicappendtopic text
: if the topic does not starts with basetopic, sets the basetopic to the current topic. Makes the topic basetopic+text.part
: leaves the channelGoogle API commands:
tr text
: detect the language of texttr en|ja text
: translate text into Japaneseroman text
: translate text into romaji (see rbot.conf.example)calc 1 usd in yen
: convert 1 USD to Japanese yenHelp commands:
help
: displays a list of possible help topicshelp topic
: displays help on topic, as long as it's in the list of possible topics.Help topics and content are manually entered in help.conf. You probably won't need to change this, unless you add commands to the bot yourself.
Imageboard Search Commands:
booru tag [tag2 tag3 ...]
: search the boorus for images containing any of the listed tags.
+tag
: marks a tag as mandatory-tag
: marks a tag as undesiredrating:[s,q,e]
: looks for images rated s
afe, q
uestionable, or e
xplicitloli
: returns a random loli imagesloli
: returns a random work-safe loli imagefuta
: returns a random futa imageAnime-planet.com Commands:
apnick vermi
: records my site username as vermi (useful if I change nicks a lot)mynick
: checks if I've set my site username, and tells me what it's set asprofile
: if I've set apnick, uses that value to return a link to my profile; otherwise, uses my current nickprofile vermi
: displays a link to vermi's profile; checks to see if a user named 'vermi' exists, first.mymanga
and myanime
: work the same as profile
, but return links to Manga and Anime lists, respectivelyCommands that don't require access behave the same when sent to a channel the bot is in and when whispered to the bot.
Commands that require access are listed above as if they were sent to a channel. When sent as a whisper, the first argument must be a channel name.
The bot will accept invites from the owner to any channel and only the owner can use part
.
This project was forked from jessta/goirc which is in turn forked from fluffle/goirc. Both of those projects are focused on developing the goirc framework whereas this is focused on developing a bot.