Fake distribution script

DeletedUser

Guest
Hello,

i had the following script approved for w14 (code now modified with optional function calls). It requests fake coordinates from my server that keeps the coordinates up to date via TW stats, so our tribe members dont have to update coordinates manually.

Now i want to ask if i may add additional features like Time-On-Target, target groups and troop configuration UI via greasemonkeyscript?

Code:
if(window.game_data.screen==='place'){
if(window.FREDFO===undefined)window.FREDFO=new Object();
if(window.FREDFO.request===undefined||confirm('You already requested coordinates.\nRequest again?')){
if(window.FREDFO.f!==undefined)window.FREDFO.f();
else $.get("http://twfred.blaueberge.eu/fake23.php",null,window.FREDFO.fr||function(t,u,o){
$('#place_target').find('input').val(t);t=t.split('|');
var f=$('#command-data-form')[0];
f.x.value=t[0];f.y.value=t[1];
f.ram.value=1;f.spy.value=1;
})}
window.FREDFO.request=true;
}else alert('Use this at the rally point page')
 
Top