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

Replies to Untitled rss

Title Name Language When
Re: Untitled Torrid Marten python 6 Years ago.
Re: Untitled Paltry Dove python 6 Years ago.