Hacker News new | ask | show | jobs
by jiehong 20 days ago
Video games are made to entertain humans, so does it really matter whether LLMs are good at playing them?
1 comments

It matters a lot because it's a real solution for external bots that plays more "fairly" especially in older games. It also allows to test games autonomously, which is huge if we are talking about automated programming.

Imagine if you can bring those AI players to CS 1.6.

LLMs are the wrong tool for video games. There have been plenty of successful non-LLM AIs that have been trained with reinforcement learning to play games.

If you want to implement actual bots inside the game, then you want to use explicit logic instead of inferred logic. It's much more efficient and easier to debug.

If you want to create Bots for an existing game, which doesn't have its own pre-programmed bots, then you should look at other types of AI. See https://www.geeksforgeeks.org/deep-learning/reinforcement-le...

The headshot/spin bots didn't need ai, all they had to do was ask the server where you were standing, and teleported to your location.
Fair point, thanks for changing my point of view :)