Note
This no longer works in browser!
Note
This no longer works if you're alone in vc! Somebody else has to join you!
How to use this script:
- Accept the quest under User Settings -> Gift Inventory
/** | |
* Knick Knack Steam Bot | |
* | |
* Consumes all knick-knacks in Your steam inventory | |
* | |
* - Go to https://steamcommunity.com/my/inventory#753_6 | |
* - Wait for inventory to load | |
* - Press F12 | |
* - Paste the code in console tab | |
* |
<?php | |
//run via cron every 2 minutes | |
$log_location = "/users/minecraft/minecraft/"; | |
$web_viewable_location = "/var/www/gotham.extrafuture.com/public_html/"; | |
$bot_email = "[email protected]"; | |
$twittermail_account = ""; | |
//Get the log file |
<?php | |
/** | |
* Twitter List Tweets PHP script that order tweets by user. | |
* | |
* @author http://techslides.com | |
* @link http://techslides.com/grab-twitter-list-tweets-order-by-user | |
*/ | |
function curl($url){ |
<?php | |
function flip(&$img) | |
{ | |
$size_x = imagesx($img); | |
$size_y = imagesy($img); | |
$temp = imagecreatetruecolor($size_x, $size_y); | |
$x = imagecopyresampled($temp, $img, 0, 0, ($size_x-1), 0, $size_x, $size_y, 0-$size_x, $size_y); | |
return $temp; | |
} |