Advertisement
playfulgod

romeo-php-code

Feb 27th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function trkBot ($msg) {
  2. $bot['ip'] = "0.0.0.0"; // your bot ip
  3. $bot['port'] = "0000"; // your script listen port
  4. $bot['password'] = "passwd"; // password which you have set in script
  5. $fp = fsockopen($bot['ip'], $bot['port'], $errno, $errstr, 40);
  6. if($fp){
  7. fputs($fp, $bot['password']." ".$msg);
  8. fclose($fp);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement