Created
July 26, 2014 03:08
-
-
Save izabera/df727a4a15602efee3b6 to your computer and use it in GitHub Desktop.
kvirc get from pastebin.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#OnChannelMessage | |
%string=$3 | |
if ($str.contains($3,"http://pastebin.com/")) { | |
%string=$str.replace(%string,"http://pastebin.com/","http://pastebin.com/raw.php?i=") | |
http.asyncGet -e=o -w=h -i=$window (%string,$file.localdir(paste)) | |
{ | |
%string=$file.read($file.localdir(paste)); | |
echo -w=$3 %string | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment