https://github.com/mischief/luc
lua irc bot
https://github.com/mischief/luc
Last synced: about 1 year ago
JSON representation
lua irc bot
- Host: GitHub
- URL: https://github.com/mischief/luc
- Owner: mischief
- Created: 2012-06-15T20:36:53.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-19T19:33:28.000Z (over 13 years ago)
- Last Synced: 2025-02-08T15:47:07.009Z (over 1 year ago)
- Language: Lua
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
luc: lua irc bot
================
check me out
------------
git clone git://github.com/mischief/luc.git
fetch my submodules
-------------------
cd luc
git submodule init
git submodule update
configure me
------------
write a config.lua script like this
local info = {
nick = "luc",
username = "luc",
realname = "luc",
server = "chat.freenode.net",
port = "7000",
secure = true,
channels = { "#noisebridge" },
char = ".",
version = "luc - https://github.com/mischief/luc"
}
return info
then run me with
lua luc.lua config.lua
enjoy.
------