This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/mcpaid.py
2012-02-28 10:41:51 +08:00

7 lines
252 B
Python

from util import hook, http
@hook.command
def mcpaid(inp):
".mcpaid <username> -- checks if minecraft <username> has paid for the game"
return " ".join([x for x in http.get("http://www.minecraft.net/haspaid.jsp", user=inp).splitlines() if x])