Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
strolly
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dnns01
strolly
Commits
1926b840
Commit
1926b840
authored
4 years ago
by
dnns01
Browse files
Options
Downloads
Patches
Plain Diff
Added feature to roll dice
parent
9d565bd8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
roll_cog.py
+19
-0
19 additions, 0 deletions
roll_cog.py
strolly.py
+6
-0
6 additions, 0 deletions
strolly.py
with
25 additions
and
0 deletions
roll_cog.py
0 → 100644
+
19
−
0
View file @
1926b840
import
random
from
discord.ext
import
commands
class
RollCog
(
commands
.
Cog
):
def
__init__
(
self
,
bot
):
self
.
bot
=
bot
@commands.command
(
name
=
"
roll
"
)
async
def
cmd_roll
(
self
,
ctx
,
dice
=
"
w6
"
,
qty
=
1
):
"""
Roll a/multiple dice
"""
eyes
=
int
(
dice
[
1
:])
answer
=
f
"
Es wurden
{
qty
}
{
dice
.
upper
()
}
geworfen, mit folgenden Ergebnissen:
\n
"
for
i
in
range
(
qty
):
answer
+=
f
"
{
i
+
1
}
. Wurf:
{
random
.
randrange
(
1
,
eyes
+
1
)
}
\n
"
await
ctx
.
send
(
answer
)
This diff is collapsed.
Click to expand it.
strolly.py
+
6
−
0
View file @
1926b840
...
...
@@ -6,6 +6,7 @@ from dotenv import load_dotenv
from
bati_cog
import
BatiCog
from
poll_cog
import
PollCog
from
roll_cog
import
RollCog
# .env file is necessary in the same directory, that contains several strings.
load_dotenv
()
...
...
@@ -17,6 +18,7 @@ intents = discord.Intents.default()
intents
.
members
=
True
bot
=
commands
.
Bot
(
command_prefix
=
'
!
'
,
help_command
=
None
,
activity
=
discord
.
Game
(
ACTIVITY
),
intents
=
intents
)
bot
.
add_cog
(
PollCog
(
bot
))
bot
.
add_cog
(
RollCog
(
bot
))
bot
.
add_cog
(
BatiCog
(
bot
))
...
...
@@ -33,6 +35,10 @@ bot.add_cog(BatiCog(bot))
@bot.event
async
def
on_ready
():
print
(
"
Client started!
"
)
# channel = await bot.fetch_channel(682590504948334684)
# await channel.send("!poll \"Wie kluk bin ich?\" Sehr")
#
bot
.
run
(
TOKEN
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment