This repository was archived by the owner on Aug 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSource Code.py
More file actions
69 lines (63 loc) · 4.48 KB
/
Source Code.py
File metadata and controls
69 lines (63 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import discord
import logging
import asyncio
client=discord.Client()
@client.event
async def on_message(message):
...
if message.content == "!botinfo":
embed = discord.Embed(title="Pirate Naigator Info", description="Yaar! Know who I am!")
embed.add_field(name="Developed on", value="August 2020")
embed.add_field(name="Programming Language", value="Python")
embed.add_field(name="Developed by", value="Watch_Doge")
embed.add_field(name="Version", value="1.1")
await message.channel.send(content=None, embed=embed)
...
...
if message.content == "!games-ubisoft":
embed = discord.Embed(title="Here are some games for ya, pirate", description="Remember to use a torrent client")
embed.add_field(name="Watch_dogs1", value=" https://fitgirl-repacks.site/watch-dogs-v1-06-329-all-dlcs/")
embed.add_field(name="Far Cry Primal", value=" https://fitgirl-repacks.site/far-cry-primal-apex-edition-v1-3-3-dlcs-ultra-hd-textures/")
embed.add_field(name="Far Cry 5", value=" https://fitgirl-repacks.site/far-cry-5/")
embed.add_field(name="Far Cry 3+Blood Dragon", value=" https://fitgirl-repacks.site/far-cry-3-duology/")
embed.add_field(name="Far Cry New Dawn", value=" https://fitgirl-repacks.site/far-cry-new-dawn/")
embed.add_field(name="Far Cry 4", value=" https://fitgirl-repacks.site/far-cry-4-gold-edition/")
embed.add_field(name="Watch_Dogs2", value=" https://fitgirl-repacks.site/watch-dogs-2-gold-edition/")
embed.add_field(name="Assassin's Creed Odyssey", value=" https://fitgirl-repacks.site/assassins-creed-odyssey/")
embed.add_field(name="Assassin's Creed Origins", value=" https://fitgirl-repacks.site/assassins-creed-origins/")
embed.add_field(name="Assassin's Creed Syndicate", value=" https://fitgirl-repacks.site/assassins-creed-syndicate-gold-edition/")
embed.add_field(name="Assassin's Creed Rogue", value="https://fitgirl-repacks.site/assassins-creed-rogue/")
embed.add_field(name="Assassin's Creed 3 Remastered", value="https://fitgirl-repacks.site/assassins-creed-3-remastered/")
embed.add_field(name="Assassin's Creed 4 ", value="https://fitgirl-repacks.site/assassins-creed-iv-black-flag-jackdaw-edition/")
embed.add_field(name="Assassin's Creed Unity", value="https://fitgirl-repacks.site/assassins-creed-unity-v1-5-0-dlcs/")
embed.add_field(name="Assassin's Creed Chronicles", value="https://fitgirl-repacks.site/assassins-creed-chronicles-trilogy/")
await message.channel.send(content=None, embed=embed)
...
...
if message.content == "!games":
embed = discord.Embed(title="Here are some commands for games collections", description="Use the commands for games")
embed.add_field(name="Ubisoft Games(includes Assassins Creed, watch dogs and more", value="!games-ubisoft")
embed.add_field(name="GTA collection", value="!games-gta")
embed.add_field(name="Free to play Games", value="!games-free")
embed.add_field(name="Version", value="1.0")
await message.channel.send(content=None, embed=embed)
...
...
if message.content == "!games-gta":
embed = discord.Embed(title="Here are some GTA Games for you", description="Remember to use a torrent client")
embed.add_field(name="GTA 5", value="https://fitgirl-repacks.site/grand-theft-auto-v/")
embed.add_field(name="GTA 4", value=" https://fitgirl-repacks.site/grand-theft-auto-iv-complete-edition/")
await message.channel.send(content=None, embed=embed)
...
...
if message.content == "!games-free":
embed = discord.Embed(title="Here are some Free games to download", description="You dont need torrent for these")
embed.add_field(name="PUBG PC Lite", value=" https://lite.pubg.com/download/")
embed.add_field(name="Valorant", value="https://playvalorant.com/en-us/")
embed.add_field(name="COD Warzone", value="https://www.callofduty.com/warzone/download")
embed.add_field(name="Apex Legends", value="https://www.ea.com/games/apex-legends/play-now-for-free")
embed.add_field(name="Fortnite", value="https://www.epicgames.com/fortnite/en-US/download?sessionInvalidated=true")
embed.add_field(name="Rocket League", value="https://www.epicgames.com/store/en-US/product/rocket-league/home")
await message.channel.send(content=None, embed=embed)
...
client.run('token')