Greetings, in /libs/faucetbox.php where it says ads you can insert ads, only supports html not php
public function send($to, $amount, $referral = "false") {
$r = $this->__exec("send", array("to" => $to, "amount" => $amount, "referral" => $referral));
if (is_array($r) && array_key_exists("status", $r) && $r["status"] == 200) {
return array(
'success' => true,
'message' => 'Payment sent to you using FaucetBOX.com',
'html' => '
--------->ADS' . htmlspecialchars($amount) . ' satoshi was sent to you on FaucetBOX.com.
--------->ADS
',
'html_coin' => '' . htmlspecialchars(rtrim(rtrim(sprintf("%.8f", $amount/100000000), '0'), '.')) . ' '.$this->currency.' was sent to you on FaucetBOX.com.',
'balance' => $r["balance"],
'balance_bitcoin' => $r["balance_bitcoin"],
'response' => json_encode($r)
);
}