Author Topic: Custom Command/Minigame Request Thread  (Read 20291 times)

0 Members and 1 Guest are viewing this topic.

ThatGirlSlays

  • Youngling
  • *
  • Posts: 42
  • Karma: +0/-0
    • View Profile
    • Instagram
  • Twitch Name: ThatGirlSlays
Re: Custom Command/Minigame Request Thread
« Reply #15 on: June 21, 2017, 10:38:27 PM »
I am an art streamer and I would love for viewers to be able to do something like !addrequest <request here> and have the bot somehow collect those requests over the week. Then on Friday I would have it pull a request randomly from the list. Is something like this possible?

Did you ever get this figured out? It would be as simple as writing each request to a single text file and then having DP read the file and pull a random line. You would need to keep track of how many lines have been written but this could be done with the !addrequest counter variable. Let me know if you needed further help.

XpcTV

  • Youngling
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
  • Twitch Name: XpcTV
Re: Custom Command/Minigame Request Thread
« Reply #16 on: July 11, 2017, 04:36:48 AM »
Is it possible to get a version of the gamble command without the "gamble_start" part of it? I find it slow and unescesarry.

Thanks in advance,

ElleTey

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: Custom Command/Minigame Request Thread
« Reply #17 on: July 13, 2017, 04:13:45 AM »
Old Name: RepentGamingTV
Twitch: Here

Need help ASAP?
Join Deepbot's Discord: Discord.Deepbot.tv
Deepbot's Twitter: @DeepSupport

Jester2504

  • Youngling
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Jester2504
Re: Custom Command/Minigame Request Thread
« Reply #18 on: July 23, 2017, 06:46:47 PM »
There is a custom command already that allows viewers to invest their channel currency. I would like a game that I can adjust the success rate on where people can attempt to rob the money that people have invested. Yes I know deepbot has bank heist but that isnt the same as winning other viewers invested money.

thezerogamer

  • Youngling
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
  • Twitch Name: thezerogamer
Re: Custom Command/Minigame Request Thread
« Reply #19 on: September 03, 2017, 08:07:43 AM »
I want a simple custom command that's similar to the defuse bomb minigame except the user who activates it gets a random currency from 1-100 and that you can set a cooldown for each user.

i.e. typing !bonus gives the following:

For being a great viewer here are (random 1-100 number) (currency) dude!

ProsettaFPS

  • Youngling
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
    • joingy
Re: Custom Command/Minigame Request Thread
« Reply #20 on: September 25, 2017, 01:23:35 AM »
I'm a big fan of the gambling suggestion that can win other viewer's currency!

ThatGirlSlays

  • Youngling
  • *
  • Posts: 42
  • Karma: +0/-0
    • View Profile
    • Instagram
  • Twitch Name: ThatGirlSlays
Re: Custom Command/Minigame Request Thread
« Reply #21 on: September 27, 2017, 05:22:38 AM »
There is a custom command already that allows viewers to invest their channel currency. I would like a game that I can adjust the success rate on where people can attempt to rob the money that people have invested. Yes I know deepbot has bank heist but that isnt the same as winning other viewers invested money.

I have a ton of custom minigames where there are different "odds" or "chances of success" at performing an action. I tweaked the steal game to have a success rate. One way to do this is to have a text file in your Custom Logs folder called Odds.txt. Enter a number 1-99 (no point in having a text file if it is 100% success rate). I created a custom api that checks whether a number (x) is between two other numbers (y) and (z). So in the command I generate a random number 1-100 (x). I then check whether that number is between 1 (y) and the odds I have set (z...so for example 25). If the return is true then I process with the action, otherwise if false, I do a different action.


ODDS FILE
Odds.txt = 25

RANDOMLY GENERATED NUMBER
@rand@[1|100] = let's say it generations the number 19

MY CUSTOM "BETWEEN" API - FEEL FREE TO USE
@customapi@[http://api.thatgirlslays.com?between=NumberToCheck~LowerLimit~UpperLimit]


EXAMPLE USAGE
@if@[@customapi@[http://api.thatgirlslays.com?between=@rand@[1|100]~1~@readfile@[Steal/Settings/Odds.txt]]||false||THE ODDS WERE NOT SUCCESSFUL||THE ODDS WERE SUCCESSFUL]


Feel free to contact me at thatgirlslays@gmail.com if you need any custom programming. I do not check these forums regularly.

ThatGirlSlays

  • Youngling
  • *
  • Posts: 42
  • Karma: +0/-0
    • View Profile
    • Instagram
  • Twitch Name: ThatGirlSlays
Re: Custom Command/Minigame Request Thread
« Reply #22 on: September 27, 2017, 05:35:19 AM »
I'm a big fan of the gambling suggestion that can win other viewer's currency!

That's super simple.

Folders & files required:

custom_logs/Bonus
custom_logs/Bonus/Cooldowns
custom_logs/Bonus/Settings
custom_logs/Bonus/Settings/Cooldown.txt - Enter the cooldown per user in seconds.

Here is what your !bonus command would look like
--------------------
@if@[>=||@calc@[-|@unixtime@|@readfile@[Bonus/Cooldowns/@user@.txt]]||@readfile@[Bonus/Settings/Cooldown.txt]||@savefile@[Bonus/Cooldowns/@user@.txt,@unixtime@] @user@, here are @rand@[1|100] @pointsname@ for being an awesome viewer @editpoints@[@user@|@rand@[1|100]]||@user@, your bonus has not cooled down yet]
--------------------

The @rand@[1|100] here should generate the same number twice. You could even create additional files in the settings folder such as RewardLow (which could be used to replace "1") and RewardHigh (which could be used to replace "100").

Feel free to contact me at thatgirlslays@gmail.com if you need any custom programming. I do not check these forums regularly.