RSilkroad Plugins Need

Hello Admins and Moderators,
We are need RSilkroad job experience plugins. Can you make us plugin??
we are unable to execute the code you throw.

Merhaba adminler ve moderatörler,
Bizim rsilkroad job exp pluginine ihtiyacımız var. Direk plugini yapıp atabilirmisiniz? Sizin attığınız kodu biz çalıştıramıyoruz.

from phBot import *

import phBotChat

import re
from time import sleep

def handle_chat(t, player, msg):
if len(player) == 0:
m = re.findall(r’(\d+)’, msg)
if m and len(m) >= 2:

		if msg.find('+') != -1 or msg.find(' x ') != -1:
			result = int(m[0]) + int(m[1])
		else:
			result = int(m[0]) * int(m[1])

		sleep(1.0)

		log('Sending result %s' % str(result))
		if msg.find('/answer') != -1:
			phBotChat.All('/answer ' + str(result))
		else:
			phBotChat.All(str(result))
elif (player.find('JobSecure') != -1 or player.find('BotCheck') != -1) and msg.lower().find('job experience') != -1:
	sleep(1.0)
	phBotChat.Private(player, str(get_character_data()['job_current_exp']))
elif player == 'RemoLogger' or player == 'Bot' or player == 'BotCheck':
	m = re.findall(r'(\d+)', msg)
	if m:
		if len(m) == 1:

			sleep(1.0)

			log('Sending result %s' % str(m[0]))
			phBotChat.Private(player, str(m[0]))

		elif len(m) >= 2:

			if msg.find('+') != -1 or msg.find(' x ') != -1:
				result = int(m[0]) + int(m[1])
			else:
				result = int(m[0]) * int(m[1])

			sleep(1.0)

			log('Sending result %s' % str(result))
			phBotChat.Private(player, str(result))
	elif msg.lower().find('kervankey') != -1:
		sleep(1.0)
		phBotChat.Private(player, 'Kervankey')

log(’[%s] Loaded’ % name)