Comments by Lathan Bidwell on scripts

9 comments

Comment on:
General Bux Script - Countdown Addon

May 16, 2008

the reason that destroying the countdown doesn't get you the money for bux.to is there is the server is counting the 30 sec down as well. Soo if the counter finishes before 30sec is shows the red x and doesn't give money.

Comment on:
Travian Task Queue

May 4, 2008

I have some fixes I've found...

Line 340 us names for Brickyard should be Brickworks

Line 2406 function getBuildingID a way to get it from the gid not just the id.
function getBuildingId() {

var re = /.*build\.php\?([a-z=0-9&]*&)?id=([0-9]{1,2})/i;

var iSiteId = window.location.href.match(re);

if(iSiteId != null) {

return parseInt(iSiteId[2]);

} else if( window.location.href.match( /gid=[0-9]{1,2}/ )) {
var link = document.getElementById('lright1').childNodes[1].childNodes[0].childNodes[0].childNodes[0].childNodes[2].href;
iSiteId = link.match( /gid=([0-9]{1,2})&id=([0-9]{1,2})/ );
return parseInt(iSiteId[2]);
} else {
_log(2, "Building site ID not found");

return false;

}

}

Thanks. You're doing a good job!

Comment on:
Travian Task Queue

May 4, 2008

Could you make a delayed send resources?

Comment on:
TribalWars Enhancer v3

Mar 28, 2008

so don't use it...

Comment on:
TribalWars Enhancer v3

Mar 27, 2008

Ok, that makes sense

Comment on:
TribalWars Enhancer v3

Mar 27, 2008

I hate to be stuck on the same topic but...

What's wrong with having the page refresh every 10 minutes?

Comment on:
TribalWars Enhancer v3

Mar 24, 2008

Togas:

a while a go, when talking about the building queue, and how you didn't want to write a program of code to keep the connection open...

Couldn't you have a toggle for refresh every 10 min ?

Comment on:
Travian Task Queue

Feb 23, 2008

I found a couple of bugs in (for english versions)

armory in the code is listed as 'Armoury' not 'Armory'
brickworks in the code is listed as 'Brickyard' not 'Brickworks'

(this also fixes the armory enhance later bug...)

Comment on:
Travian Task Queue

Feb 23, 2008

I have noticed several buildings that do not work because of name issues (speed.travian.us)

Armoury is really Armory
Brickyard is really Brickworks

(this also fixes the armory enhance later bug)