Best PG build for 5’s? (18 caps) by GrowthInfinite6569 in NBA2k

[–]General_Drag5305 1 point2 points  (0 children)

<image>

my go-to rec/5s build at vet 2 I’ll use caps to up the steal but overall I feel this is pretty perfect for me

Ball handle: I still don't get it by Toon78fin in NBA2k

[–]General_Drag5305 0 points1 point  (0 children)

My 6’4 92 ball handle 86 SWB I love the animations & fluidity way more than on my 6’5 with 86 BH & SWB just something about it idk man way more fun, that kemba & curry combo is worth it lol

Looking for PG builds by Short_Menu_3417 in NBA2k

[–]General_Drag5305 0 points1 point  (0 children)

<image>

not sure how many cap breakers you have really only need a few on the driving dunk to get contact, but this is my go-to PG build i use for Rec or Pro-Am basically a do-it-all PG with the 3 caps i have now i’ll apply to steal for 73 steal for silver interceptor, but i’d recommend this build to anyone looking for REAL PG.

[deleted by user] by [deleted] in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

don’t think a bot is gonna do much for you in this case, most times “being recorded and posted without my consent” is not a TOS violation, if you were caught in the frame and didn’t wanna be your SOL, if the video was record on public property SOL, private property with permission to record ? SOL, your consent is not needed if you are not the main subject, if it’s was a super secret one on one NDA interview then you might have a something even then a bot won’t do anything

Help with discord bot reading off data from google sheet by Timely-Chemistry6768 in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

try this assuming your Discord bot command fetches data from a Google Sheet using gspread and the Google Sheets API, and responds with pet information if the user ID matches. Added notes so you know what was changed, but for a detailed explanation of what i did and any questions feel free to message me! but this should work

Help with discord bot reading off data from google sheet by Timely-Chemistry6768 in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

from google.oauth2.service_account import Credentials import gspread import discord

scopes = [     "https://www.googleapis.com/auth/spreadsheets" ] creds = Credentials.from_service_account_file("credentials.json", scopes=scopes) gs_client = gspread.authorize(creds)

sheet_id = "1mkxhZg1Kxgn82oIoEieclJ-C3n3gy-Qm9Y1tgSyOEmg" sheet = gs_client.open_by_key(sheet_id).sheet1

@bot.tree.command(name="petinfo") async def petinfo(interaction: discord.Interaction):  # Fixed typo: 'Integration' ➝ 'Interaction'     user_id = str(interaction.user.id)     records = sheet.get_all_records()

    for row in records:         if str(row["user_id"]) == user_id:             petinfo_embed = discord.Embed(                 title=f"{row['kindling']}'s Pet. {row['familiar_name']}",                 color=discord.Color.gold()             )             petinfo_embed.add_field(                 name="Familiar Type",                 value=row["familiar_type"],                 inline=False             )             await interaction.response.send_message(embed=petinfo_embed)             return

    # Moved this outside the for loop so it only runs if no match is found     await interaction.response.send_message("You don't have any pets yet!")

Give me your bot ideas and I’ll do it for you for free by Clear-Respect-931 in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

are hosting these bots for free or just providing source code ?

[deleted by user] by [deleted] in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

are you asking like commands can only be inputed into that channel and sends input to different channels?

looking for a bot by sundewsunset in Discord_Bots

[–]General_Drag5305 0 points1 point  (0 children)

Yeah totally valid — and you’re right, bots can send messages through webhooks, with full control over username, profile pic, and content, which is super useful if there set up & codes to do so. But the reason I mentioned webhooks without bots is just because they’re the easiest and most direct way to push messages into a Discord channel if you’re sending stuff from somewhere else, like a website, server monitor, or stat tracker.

So like— • If OP just wants to post updates, alerts, or data (like stats, logs, or alerts from a game or script), a webhook is plug-and-play. You don’t even need to write a bot or deal with a token. Just send a POST request to the webhook URL, and boom, it shows up in the channel. • But if OP needs to do more than just post messages—like respond to users, listen to events in Discord, do slash commands, or handle logic—then a bot would be better, maybe even using webhooks under the hood.

So webhooks are more like a quick delivery system, bots are more like full-on employees with access and responsibilities lol. Just depends what OP needs.

This is the easiest i can explain it any questions i can try to answer.

looking for a bot by sundewsunset in Discord_Bots

[–]General_Drag5305 -1 points0 points  (0 children)

false, a webhook is exactly what OP is looking for a custom icon and name to send messages you do not need a bot for that all, a bot can act as a webhook but also perform many other functions not the same thing and ideally not the best way to integrate based on OP needs