2013-09-02 22:22
dominikh changed the topic of #cinch to: The IRC Framework | Latest version: Cinch 2.0.9
00:41
Spami has quit [Ping timeout: 276 seconds]
01:46
_whitelogger has joined #cinch
01:48
space has joined #cinch
03:50
Spami has joined #cinch
06:14
Spami has quit [Quit: This computer has gone to sleep]
07:12
kx has quit [Ping timeout: 240 seconds]
07:16
kx has joined #cinch
09:32
kludge` has quit [Ping timeout: 264 seconds]
09:35
kludge` has joined #cinch
10:01
postmodern has quit [Quit: Leaving]
10:40
kludge` has quit [Quit: leaving]
10:41
kludge` has joined #cinch
10:42
rickmasta has quit [Quit: Leaving...]
10:43
rickmasta has joined #cinch
10:43
rickmasta has quit [Client Quit]
10:56
space has quit [Remote host closed the connection]
12:03
rickmasta has joined #cinch
13:15
rickmasta has quit [Quit: Leaving...]
13:23
rickmasta has joined #cinch
14:33
rickmasta has quit [Quit: Leaving...]
14:53
Spami has joined #cinch
15:08
<
Apathetic >
how does one unit test a cinch plugin?
15:16
rickmasta has joined #cinch
15:21
Spami has quit [Quit: This computer has gone to sleep]
15:31
rickmasta has quit [Quit: Leaving...]
15:31
rickmasta has joined #cinch
15:31
rickmasta has quit [Read error: Connection reset by peer]
15:32
rickmasta has joined #cinch
15:32
rickmasta has quit [Read error: Connection reset by peer]
15:32
rickmasta has joined #cinch
15:32
rickmasta has quit [Read error: Connection reset by peer]
15:33
rickmasta has joined #cinch
16:20
Spami has joined #cinch
17:29
rickmasta has quit [Quit: Leaving...]
18:11
postmodern has joined #cinch
18:30
UbuPhillup has left #cinch ["WeeChat 0.4.1"]
18:34
space has joined #cinch
19:02
rickmasta has joined #cinch
19:38
space has quit [Remote host closed the connection]
21:52
UberDragon has quit [Ping timeout: 245 seconds]
23:11
UberDragon has joined #cinch
23:34
<
UberDragon >
I'm working on making a flood protection script.. is there built in commands to ignore a nick or mask that I haven't found yet?
23:35
<
dominikh >
plugins can have filters. no global filters, but that can easily be engineered with plugin filters and some state in the bot
23:35
<
dominikh >
I can show you how I implemented ACLs, flood protection would be essentially the same mechanic
23:35
<
UberDragon >
awesome
23:37
<
dominikh >
via `shared`, which is a hash stored in bot that's accessed by all plugins, you can have configuration for it. in my case the entire ACL system (defined on line 46); in your case it might be a plain list of nicks to ignore
23:40
<
UberDragon >
hmm yeah makes sense. I'm using hash to store my seen data.. thanks.. I'll dig around in this