Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Namespace
- namespace Command;
- /**
- * Sends the arguments to the channel, like say from a user.
- * arguments[0] == Channel or User to say message to.
- * arguments[1] == Message text.
- *
- * @package IRCBot
- * @subpackage Command
- * @author Daniel Siepmann <[email protected]>
- */
- class Horoscoop extends \Library\IRC\Command\Base {
- /**
- * The command's help text.
- *
- * @var string
- */
- protected $help = '!horoscoop [#channel|username] whatever you want to say';
- /**
- * The number of arguments the command needs.
- *
- * @var integer
- */
- protected $numberOfArguments = 1;
- /**
- * Sends the arguments to the channel, like say from a user.
- *
- * IRC-Syntax: PRIVMSG [#channel]or[user] : [message]
- */
- public function command() {
- switch($msg)
- {
- case 'ram':
- case 'stier':
- case 'tweeling':
- case 'kreeft':
- case 'leeuw':
- case 'maagd':
- case 'weegschaal':
- case 'schorpioen':
- case 'boogschutter':
- case 'steenbok':
- case 'waterman':
- case 'vissen':
- $link = 'http://www.daghoroscoop.org/sterrenbeeld/' . $msg .'.html';
- break;
- default:
- $link = "";
- break;
- }
- if($link == "") {
- $this->send('PRIVMSG jumper : foutieve ingave, keuze uit ram stier tweeling kreeft leeuw maagd weegschaal schorpioen boogschutter steenbok waterman vissen');
- } else {
- $homepage = file_get_contents($link);
- preg_match('#<b>(.*?)</b>#', $homepage, $match);
- $result = $match[1];
- $this->send('PRIVMSG ' . $chan . ' :' . $result);
- preg_match('#</b><br /><br /><br />(.*?)<br /><br /><div align="center">#', $homepage, $match);
- $result = $match[1];
- // $this->send('PRIVMSG ' . $chan . ' :' . $result);
- $healthy = array("è", "é");
- $yummy = array("ë", "é") ;
- $result = str_replace($healthy, $yummy, $result);
- $pos = 0;
- $mijnarray = array();
- while($pos !== false) {
- $lpos = $pos;
- $pos = strpos($result, '.', $lpos);
- if ($pos !== false) {
- $pos = strpos($result, ' ', $pos);
- if ($pos !== false) {
- $mijnarray[] = trim(substr($result,$lpos,$pos - $lpos));
- }
- else {
- $mijnarray[] = trim(substr($result, $lpos));
- }
- }
- }
- }
- foreach ($mijnarray as $value) {
- $this->send('PRIVMSG ' . $chan . ' :' . $value);
- }
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement