add lmgtfy plguin

This commit is contained in:
dennydai 2016-08-10 09:03:53 +08:00
parent fa558b25f7
commit 8fbfa63684
1 changed files with 10 additions and 0 deletions

10
plugins/lmgtfy.php Normal file
View File

@ -0,0 +1,10 @@
<?php
PluginSet("Let me google that for you.");
$msg = "Let me google that for you.";
$msg .= "\n\nStep 1. Open the Google.com";
$msg .= "\nStep 2. Type in your question";
$msg .= "\nStep 3. Click the search button";
$msg .= "\nWas that so hard?";
$msg .= "\n\nhttps://www.google.com/search?q=".rawurlencode($plugin_text);
//$msg .= "\n\nhttp://lmgtfy.com/?q=".rawurlencode($plugin_text);
$BOT->msg($plugin_sendto, $msg);