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 - xmystico

Pages: [1]
1
Help/Support / Deepbot API issue
« on: November 24, 2015, 03:38:51 AM »
Hello there,
I'm currently working with the deepbot API for a fellow streamer,

My issue is this, despite the syntax i use, i cant issue add_points to every user
i've tried several combinations - nothing seems to work

Is the ALL parameter accepted in the WS API ?

Code for point of reference
ws.send("api|add_points|all|10");


2
Feature Requests / Re: External command endpoints
« on: May 14, 2015, 03:14:57 AM »
im aware of the API, this doesn't offer the functionality

i'm after integration into the actual command system itself,
for example
!google querystring

so deepbot would recognize the command
!google with the variable "querystring"
and it'd remotely call google.co.uk/?q=querystring
then return the results into the chat

3
Feature Requests / External command endpoints
« on: May 09, 2015, 11:45:37 PM »
Hi there,

i'd like to see the command feature within deepbot be able to use custom endpoints,

we currently use a lot of our commands on nightbot - due to it having the ability for custom api's

it'd be nice to see this on deep , means we can integrate our solutions into one platform for easier management

4
Help/Support / Re: Website
« on: April 12, 2015, 02:01:45 AM »
This is unless he creates an API scraper - to dump the information to a database, before shutting down the bot itself

5
Help/Support / Re: API Issue
« on: April 12, 2015, 01:11:38 AM »
Yeah i added my API key there,
i've also tried with several different packages, combinations of with/without {}

it connects - i send the registration request, server doesn't reply

Deepbot is running in admin mode
I've changed the api key several times - restarted bot / system - everything i can think of

6
Help/Support / Re: Website
« on: April 12, 2015, 12:20:20 AM »
This can be done by calling the Deepbot websocket - and requesting the information

You can find the current documentation here
https://github.com/DeepBot-API/client-websocket

7
Help/Support / Re: API Issue
« on: April 11, 2015, 08:58:48 PM »
My current connection node code
Code: [Select]
var net = require('net');
var client = new net.Socket();
 
client.connect(3337, '127.0.0.1', function() {
console.log('Connected to server..');
client.write('api|register|{APIKEY}');
});
 
client.on('data', function(data) {
console.log('Received: ' + data);
client.destroy();
});
 
client.on('close', function() {
console.log('Connection closed');
});




8
Help/Support / Re: API Issue
« on: April 11, 2015, 03:26:16 AM »
I'm using the method - ive checked the ports open via netstat - im using the api key - however nothing seems to work

9
Help/Support / API Issue
« on: April 11, 2015, 03:22:12 AM »
Hi there,

I'm trying to develop using the deepbot websocket connection,
i've tried numerous ways, however despite sending the registration request to the websocket server, i cant get a reply back


Pages: [1]