Lid |
|
oke:)
hartstikke bedankt, dat doet het
en als ik nou erbij wil dat de bot antwoord: voor hulp met php, $nick, ga dan naar sitemasters.be
ik ben nog gewoon irc scripten gewend:
on *:text!hulp php:*: {
/msg $chan voor hulp met php, $nick, ga dan naar sitemasters.be
}
dat dus alleen dan in php:P
bij die tut gebruiken ze dit:
<?php
if(isset($eData[3]) && $eData[3] == ':!google' && isset($eData[4])) {
// Google command en minstens 1 trefwoord
// http://www.google.be/search?q=trefwoord
$zoekstring = trim(array_pop(explode('!google',$data)));
$u = 'Google zoeken: http://www.google.be/search?q='.urlencode($zoekstring);
schrijf('NOTICE '.nickname($eData[0]).' : '.$u);
}
?>
<?php
function nickname($str) {
return substr(array_shift(explode('!',$str)),1);
}
?>
<?php if(isset($eData[3]) && $eData[3] == ':!google' && isset($eData[4])) { // Google command en minstens 1 trefwoord // http://www.google.be/search?q=trefwoord $u = 'Google zoeken: http://www.google.be/search?q='.urlencode($zoekstring); schrijf('NOTICE '.nickname($eData[0]).' : '.$u); } ?> <?php function nickname($str) { } ?>
maar dan krijg ik: Fatal error: Call to undefined function: nickname() als ik alleen het bovenste gebruikte en Fatal error: Cannot redeclare nickname() als ik het onderste stukje erbij zet |