![]() |
|
How are these skype bots coded? - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: How are these skype bots coded? (/Thread-How-are-these-skype-bots-coded) |
How are these skype bots coded? - Villain - 08-10-2013 Hey,
What language are the skype bots coded in, the ones which you can type something like, !resolve usersname or !autoreply and things like that. Are they coded in vb.net, if so anyone got a old source code of one, or the new skype4com? RE: How are these skype bots coded? - Bonfire - 08-10-2013 Skype bots can be coded in many different languages. VB, Perl, etc. It all depends on what you'd like to code it in. This thread has some potential: http://www.codecommunity.net/showthread.php?tid=654 You might get something out of it. If you're looking to make one in VB, I know that there are tutorials online for it. RE: How are these skype bots coded? - Xanii - 08-11-2013 I've made a couple of skype bots before. Any language that can interact with the Skype4COM library will work. Just read the messages that are received, if they start with ! or your command symbol, split it, check for the command, split it, parse the vars, send response/ do action. RE: How are these skype bots coded? - Villain - 08-11-2013 (08-11-2013, 03:54 AM)Xanii Wrote: I've made a couple of skype bots before. Any language that can interact with the Skype4COM library will work. Just read the messages that are received, if they start with ! or your command symbol, split it, check for the command, split it, parse the vars, send response/ do action. You got any source code you can provide, which I can learn from? RE: How are these skype bots coded? - Xanii - 08-11-2013 Not at the moment, I might release one later tho. |