From 47e5bdaa4017df0fdb3015b2da57c0a95c0a089b Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 21 Nov 2018 22:22:43 +1300 Subject: Men: add roll chance, support unicode and case --- Plugin/Men.pm | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Plugin/Men.pm b/Plugin/Men.pm index 38af3ea..7a53a71 100644 --- a/Plugin/Men.pm +++ b/Plugin/Men.pm @@ -2,6 +2,9 @@ package Plugin::Men; use strict; use warnings; +use Encode qw/decode/; + +use IdaliusConfig qw/assert_scalar/; my $config; my $root_config; @@ -10,24 +13,32 @@ sub configure { my $self = shift; shift; # cmdref shift; # run_command - shift; # module config + $config = shift; $root_config = shift; + IdaliusConfig::assert_scalar($config, $self, "chance"); + die "chance must be from 0 to 100" + unless $config->{chance} >= 0 && $config->{chance} <= 100; + return $self; } sub on_message { my ($self, $logger, $me, $who, $where, $raw_what, $what, $irc) = @_; + return unless rand(100) < $config->{chance}; + if (ref($where) eq "ARRAY") { $where = $where->[0]; } - if ($what =~ /(\w*men\w*)/) { + $what = Encode::decode('utf8', $what); + + if ($what =~ /(\w*men\w*)/i) { my ($w, $c, $target); $w = $c = $target = $1; - $w =~ s/men/women/; - $c =~ s/men/children/; + $w =~ s/men/women/i; + $c =~ s/men/children/i; return "not just the $target, but the $w and $c too"; } return; -- cgit v1.1