This job bot was coded in Adobe Actionscript 2.0, I'm releasing the source code along with how it works. It SHOULD still work, i just haven't tested it, i'm also sure there's a better way to do it, as you CAN load your own flash files into Car Town with Fiddler or Charles
Current SWF Look, explanation of text boxes below
[Only registered and activated users can see links. Click Here To Register...]
The way this works...
You grab the XML strings for starting a job (lets say a 1 minute or 5 minute job) and put that in the top text box
You grab the XML strings for finishing THAT SAME JOB and put it in the bottom text box. Obviously the swf is setup for a full garage worth of cars...
The source
when i'd do this by hand (auto clicker over night) i'd jump a few levels and have quite a bit of cash in the morning. I never tested the source
that code probably doesn't work, but the basic idea is running the XML string and having it checked every 30 seconds and force the starting and finishing of a job every 30 seconds
this will only be useful to coders i know, i'll make a bot eventually again, but for now this is just for the coders to expand their knowledge of Car Town Streets
Edit:
This also works for the Game show section... spamming the XML link. Game show works still, i've won a SHIT TON of cars this way using the matching game
Current SWF Look, explanation of text boxes below
[Only registered and activated users can see links. Click Here To Register...]
The way this works...
You grab the XML strings for starting a job (lets say a 1 minute or 5 minute job) and put that in the top text box
You grab the XML strings for finishing THAT SAME JOB and put it in the bottom text box. Obviously the swf is setup for a full garage worth of cars...
The source
when i'd do this by hand (auto clicker over night) i'd jump a few levels and have quite a bit of cash in the morning. I never tested the source
Code:
function doWork()
{
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay1Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay2Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay3Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay4Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay5Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay6Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay7Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay8Start.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay1Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay2Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay3Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay4Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay5Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay6Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay7Finish.text,0);
loadVariablesNum("http://secure.cartown.com/cartown/Flash?" + Bay8Finish.text,0);
}
var GameURL = "http://secure.cartown.com/cartown/Flash?";
if(active && !intervalSet)
{
intervalSet = 1;
interval = setInterval(doWork,30000);
}
else
{
if(!active)
{
clearInterval(interval);
intervalSet = 0;
}
}
this will only be useful to coders i know, i'll make a bot eventually again, but for now this is just for the coders to expand their knowledge of Car Town Streets
Edit:
This also works for the Game show section... spamming the XML link. Game show works still, i've won a SHIT TON of cars this way using the matching game