Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MrOrkMork

Pages: [1]
1
German Support / Kann Deepbot rechnen?
« on: October 08, 2015, 10:01:53 PM »
Hi ....

kann deepbot rechnen?

Zum Beispiel ein pointcounter: !donatepoints 100 -> @readfile@[PathToFile/totalpoints.txt] + @taget@ ....
oder so.

Gruß
MrOrkMork

2
Help/Support / Re: Question : chat commands
« on: September 26, 2015, 01:44:31 AM »
I have tested it with my streaming account and the command added to me 100 points too.
But to another guy who is not mod/streamer/whatever it worked perfect.

Btw: you should set the Access Control to: 8. Mod Only or higher. Just that the users don't abuse the command ;)

Maybe you are automatic flagged as a follower to your own channel.
Like calling your self with the telefon. It will always be "busy".

Regards,
MrOrkMork

Edit:
I have extended the command a bit to be more dynamic:
!followpoints -> @if@[@lookupinfo@[@followdate@,@target@[2]]||Not Following||@target@[2] is not following.||!add @target@[1] @target@[2]]

And as an example and testing:
- user1 is not following
- user2 is following
- streameraccount is not following myself :D

MrOrkMork: !followpoints 100 user1
MiniMork: user1 is not following.
MrOrkMork: !followpoints 100 user2
MiniMork: Added 100 to user user2. New balance: 5.689
MrOrkMork: !followpoints 100 mrorkmork
MiniMork: Added 100 to user mrorkmork. New balance: 28.185

3
Help/Support / Re: Question : chat commands
« on: September 25, 2015, 11:11:45 PM »
do this:

!followerpoints -> @if@[@lookupinfo@[@followdate@,@target@]||Not Following||@target@ is not following.||!add 100 @target@]

or if you want to have it without output if he is not following:
!followerpoints -> @if@[@lookupinfo@[@followdate@,@target@]||Not Following||||!add 100 @target@]

Regards,
MrOrkMork

4
Help/Support / Re: New if command
« on: September 25, 2015, 07:32:13 PM »
Okay ... new if command and lookup is working fine now ;)

as example:
!guess -> @if@[@target@||@randomuser@||!add 100 @user@||You didn't guess the user I was thinking of! No points for you!]

But how do i use those values?

@userinfo1@[username], e.g. @userinfo1@[@user@]
@userinfo2@[username], e.g. @userinfo1@[@user@]
@userinfo3@[username], e.g. @userinfo1@[@user@]

Didn't figure that out and how to use them.
Are they something like variables which we can use to store some information?

Regards
MrOrkMork

5
Help/Support / New if command
« on: September 10, 2015, 08:25:05 PM »
Hi.

Can anyone give maybe a lil example for the new @if@ command?

@if@[data||matchWith||matchedResult||FailResult]

I don't get any of those new enhancements to commands working  :o And yes - I have VIP

Cheers,
MrOrkMork

6
German Support / Re: Customapi keine Kommas
« on: September 10, 2015, 07:49:37 PM »
Dann zurück zu meiner Frage ;)

  • Ist irgendetwas wie Zeichenersetzung in Variablen geplant? (speziell durch die Einführung des @if@ commands in der 0.7.5.0)
  • Wird evtl @customjsonapi@[http://meineapi/call/@target@,response]  abgeändert in @customjsonapi@["http://meineapi/call/@target@",response], so dass ein Komma im URL-call gemacht werden kann?

Grüße
MrOrkMork

7
German Support / Re: Customapi keine Kommas
« on: September 10, 2015, 07:38:30 PM »
PN ist raus. Hoffe die kam auch an  :-\

Grüße
MrOrkMork

8
German Support / Re: Customapi keine Kommas
« on: September 10, 2015, 07:13:00 PM »
Dann ist es vielleicht besser, wenn ich beispielhaft ins Detail gehe.

Nehmen wir mal an ich habe zum beispiel einen Befehl der folgendermaßen aufgebaut ist:
!call => /me mischt @customjsonapi@[http://meineapi/call/@target@[1] @target@[2] @target@[3],response] zusammen!

Rufe ich jetzt den command mit:
!call Schwarz und Rot
auf, funktioniert der Aufruf der customapi und mein bot antwortet mit:

MiniMork mischt Schwarz und Rot erfolgreich zusammen!
Da der URL call auch gemacht worden ist und ich json zurück bekomme:
{"response":"Schwarz und Rot erfolgreich"}

Rufe ich den command allerdings zum Beispiel folgendermaßen auf:
!call Schwarz, Rot, Grün

wird der URL-call nicht ausgeführt und mein bot antwortet mit:
MiniMork mischt @customjsonapi@[http://meineapi/call/Schwarz, Rot, Grün,response] zusammen!

Ich hoffe dieses Beispiel (wenn auch abstrakt) ist Erklärung genug.

Ansonsten bitte nochmal anschreiben/antworten ;)

Grüße
MrOrkMork

Edit:
Und ja, @target@ gehört komplett noch zur URL. Da ich keine Möglichkeit gefunden habe, alle Wörter in einem @ command wiederzugeben, habe ich an die URL @target@[1]...@target@[20] angehängt. Und somit gehört das Komma vom @target@ noch zur URL

9
German Support / Customapi keine Kommas
« on: September 10, 2015, 05:00:05 PM »
Hi.

Ich nutze recht intensiv die custom-api habe allerdings einen "Fehler" darin gefunden. Verständlicherweise schlägt der Aufruf fehl, sogald im @target@ ein Komma vorhanden ist.

Laut wiki:
@customjsonapi@[https://api.twitch.tv/kraken/channels/@target@[1],status]

Verwende ich zum Beispiel:
@customjsonapi@[http://meineapi/call/@target@[1] @target@[2],response]
und in @target@[1] oder @target@[2] befindet sich ein Komma, antwortet der Bot mit eben dieser Ausgabe:

@customjsonapi@[http://meineapi/call/test, test,response] =>
@target@[1] = "test,"
@target@[2] = "test"

  • Ist irgendetwas wie Zeichenersetzung in Variablen geplant? (speziell durch die Einführung des @if@ commands in der 0.7.5.0)
  • Wird evtl @customjsonapi@[http://meineapi/call/@target@[1],response]  abgeändert in @customjsonapi@["http://meineapi/call/@target@[1]",response]

Grüße
MrOrkMork

10
Help/Support / VIP upgrade
« on: May 06, 2015, 04:21:10 PM »
Hi.
I realized, that my VIP status expired  :'( so i subscribed monthly now with $5.
Does the VIP-status is active again as soon as you checked the subscription and i am relogged with my bot?

Regards,
MrOrkMork

11
Where did you hear about DeepBot from?
 - Searching for a bot which have minigames and "time watched" commands

Your stream name?
 - MrOrkMork

Twitch bot account name?(This needs to be a valid twitch account, other than your streamer account you own that the bot will connect to)
 - MiniMork

Your streaming schedule? [Days/Approximate time]
 - Monday - Thursday 8pm-0am CET
 - Sunday 6pm-0am CET

Is your stream partnered with Twitch?
 - no

Average number of users on your channel?
 - Depends of the game... 10-20

Do you need to migrate an existing points system over to DeepBot? If yes, please specify which Bot you are currently using.
 - no

System Edit : Application Accepted. Install complete. Thanks for the support!

Pages: [1]