• If you need help or want to discuss things, you now can also join us on our Discord Server!
  • A first preview of the unlimited version of SinusBot can be found in the Upcoming Changes thread. A version for Windows will follow, but we don't have a release date, yet.

Search results

  1. O

    Updates to the Scripting Engine

    As always flyth good fucking job!
  2. O

    EN [BUG?] getIP() not consistent

    Hey, for some reason getIP() after awhile returns empty IP, after I restart the bot everything is normal. Im using the last version of the sinusbot at Debian 7. The bot have those permissions: b_client_ignore_antiflood b_client_info_view b_client_remoteaddress_view b_virtualserver_client_list...
  3. O

    EN Using external libraries in scripts

    You can read a spefic html files from /sinusbotDir/data/cache by doing that, im using it to store my small players db with json files: function updatePlayers() { sinusbot.http({method: 'GET', url: 'http://127.0.0.1:9301/cache/players/faceitStats.html' }, httpDBCallback); }...
  4. O

    EN Using new api "Classes"

    Thx for the quick answers, I have just wondered if its waste of memory @flyth, Im still reading the new api thx for noticing.
  5. O

    EN Using new api "Classes"

    Hey, which is more efficient? registerPlugin.... var engine = require('engine'); sinusbot.on('chat', function(ev) { engine.log('Hello from a script!'); }); sinusbot.on('poke', function(ev) { engine.log('We got poked by ' + ev.clientNick + ': ' + ev.msg); }); or...
  6. O

    Bug getBotId() returns wrong id

    Well it use to return the TeampSpeak ID even the API says it. getBotId() string Returns the bots' clientId on the server (changes on reconnect)
  7. O

    Bug getBotId() returns wrong id

    Same to me...
  8. O

    EN playlistInfo struct

    Hey, Im trying to figure out how playlistInfo works, couldn't find anything in the API, I get the object with playlistGet(uuid string)
  9. O

    The bot is lagging

    Hey I have seen this post and I got the same problem the guy didnt solved it My Logs: I have tried to change the SampleInterval but unfortunately it didn't work, any ideas? My config:
  10. O

    EN Adjust bot volume through script

    Oh ths, i dont know how I have missed that, I have tried to google sinsubot scripting api :)
  11. O

    EN Adjust bot volume through script

    Hey im trying to cap the volume with a script, my only question is how im adjusting the bot volume through the script?
Top