it links to the Programming in Lua manual for users who do not or plainly understand (the oddities) of Lua
master
Jordan Snelling 2013-10-23 16:31:57 +01:00
parent 13c878de80
commit fd1a0ea78b
1 changed files with 10 additions and 0 deletions

View File

@ -38,3 +38,13 @@ def next(phenny, input):
phenny.say("Another satisfied customer. Next!")
next.commands = ['next']
def pil(phenny, input):
"""Lua Manual link"""
for x in phenny.bot.commands["high"].values():
if x[0].__name__ == "aa_hook":
if x[0](phenny, input):
return
phenny.say("Someone thinks you need to brush up on or learn Lua, please go to: http://lua.org/pil/")
pil.commands = ['pil']