World Clicking Championship TheElevatorGame.com (and experiment)
11–19 of 19 posts
Re: World Clicking Championship TheElevatorGame.com (and experiment)
#12Re: World Clicking Championship TheElevatorGame.com (and experiment)
#13Re: World Clicking Championship TheElevatorGame.com (and experiment)
#14Re: World Clicking Championship TheElevatorGame.com (and experiment)
#15Great, another Tiny Tower clone.
Re: World Clicking Championship TheElevatorGame.com (and experiment)
#16$('.pickme').click()
Re: World Clicking Championship TheElevatorGame.com (and experiment)
#17So I'm guessing the experiment is either A/B testing of layouts of number pads, or it's testing to see if people can cheat the leaderboard. Also, it must be a slow news day for this to get to front page.
Re: World Clicking Championship TheElevatorGame.com (and experiment)
#18$('.pickme').click()
is there a way I could have disabled that?
Also, your app is vulnerable to replay. I can keep POSTing the same request over and over and my score increases.
Re: World Clicking Championship TheElevatorGame.com (and experiment)
#19Earlier quoted context omitted.
is there a way I could have disabled that?
Of course. Give the numbers a randomly generated id, and check for the winning value server side. You'd also want display the numbers in a way where it's tougher to compare them than checking the text values--the target value is $('#left h1').text().trim(). So that means using images (not named 1.jpg!) or canvas or something like that. Also, your app is vulnerable to replay. I can keep POSTing the same request over a…