]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Modules/RootWarn.pl
standard TODO: and FIXME:
[infobot.git] / src / Modules / RootWarn.pl
index ffd7ee2ad5941864ddb20e00e2e4d0bd1d18f901..ae44676965e352a819a7de17d912e162193c0827 100644 (file)
@@ -21,25 +21,24 @@ sub rootWarn {
            &status("rootwarn: Detected root user; notifying user");
        } else {
            &status("rootwarn: Detected root user; notifying nick and channel.");
-           &msg($chan, "ROO".("O" x int(rand 68))."T has landed!");
+           &msg($chan, "ROO".("O" x int(rand 8))."T has landed!");
        }
 
        if ($_ = &getFactoid("root")) {
-           &msg($nick, "root is $_");
+           &msg($nick, "rootwarn: $attempt : $_");
        } else {
            &status("root needs to be defined in database.");
        }
 
     } elsif ($attempt < 2) {   # 2nd/3rd time occurrance.
-       &status("RootWarn: not first time root user; msg'ing $nick.");
        if ($_ = &getFactoid("root again")) {
-           &msg($nick, $_);
+           &status("RootWarn: not first time root user; msg'ing $nick.");
+           &msg($nick, "rootwarn: $attempt : $_");
        } else {
            &status("root again needs to be defined in database.");
        }
 
     } else {                   # >3rd time occurrance.
-
        # disable this for the time being.
        if (0 and $warnmode =~ /aggressive/i) {
            if ($channels{$chan}{'o'}{$ident}) {
@@ -47,6 +46,11 @@ sub rootWarn {
                rawout("MODE $chan +b *!root\@$host");  # ban
                &kick($chan,$nick,"bye bye");
            }
+       } elsif ($_ = &getFactoid("root again")) {
+           &status("RootWarn: $attempt times; msg'ing $nick.");
+           &msg($nick, "rootwarn: $attempt : $_");
+       } else {
+           &status("root again needs to be defined in database.");
        }
     }
 
@@ -66,7 +70,7 @@ sub rootWarn {
 }
 
 # Extras function.
-# todo: support arguments to get info on a particular nick?
+# TODO: support arguments to get info on a particular nick?
 sub CmdrootWarn {
     my $reply;
     my $count = &countKeys("rootwarn");