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

Basic Python IRC Bot - Stikked
From Colorant Peafowl,, 2 Weeks ago, written in Python.
This paste is a reply to Basic Python IRC Bot from Colorant Peafowl - go back
Embed
Viewing differences between Basic Python IRC Bot and Basic Python IRC Bot
import socket
 
socket
 
network = 'irc.snm.co.nz'
nz'
port = 6667
6667
irc = socket.socket ( socket.AF_INET, socket.SOCK_STREAM )
)
irc.connect ( ( network, port ) )
)
print irc.recv ( 4096 )
)
irc.send ( 'NICK botty\r\n' )
)
irc.send ( 'USER botty botty botty :Python IRC\r\n' )
)
irc.send ( 'JOIN #paul\r\n' )
)
irc.send ( 'PRIVMSG #Paul :Hello World.\r\n' )
)
while True:
True:
   data = irc.recv ( 4096 )
)
   if data.find ( 'PING' ) != -1:
-1:
      irc.send ( 'PONG ' + data.split() [ 1 ] + '\r\n' )
)
   if data.find ( '!botty quit' ) != -1:
-1:
      irc.send ( 'PRIVMSG #paul :Fine, if you don't want me\r\n' )
)
      irc.send ( 'QUIT\r\n' )
)
   if data.find ( 'hi botty' ) != -1:
-1:
      irc.send ( 'PRIVMSG #paul :I already said hi...\r\n' )
)
   if data.find ( 'hello botty' ) != -1:
-1:
      irc.send ( 'PRIVMSG #paul :I already said hi...\r\n' )
)
   if data.find ( 'KICK' ) != -1:
-1:
      irc.send ( 'JOIN #paul\r\n' )
)
   if data.find ( 'cheese' ) != -1:
-1:
      irc.send ( 'PRIVMSG #paul :WHERE!!!!!!\r\n' )
)
   if data.find ( 'slaps botty' ) != -1:
-1:
      irc.send ( 'PRIVMSG #paul :This is the Trout Protection Agency. Please put the Trout Down and walk away with your hands in the air.\r\n' )
)
   print data