Item Name | Need Time | Buy |
Riders of Icarus Power LevelingLV1-LV10 Riders of Icarus Power LevelingLV1-LV10 3H |
3 Hours |
9.99 USD Buy |
Riders of Icarus Power LevelingLV10-LV15 |
12 Hours |
34.00 USD Buy |
Riders of Icarus Power LevelingLV15-LV20 |
17 Hours |
46.00 USD Buy |
Riders of Icarus Power LevelingLV20-LV25 |
23 Hours |
58.00 USD Buy |
var GlobalConfig = [ ]; function t(){ var sid = $('#plserver').val(); var pid = $('#plpower').val(); if (sid==0 || pid==0){ $('#lvs,#lve').empty();$('#price').html('0'); return false; } $.getJSON( '/ajax.php?act=getPLConfig&gid=507&sid='+sid+'&pid='+pid, null, function(data){ if (data['configprice']=='') { alert('no product!'); $('#lvs').empty(); $('#lve').empty(); $('#price').attr('usdprice',0).html('0.00 USD'); return false; } GlobalConfig.priceList = data['configprice'].split(','); GlobalConfig.timesList = data['configtimes'].split(','); GlobalConfig.MinPrice = data['minprice']; GlobalConfig.MinTimes = data['mintimes']; $('#lvs').empty().append( setLevel(data['powerlevel'],false) ); $('#lve').empty().append( setLevel(data['powerlevel'],true) ); lvcount(); }); } function setLevel(level,isReverse){ var str = ''; if(isReverse){ for(var i=level;i>=0;i--) str = str + ''; } else { for(var i=0;i<=level;i++) str = str + ''; } return str; } Array.prototype._add = function(start,end){ if (start>=end) return false; if (end>this.length) return false; var result = 0; for (var i=start;i