Skip to content

Commit

Permalink
added default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
TKperson committed Mar 14, 2023
1 parent 9b1f09e commit 8a81973
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions c-realV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
MIT License
Copyright (c) 2020 - 2022
Copyright (c) 2020 - 2023
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -95,7 +95,26 @@ def banner():
print('Please update your discord.py.')
exit()

settings = {"token":None,"permissions":[],"bot_permission":"2146958847","command_prefix":".","bot_status":"offline","verbose":15,"bomb_messages":{"random":None,"fixed":[]},"webhook_spam":{"usernames":[],"pfp_urls":[],"contents":[]},"after":[],"proxies":[],"ban_whitelist":[]}
settings = {
"token": None,
"permissions": [],
"bot_permission": "2146958847",
"command_prefix": ".",
"bot_status": "offline",
"verbose": 15,
"bomb_messages": {
"random": 10,
"fixed": ["nuked"]
},
"webhook_spam": {
"usernames": ["nuked"],
"pfp_urls": [None],
"contents": ["@everyone"]
},
"after": [],
"proxies": [],
"ban_whitelist": []
}

def setUp():
# check location
Expand Down

0 comments on commit 8a81973

Please sign in to comment.