A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked
From Baby Macaque, 13 Years ago, written in Python.
Embed
  1. import xchat
  2. __module_name__ = "AnonOps helper"
  3. __module_version__ = "1.0"
  4. __module_description__ = "AnonOps helper - Coded by Aha2Y"
  5.  
  6. print "\0034",__module_name__, __module_version__,"has been loaded\003"
  7.  
  8. Whitelist = [
  9. "NATO", "MADDOG", "ISIS", "CODY", "JUPILER", "POWER2ALL",
  10. "EVILWORKS", "POKE", "TVXQ", "AHA2Y", "MESTRI", "EGG", "EFFEXOR",
  11. "SELKET", "SWEET", "WINO", "KEYSER_SOZE", "SUSPICIOUS", "SHITSTORM",
  12. "EPOK", "SQUIRREL", "POKE", "PI", "OZ", "BNON", "CODY", "DABOOGIEMAN",
  13. "SHARPIE", "COGITABUNDUS"
  14. ]
  15.  
  16. def help_in(word, word_eol, userdata):
  17.    try:
  18.       xchat.command("say Hello %s, How can we help you?" % word_eol[1])
  19.       return xchat.EAT_XCHAT
  20.    except:
  21.       print("*** You need to specify a username.")
  22.       return xchat.EAT_XCHAT
  23.  
  24. def help_out(word, word_eol, userdata):
  25.    try:
  26.       xchat.command("say If you have no more questions, then please /part the channel %s" % word_eol[1])
  27.       return xchat.EAT_XCHAT
  28.    except:
  29.       print("*** You need to specify a username.")
  30.       return xchat.EAT_NONME
  31.  
  32. def on_join(word, word_eol, userdata):
  33.    if xchat.get_info('network') == "AnonOps" and xchat.get_info('channel') == "#help" and word[1].upper() not in Whitelist:
  34.       xchat.emit_print('Private Message to Dialog', '%s Has joined #help' % word[0])
  35.       xchat.emit_print('Generic Message', '[AnonOps Helper]', 'A newfag with the nickname %s has joined #help' % word[0])
  36.       return xchat.EAT_NONE;
  37.  
  38. xchat.hook_print('Join', on_join)
  39. xchat.hook_command("h1", help_in)
  40. xchat.hook_command("h2", help_out)
  41.