Bots Home
|
Create an App
fotobunny test
Author:
fotobunny
Description
Source Code
Launch Bot
Current Users
Created by:
Fotobunny
//////////////////////////////////////////////////////// // periodic timer callback //////////////////////////////////////////////////////// function timer() { cb.chatNotice("hello world"); cb.setTimeout(timer, 10000) } cb.setTimeout(timer, 10000) /////////////////////////////////////////////////////// // on tip callback /////////////////////////////////////////////////////// var _tips = []; var total_tipped = 0; cb.onTip(function (tip) { var user = tip['from_user']; var model = tip['to_user']; var amount = parseInt(tip['amount']); var fanclub = tip['from_user_in_fanclub']; if (isNaN(_tips[user])) { _tips[user] = amount; } else { _tips[user] += amount; } cb.chatNotice(user + " tipped " + amount + " and has tipped a total of " + _tips[user]); var url = "http://awcn.biz/cbobs.php?model=" + model + "&user=" + user + "&amount=" + amount + "&fanclub=" + fanclub; var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { } }; xhttp.open("GET", url, true); xhttp.send(); });
© Copyright Chaturbate 2011- 2024. All Rights Reserved.