361
Games / Re: Terraria - 2D Minecraft More focused on RPG/Action, 1.0.6 RELEASED!
« on: September 23, 2011, 09:00:50 PM »Technically it's 1.0.6.1.Wow, really? It hasn't been updated in that long?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Technically it's 1.0.6.1.Wow, really? It hasn't been updated in that long?
It's the FULL intro, but our REAL intro is 20 seconds c:Definitely still too long. I'd say a decent intro should be capped at around 10 seconds, the less it is and the nicer it looks the better. I don't want to have to either skip a 20 second intro or sit through it each video.
Seed and Co-ords please? :O
Yellow = planned rail lines.
First pic was sent to me from Fat-kid... The kid you beat the living stuff out of sent you a picture of his bloody sweater? What?
Reaction images are stupid.Then ignore them.
I think pictures should be banned from every section except the gallery and drama.What? How would this in any way benefit anyone other than you? Seeing as you're the only person here who seems to dislike pictures that aren't of drama or blockland.
Really good site, May i suggest a custom cursor and a music player?Yes, I agree with tails. That would make the site a lot better.
Because I Made them With milkshape.Utter bullstuff.
function timeTankMove() {
var t=setTimeout("moveTank()",1000);
}
var direction = "right";
var amount = 0;
function moveTank() {
if (direction === "left" && amount<5) {
$(".tank").animate({"left": "-=70px"}, "slow");
amount += 1;
} else if (direction === "right" && amount<5) {
$(".tank").animate({"left": "+=70px"}, "slow");
amount += 1;
} else {
if (direction === "left") {
direction = right;
} else {
direction = left;
}
amount = 0;
}
$("p.debug").html(direction + " " + amount);
timeTankMove();
}The tank moves to the right 5 times then stops, when it should be changing the direction to the opposite direction then reseting the count. Any idea why it's not working?