更新修复说明: 完美修复神力属性,GM亲自测试从最低级到终极装备的属性。绝对合理刺激。 调整BOSS爆率,以前BOSS爆出物品几率太低,导致玩家以为BOSS是不是只爆那几件垃圾装备。 现在已经全部修复,小地图BOSS爆率基本提升10倍以上,大BOSS爆率提升3倍以上 十方神器爆率更是提升至少百倍,以前基本是暴不出来的! 调整充值回馈,满回馈只需50RMB,真正的大众消费 版本详细说明: 1.游戏简易介绍:散人玩家.上线后直接泡点到1000级,领取500万元宝召唤800级BB可以虐中级BOSS 强调说明:专业封挂登陆器,封杀一切外挂,封双头盔,封加入暗杀。拒绝一切要待遇要比例的人,请玩家自重!
|
var Float = Class.create(); Float.prototype = { initialize: function(elem, options) { this.toDo = options.toDo || function(){}, this.bodyScrollTop = document.documentElement.scrollTop || document.body.scrollTop, this.bodyScrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft, this.element = document.getElementById(elem); this.dely = options.dely || 500; this.top = options.top || 0; this.left = options.left || 0; }, start:function(){ if(!this.element){ alert('please set a element first!'); return false; } this.element.style.position = 'absolute'; this.toDo(); setInterval(this.toDo.bind(this),this.dely) } } var f = new Float('china_ads_div405',{dely:100, toDo:function(){ var isIE = document.all && window.external; this.bodyScrollTop = document.documentElement.scrollTop || document.body.scrollTop; this.bodyScrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft; if(isIE){ this.docWidth = document.documentElement.clientWidth || document.body.clientWidth; this.docHeight = document.documentElement.clientHeight || document.body.clientHeight; }else{ this.docWidth = (document.body.clientWidth > document.documentElement.clientWidth)?document.documentElement.clientWidth:document.body.clientWidth; this.docHeight = (document.body.clientHeight > document.documentElement.clientHeight)?document.documentElement.clientHeight:document.body.clientHeight; } this.element.style.top = (this.docHeight - parseInt(this.element.offsetHeight,10)) + parseInt(this.bodyScrollTop, 10)+ 'px'; this.element.style.left = (this.docWidth - parseInt(this.element.offsetWidth,10)) + parseInt(this.bodyScrollLeft, 10) + 'px'; } }); f.start();