From 03929dac2a29664878d2c971648a4fe1fb698462 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 22:19:02 +0200 Subject: Adding upstream version 20231031. Signed-off-by: Daniel Baumann --- scripts/alame.pl | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 scripts/alame.pl (limited to 'scripts/alame.pl') diff --git a/scripts/alame.pl b/scripts/alame.pl new file mode 100644 index 0000000..3c590cc --- /dev/null +++ b/scripts/alame.pl @@ -0,0 +1,36 @@ +use Irssi; +use Irssi::Irc; +use strict; +use warnings; +use vars qw($VERSION %IRSSI); +$VERSION="0.0.1"; +%IRSSI = ( + authors => 'Christian \'mordeth\' Weber', + contact => 'mordeth\@mac.com', + name => 'alame', + description => 'Converts towards lame speech', + license => 'GPL v2', + url => 'http://', +); + + +# USAGE: +# /alame +# writes "text" in lamespeech to the current channel + +sub cmd_lamer { + my ($data, $server, $witem) = @_; + if (!$server || !$server->{connected}) { + Irssi::print("Not connected to server"); + return; + } + if ($data) { + my $x; $_=$data; s/./$x=rand(6); $x>3?lc($&):uc($&)/eg; s/a/4/gi; s/c/(/gi; + s/d/|)/gi; s/e/3/gi; s/f/|=/gi; s/h/|-|/gi; s/i/1/gi; s/k/|command("/SAY $_"); + } +} + +Irssi::command_bind('alamer', 'cmd_lamer'); -- cgit v1.2.3