Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- EVAL_REGEX = /\Aeval (?<query>.*)\z/i
- on :message, EVAL_REGEX do |m|
- if m.user.to_s.downcase == ADMIN.downcase
- query = EVAL_REGEX.match(m.message)[:query]
- eval(query)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement