Skyper ~ the skype bot 03-16-2013, 08:14 PM
#1
Hey,
I recently made a skype bot with an awesome plugin system wich will let you add your own commands. It works for group chat etc.
Sending a message code:
It comes with the following plugins:
functions:
Plugin template:
Adding a plugin:
php mail script:
Download: http://t09.nl/skyper.rar
Mirror: https://mega.co.nz/#!MIpSmTRC!ROBX5wB6CY...5HzJWO9pm8
Virusscan: https://www.virustotal.com/nl/file/ab8da...363461314/
For any questions hit me up at skype (T09.nl) or pm me
Live demo: skyper.bot
Prestige
I recently made a skype bot with an awesome plugin system wich will let you add your own commands. It works for group chat etc.
Sending a message code:
PHP Code:
Skyper.SendMessage(chat, "Message");
It comes with the following plugins:
- !Help - it shows a list of the commands
- !Resolve - resolves a skye (use own api)
- !info - shows bot info
- !spoof - sends a email from a fake receiptent (use own mail script)
- !say - let's the skype bot talk
- !Sumbody - Says a weird text
- !isup - checks if a site is up
functions:
- Plugin system
- Automaticly accept friends
- Only you can use the commands
Plugin template:
PHP Code:
using System;
using System.Collections.Generic;
using System.Text;
using Skyper;
using SKYPE4COMLib;
namespace Skyper.plugins
{
public static class Help
{
public static string Description
{
get
{
return "Your plugin description";
}
}
public static void Execute(string[] Params, int chat, string username)
{
//add code here
}
}
}
Adding a plugin:
- Create a file called {PLUGINNAME}.cs with the template as content
- enter a description
- enter some code in the execute funcition
- say !{PLUGINNAME} to use your plugin!
php mail script:
PHP Code:
<?php
if(isset($_GET['to']))
{
$to = $_GET['to'];
$to = trim($to);
$from = $_GET['from'];
$headers = "From:" . $from . "\r\n";
$subject = $_GET['subject'];
$message = $_GET['message'];
if(mail($to,$subject,$message,$headers))
{
echo "message Sent!";
}
else
{
echo "message did not send!";
}
}
?>
Download: http://t09.nl/skyper.rar
Mirror: https://mega.co.nz/#!MIpSmTRC!ROBX5wB6CY...5HzJWO9pm8
Virusscan: https://www.virustotal.com/nl/file/ab8da...363461314/
For any questions hit me up at skype (T09.nl) or pm me
Live demo: skyper.bot
Prestige