2010-01-17 04:24:36 +00:00
|
|
|
# for crusty old rotor
|
|
|
|
|
|
|
|
from util import hook
|
|
|
|
|
|
|
|
|
|
|
|
@hook.command
|
|
|
|
def profile(inp):
|
|
|
|
".profile <username> -- links to <username>'s profile on SA"
|
2010-05-07 23:16:44 +00:00
|
|
|
|
2010-01-17 04:24:36 +00:00
|
|
|
return 'http://forums.somethingawful.com/member.php?action=getinfo' + \
|
|
|
|
'&username=' + '+'.join(inp.split())
|