14 lines
318 B
Python
14 lines
318 B
Python
|
# for crusty old rotor
|
||
|
|
||
|
from util import hook
|
||
|
|
||
|
|
||
|
@hook.command
|
||
|
def profile(inp):
|
||
|
".profile <username> -- links to <username>'s profile on SA"
|
||
|
if not inp:
|
||
|
return profile.__doc__
|
||
|
|
||
|
return 'http://forums.somethingawful.com/member.php?action=getinfo' + \
|
||
|
'&username=' + '+'.join(inp.split())
|