Zirak
Zirak
Will do. A couple of possible changes: One being that if it's not recognised as a command argument it'll try fetching a quote (as you also suggested), the other that...
What part of the bot violates web security?
``` javascript copy( 'var o=' + JSON.stringify(localStorage) + '; Object.keys(o).forEach(function (k) { if (k.indexOf("bot_") === 0) localStorage[k] = o[k]; });' ) ``` That creates the ready-to-run dump of the memory....
We kinda went into the semi-moderator stage when we included muting.
Moving messages only requires room-owner status on the subject room (moving from 17 to 11 means you must be an owner of 17), nothing _too_ fancy. It'd be good to...
I don't get it. What is this? Why is this? What does it do? Why did you add another userscript?
Interesting. Were you able to figure out why this happens? Is it a new thing? I create another socket sometimes myself in the chat and it never mysteriously hung up...
Accepting a function sounds silly, why not just do what commands already do (which is pretty much what shell does): Accept `$0`, `$1` and so forth? ``` /learnEval foobar 'You...
@Shmiddty Of course the user doesn't have to supply the code...the user input is _never_ part of the code, it's data passed to the code, just a variable. ``` /learnEval...
@ci11 That creates a bit of weird dynamics and extra magic. @shea-sollars That doesn't simplify things, it complicates them. It means all learned commands are now null and void, that...