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-08-30 03:35:27 +00:00
|
|
|
|
2010-01-17 04:24:36 +00:00
|
|
|
return 'http://forums.somethingawful.com/member.php?action=getinfo' + \
|
2014-01-14 21:12:37 +00:00
|
|
|
'&username=' + '+'.join(inp.split())
|