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/mctools.py

39 lines
1.7 KiB
Python
Raw Normal View History

2011-11-21 12:24:23 +01:00
from util import hook, http
import string
2011-11-20 10:23:31 +01:00
2011-11-21 07:56:14 +01:00
@hook.command(autohelp=False)
2011-11-21 12:03:41 +01:00
def mcstatus(inp, bot=None):
".mcstatus - Attempts to log in to minecraft"
username = bot.config["api_keys"]["mc_user"]
password = bot.config["api_keys"]["mc_pass"]
2011-11-21 12:24:23 +01:00
login = http.get("https://login.minecraft.net/?user="+username+"&password="+password+"&version=13")
print "Username: " + username
print "Response: " + login
if username.lower() in login.lower():
2011-11-20 10:23:31 +01:00
return "Attempting to connect to Minecraft login servers... Login servers appear to be online!"
else:
return "Attempting to connect to Minecraft login servers... Login servers appear to be offline :("
@hook.command
def mclogin(inp, say=None):
".mclogin <username> <password> - Attempts to log in to minecraft using the provided username and password, this is NOT logged."
inp = inp.split(" ")
username = inp[0]
password = inp[1]
say("Attempting to log in using " + username)
2011-11-21 12:24:23 +01:00
login = http.get("https://login.minecraft.net/?user=" + username + "&password=" + password + "&version=13")
if username.lower() in login.lower():
2011-11-20 10:23:31 +01:00
return "I logged in with " + username
else:
2011-11-21 12:24:23 +01:00
return "I couldn't log in using " + username + ", either the password has been changed or minecraft auth is down :O"
2011-11-21 12:03:41 +01:00
@hook.command
def haspaid(inp):
".haspaid <username> - Checks if a user has a premium Minecraft account"
2011-11-21 12:24:23 +01:00
login = http.get("http://www.minecraft.net/haspaid.jsp?user=" + inp)
2011-11-21 12:03:41 +01:00
if "true" in login:
2011-11-21 12:24:23 +01:00
return "The account \'" + inp + "\' is a premium Minecraft account! :D"
2011-11-21 12:03:41 +01:00
else:
2011-11-21 12:24:23 +01:00
return "The account \'" + inp + "\' is not a premium Minecraft account :("
2011-11-21 12:03:41 +01:00