- 贡献
- 0
- 金钱
- 16
- 性别
- 保密
- 威望
- 0
- 最后登录
- 2019-2-2
- 精华
- 0
- 帖子
- 2
- 积分
- 18
- 阅读权限
- 10
- 注册时间
- 2012-8-27
- UID
- 9654046
- 贡献
- 0
- 金钱
- 16
- 性别
- 保密
- 威望
- 0
- 最后登录
- 2019-2-2
- 精华
- 0
- 帖子
- 2
- 积分
- 18
- 阅读权限
- 10
- 注册时间
- 2012-8-27
- UID
- 9654046
|
//禁止弹窗
item_box_act.onComplete = function() {
//mask.processInfo(this.responseData)
};
//自动开钻石锦囊
function open_box()
{
item_box_act.queryData.choice = 2;//1,2,3分别是资源、经验、材料
item_box_act.queryData.ptyle = 1;//支付方式为礼金券
item_box_act.queryData.pkey = '6dd586ea69950fdd4bf03f20a8b84061';//这个字符串和账号有关,每个人不一样
item_box_act.queryData.pid = 55;//55是钻石锦囊,70是新年锦囊
item_box_act.queryData.action = "insert";
item_box_act.sendRequest();
nCall--;
if(nCall==0)
clearInterval(open_box_task);
}
nCall=80;//改为你想开箱的个数
open_box_task = setInterval(open_box,30);//每30ms开一个 |
|