#!/usr/bin/ruby
require "mooix"

Mooix.run do
	# Set up variables.
	args = Hash[*@args]
	code = args["quote"]
	me = args["avatar"]
	here = me.location
	session = args["session"]

	# Anti-spoofing.
	if self != me
		session.write("No!")
	else
		session.write(eval(code.to_s))
	end
end
