Recommend me a basic simple game...

Ok, I’m at work for the next 6 hours. I have a decent PC, but nothing crazy. I got burned out on NetHack a while back, and am not yet ready to undertake that one again.

I used to have a game that was all text where you’re the King of Babylon.

I’m looking for basic games like that… simple, maybe strategy.

And they have to be small. Not much room here.

And I have to be able to get them off the net.

Suggestions?

I’m sorry, didn’t you say you were at work? Is your job testing computer games?

No, but there’s no production today. I’m bored out of my mind.

The policy is “As long as work gets done and it’s not porn, we don’t care what you do.”

Funny. In my line of work, internet porn is a prerequisite.

What about some of the normal games found on your PC under programs? I used to play a lot of Freecell a while back. Internet games, I’m not so up to date with.

Used to be that you could download a pretty good demo of the Caesar III class of games (they have a lot more built on the same engine nowadays). I did that once during a slow time at work and it kept me going for many hours.

Another free demo download:

http://www.microsoft.com/games/ageofmythology/greek_downloads.asp#trial

Well you probably know about it but you can play Chess or Checkers and many other games online on Yahoo.

I’d recommend Gridrunner++. It’s a simple enough shoot-em-up, but is loads of fun. You can get the demo here, and it’s only a 2.8 Meg download.

http://www.llamasoft.co.uk/Gridrunner/grdl.html

I used to work at a place with a similar policy, and since I worked nights I had about 6 hours of free time every workday (I took about 4 - 6 calls a night, most of them under 15 minutes). I used to play the hell out of Ancient Domains of Mystery (go to www.adom.de) but if you are burned out on Nethack you might not feel like learing a new Rogue-like game (though I feel ADOM is far superior to Nethack). It’s got random dungeons and the like but it structured like more modern RPGs (with an overworld map and many non-random areas, lots of quests, towns, etc.), and it has 10 races and 20 character classes, with no restrictions on combining them. Wonderful game, but it takes a while to learn, especially as the controls are different from most Rogue-like games in many ways.

What I liked doing was making unusual race/class combinations. There is a different starting equipment kit for nearly every combination, too - a dwarven cleric starts out with a blessed axe and plate mail, an orcish cleric has lighter armor but a magical torch and club, halfling archers start with slings, gnomish archers with crossbows, stuff like that. Made experimenting with different combinations even more fun, and made strange stuff like halfling barbarians seem more plausible.

Wow, I just tried the latest version of ADOM and it’s added a lot to the character creation system, it’s a lot less random and there are a bunch of special perks you can choose, kinda like in Fallout or Arcanum. I had a gray elf barbarian that just kicked butt all the way to level 5 since I made that last post.

A little juvenile in places, but still worth a damn overall…

www.candystand.com

10 PRINT “Are you cool Y or N”
20 b$
30 if b$=Y goto 50
40 if b$=N goto
50 PRINT “What is your Name”
60 a$
70 PRINT a$ “is cool!!!”
80 PRINT “YOU ARE A NERD”
90 GOTO 80

Sorry I thought you meant a BASIC game

10 INPUT “Are you cool (Y or N)”;A$
20 IF A$=N GOTO 50
30 INPUT “What is your name”;B$
40 PRINT B$;" is cool!!!"
50 PRINT “YOU ARE A NERD”;
60 GOTO 50

Cleaned it up and improved it a bit.

rolf.

That is all.

Okay, advertising myself. Download from here:

http://pages.prodigy.net/larry.html

I liked a little game called sokoban… it’s a puzzle game.

You can download this game and a lot more from here: http://www.classic-trash.com

Oh and I forgot about the best puzzle game ever made (IMO):

SUPAPLEX!!!

I don’t know how much HD it occupies, but i remember playing it with 5 1/4 floppys in my 286

Also advertising “myself”, I don’t own it but I play there.
This is an online, text based, roleplay game. It is like a text adventure (similar to what you mentioned in the op) but there are a load of other people playing along with you :slight_smile:

www.valheru.com

You can access it with telnet, which means you don’t have to download anything at all, if you like you can download a client that is about 1 meg that would make it more visually appealing to play. We have a ball most of the time, and the other players are a good bunch. To connect straight away go to the website and click * telnet://mud.valheru.com:4242 *, or just pump that link there right into your browser window. Follow the instructions :slight_smile: Best advice for when you land in the world is to type the following:

say help me newbie guide

You will then be given an interactive tour.
Welcome and enjoy.

cough

20 If A$=“N” GOTO 50

plus

45 END

Else you get that repeated string no matter how you answer.
Also nice would be:

25 IF A$<>“Y” THEN PRINT “Invalid input”: GOTO 10