What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

What messenger you want to use to communicate with bots from your gadgets?

What messenger you want to use?

  • Jabber

    Votes: 0 0.0%
  • ICQ

    Votes: 0 0.0%
  • Skype

    Votes: 0 0.0%
  • Another variant (post in thread please)

    Votes: 0 0.0%

  • Total voters
    0

Out

Active Member
Joined
Jun 2, 2012
Messages
2,972
Reaction score
13
Poll posted.

Idea - add in AB core API to work with messenger.
Something like:
Code:
  var messenger = getMessenger(); //its one for all Cores
  if (!messenger.connected)
    messenger.Connect("LOGIN", "PASSWORD");
  messenger.onNewMessage += myNewMessage; //we will handle here all messages to this messenger
  messenger.SendMessage("RECEIVERLOGIN", "TEXT");

With this you can check your bots from mobile phone for example, while you on work\etc\etc
 
Last edited:
I'd like to see it be able to be used with skype. That's the main communication system for a lot of people and it'd prove to be very useful.
 
id rather a system allowing plugin to easily send event to all other running plugin. Using this a plugin could be made for any messenging service and would just send the message event to all running plugin using said function.


for instance, core.SendCustomPluginsEvent(data); would trigger a onCustomPluginEvent(data) on every currently running plugin
it could be used as a simple way to communicate between plugin, and simply by adding a flag in data we could easily use it for multiple services in parallel including a way for a messenger service to be connected to all running plugins that support it.


I already have something in a similar fashion implemented, but i am using shared memory for it and its rather complicated to synchronise properly without ending up heavy on the cpu / memory bandwith since we dont have access the parent domain memory.
 
id rather a system allowing plugin to easily send event to all other running plugin. Using this a plugin could be made for any messenging service and would just send the message event to all running plugin using said function.


for instance, core.SendCustomPluginsEvent(data); would trigger a onCustomPluginEvent(data) on every currently running plugin
it could be used as a simple way to communicate between plugin, and simply by adding a flag in data we could easily use it for multiple services in parallel including a way for a messenger service to be connected to all running plugins that support it.


I already have something in a similar fashion implemented, but i am using shared memory for it and its rather complicated to synchronise properly without ending up heavy on the cpu / memory bandwith since we dont have access the parent domain memory.

+1 I like that idea better.
 
Я вродебы ангельский понимаю (с кодом на здравствуйте сейчас изучим), но не совсем понял какие преимущества я могу получить от этой функции. Можно по-подробнее, для аборигенов, про то что я смогу сделать на удаленом управлении через мессенджер?
 
So how can I set this up? I would love to be able to keep an eye on my accounts while I'm out and about, would be my favorite feature. Can you please walk me through this?

Cheers
 
right now theres nothing on it implemented, so you obviously cant use it :P.

The specific will depend on how its made.
 
Back
Top