You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 8, 2025. It is now read-only.
returnrender_template("simple-message.html", user=user, title="Guild Not Found", message="AlphaGameBot can't find the requested guild. Either it doesn't exist (it happens to the best of us!), or AlphaGameBot is not in that guild, yet.")
51
51
52
52
cursor.execute("SELECT user_level, points, messages_sent, commands_ran FROM guild_user_stats WHERE userid = %s AND guildid = %s", (user["id"], guildid))
53
+
db_result=cursor.fetchone()
54
+
55
+
ifdb_resultisNone:
56
+
returnrender_template("simple-message.html",
57
+
title="Well... this is awkward!",
58
+
message="I cannot get the information requested..."
59
+
"Send a message in the Discord server, or run an AlphaGameBot command in this server."
60
+
"If the problem persists, then make a GitHub issue!"), 500
0 commit comments