Skip to content

Instantly share code, notes, and snippets.

@ksexton
Forked from mrdaemon/jappo.pl
Created March 16, 2012 19:40
Show Gist options
  • Save ksexton/2052131 to your computer and use it in GitHub Desktop.
Save ksexton/2052131 to your computer and use it in GitHub Desktop.
use strict;
use vars qw($VERSION %IRSSI);
use Irssi;
$VERSION = '0.01';
%IRSSI = (
authors => 'Alexandre Gauthier',
contact => 'alex@underwares.org',
name => 'Bullshit Knifaisms Smileys',
description => 'This script pretty much allows you spam ' .
'horrible japanese smileys. Use at your own ' .
'risk.',
license => 'Public Domain',
);
#### FIXME: OH LAWD HARCODED CONTENTS ####
%EMOJIS = (
':hug:' => "ヽ(´ー`)ノ",
':yudothis:' => "щ(゚Д゚щ)",
':xd:' => "( ˃ ヮ˂)",
':kiss:' => "( ¯3¯)",
':smile:' => "( ゚ ヮ゚)",
':mad3:' => "ಠ_ಠ",
':mad2:' => "ヽ(`Д´)ノ",
':punch:' => "( `Д´)=◯)`ν°)",
':shock2:' => "(゜△゜;)",
':sigh2:' => "( ´Д`)",
':table3:' => "(ノ `Д´)ノ ~~~┻━┻)`ν゜)",
':table2:' => "( `Д´)ノ┳━┳",
':moe:' => "ℳℴℯ❤",
':cry:' => "。・゚・(ノД`)・゚・。",
':nyoro:' => "(´・ω・)",
':cummed:' => "THE PLEASURE OF BEING CUMMED INSIDE",
':mad:' => "(╬ ಠ益ಠ)",
':yay:' => "ヽ(' ▽' )ノ !",
':flower5:' => "♡(✿ˇ◡ˇ)人(ˇ◡ˇ✿)♡",
':claw:' => "( ゚◡◡゚)☄",
':facethrow:' => "(ノ ¯3¯)ノ ~( `Д´)",
':haha:' => "( ゚∀゚)アハハ八八ノヽノヽノヽノ \ / \/ \",
':cummedhorror:' => "THE HORROR OF BEING CUMMED INSIDE.",
':snob:' => "(¯^¯ )",
':idunnolol:' => "¯\(°_o)/¯",
':table:' => "(ノ `Д´)ノ ~┻━┻",
':hug4:' => "(づ。◕‿◕。)づ",
':hug3:' => "(づ。◕‿‿‿‿◕。)づ",
':smile2:' => "(。◕‿◕。)",
':sad:' => "( ゚∩゚)",
':hug2:' => "(っ´ω`)っ",
':shock:' => "Σ(゚Д゚)",
':sigh:' => "( ´_ゝ`)",
':slap:' => "( `Д´)ノ)`ν゜)",
':codeindentation:' => "THE FORCED INDENTATION OF CODE.",
':corea:' => "( `ー´)",
)
print "Knifaisms loaded.";
sub test {
my ($data, $server, $witem) = @_;
return unless $witem;
$witem->command("MSG ".$witem->{name}." "."Hi this is jappo.pl");
}
Irssi::settings_add_bool('lookandfeel', 'enable_knifamode', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment