Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Sandbox

Comments on Point Game KOTH

Post

Point Game KOTH

+1
−0

It's about time we have something other than code golf! KOTH time!

A small simple game to get things started.

Rules/Procedure

Everyone starts each bracket with 100 in-game points. In each round of the bracket, you play against an opponent. The only information you are given is your opponent's ID number and how many in-game points they have. (And all other information you have stored up to that point.) You and your opponent each spend a number of in-game points - higher number wins, and moves on in the bracket. In case of a tie, a random bot moves on. You gain a number of scoring points for each win inversely proportional to the number of people left in the bracket.

100,000 (maybe 1 million) brackets will be played - the bot with the highest amount of scoring points wins.

The game is written in Java. You can find the engine, a bot template, and a sample bot here.

Questions

  • Any other information I should be giving each bot?

  • Anything unclear about the rules?

  • Is this game actually interesting to play?

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General comments (2 comments)
General comments
msh210‭ wrote over 3 years ago · edited over 3 years ago

Rule clarification requests: (1) What happens if opponents tie? (This can easily happen in general, but even more so if they both have 0 points left to spend.) (2) "You gain a number of scoring points for each win inversely proportional to the number of people left in the bracket": the number of people left after that round or before it? (There may be no difference, depending on the answer to my question #1.)

Quintec‭ wrote over 3 years ago

@msh210 1. Random bot moves on - I think this is fine for balance because of the large number of rounds played. 2. Before, though it doesn't really matter I think, what I mean to express is 1 pt for first round, 2 for second, 4 for 3rd, etc. etc.