aboutsummaryrefslogtreecommitdiffstats
path: root/PlugIns/Idle-Monster.lisp
blob: 827813a5bbed339c866a4c387a92d0018845a2cc (plain)
1
2
3
4
5
6
7
8
9
10
(defpackage idle-monster
  (:use :cl :cl-user :moxie :bjc-utils))
(in-package :idle-monster)

(defun send-idle-cmd (&rest args)
  (declare (ignore args))
  "Sends a command to the current world when idle."
  (print-to-world *world* (format nil "Idle!~%")))

;(add-hook 'send-idle-cmd :timer-hook)