Guest User

Untitled

a guest
Dec 12th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.42 KB | None | 0 0
  1. use strict;
  2. use warnings;
  3.  
  4. weechat::register("kolorowanka", "voldenet", "0.1", "Public domain", "kolorowanka", "", "");
  5. weechat::hook_command("kolorowanka", "<tekst>", "<tekst> - do pokolorowania", "", "", "kolorowanyshit", "");
  6. sub kolorowanyshit {
  7.     my ($data, $buffer, $text, $new) = (shift, shift, shift, '');
  8.     $new=$new.(int(rand(13))+2).pack("U*",$_) for unpack("U*",$text);
  9.     weechat::command($buffer,$new);
  10. }
Add Comment
Please, Sign In to add comment