Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: None | Size: 0.89 KB | Hits: 126 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. on *:TEXT:!password *:#: {
  2.   if ($readini(language.ini,$nick,language) == dutch) {
  3.     if ($readini(Admin.ini,moderator,$nick)) {
  4.       if ($readini(accounts.ini,$nick,$address($2,2)) == $null) { notice $nick [13Error] Uhmm.. Probleempje. [13 $+ $2 $+ ] heeft nog geen account aangemaakt! | HALT }
  5.       else {
  6.         notice $nick [13Password] het wachtwoord van: [13 $+ $2 $+ ] is: [13 $+ $readini(accounts.ini,$nick,$address($2,2) $+ ].
  7.       }
  8.     }
  9.   }
  10.   elseif ($readini(language.ini,$nick,language) == english) {
  11.     if ($readini(Admin.ini,moderator,$nick)) {
  12.       if ($readini(accounts.ini,$nick,$address($2,2)) == $null) { notice $nick [13Error] Uhmm.. trouble. [13 $+ $2 $+ ] didn't made an account! | HALT }
  13.       else {
  14.         notice $nick [13Password] [13 $+ $2 $+ 's] password is: [13 $+ $readini(accounts.ini,$nick,$address($2,2) $+ ].
  15.       }
  16.     }
  17.   }
  18. }