TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask NH: What online game is suitable for contests?

10 pointsby btw0over 16 years ago
I am going to start a web startup, it needs an online game that users can play, and thousands of them can be ranked according to their scores. I have done quit a lot research about this, but failed to find a suitable one.<p>I thought about all kinds of puzzle games like sudoku, people can be ranked by the time they use to solve, but the problem is it's easy to cheat with a sudoku solver program.<p>I thought about tetris, but the game is everywhere and too easy.<p>What I need is a culture-neutral game that's basically fun (kind of addictive), and can give every player a score, hard to cheat, and can be implemented in the browser preferably using Javascript. Any idea?

2 comments

chris11over 16 years ago
It sounds like you are wanting to have your startup be built around a single game. If you are wanting to do that, you probably shouldn't use a casual game. Games with persistent worlds seem to be popular. Also, text based mmorpgs can attract a fair amount of people.<p><a href="http://Travian.com" rel="nofollow">http://Travian.com</a><p><a href="http://Kingdomofloathing.com" rel="nofollow">http://Kingdomofloathing.com</a><p>If you want a casual game, why have only one? There is one huge problem with casual games. You will have to code the game in such a way that it will be hard for the average person to find the memory address for the game variables.<p>Cheat Engine is an easy to use memory scanner that allows people to easily cheat at games. It will index all addresses for a program, for example firefox, and then let you search for them. So I can start out by indexing all addresses while playing a game, then increase a variable. Then I can search that index for all memory addresses whose values have increased. So basically I can edit almost any value in the game as it's easily observable So if you want to make the game hard to cheat, it's going to be somewhat difficult. What you need to do is to keep track track of the variables and check to see if they have suddenly changed.Maybe map x to y using a non linear transformation, and if there is ever a time where x does not map to y, you know the player is cheating. Or you could just accept input from the player and do the calculations concerning the score on your server.<p><a href="http://cheatengine.org/aboutce.php" rel="nofollow">http://cheatengine.org/aboutce.php</a> Cheat Engine in use:<a href="http://www.youtube.com/watch?v=zd4kf6ID1Hc&#38;feature=related" rel="nofollow">http://www.youtube.com/watch?v=zd4kf6ID1Hc&#38;feature=relat...</a>
jacquesmover 16 years ago
multi player 'snake'
评论 #487120 未加载