I've been working full-time on a game called Bot Land for the last four years, and it just launched: https://bot.land/ In the game, you can make bots with a Scratch-like interface called Blockly or use a subset of JavaScript. Either way, bots are fully automated.
Here are some screenshots of the game: https://imgur.com/a/Rs2OWFg
Almost all of the development process (~5000 hours) was streamed live on Twitch: https://www.youtube.com/watch?v=RS5Va996Exg&list=PLSM9PbIe-9...
It's free to play, so please try it and tell me what you think!
Congrats on launching. After four years that’sa huge accomplishment.
Any advice?
Second, all available functions are accessible by clicking the question mark that shows in the script editor. Some Math functions like "abs", "floor", and "ceil" are exposed to users, but "sqrt" is not. This means that you would have to either write your own implementation or convince me to add it to the game. When I hear "sqrt" in Bot Land, I assume you want to find the distance between two objects, in which case you may be able to use the built-in "getDistanceTo" function. It can either take in an entity or two arguments representing (X, Y) coordinates and returns the Manhattan distance between the bot and the target.
If there's another scenario where you'd like the square root, I'd be glad to consider either accommodating the scenario or just adding access to Math.sqrt directly. If we go that route though, you wouldn't have access to whatever results from it before ~Tuesday of this week at the earliest.
I linked that rather than copy/pasting it because you may find other answers interesting on that page. :)
EDIT: I should clarify that 5000 hours is roughly the number of hours that I streamed, not the number of hours that I worked on Bot Land. There were way more hours spent in the background doing all sorts of things (including coding), but the majority of the actual development was on-stream.
Do you mind clarifying what you find brutal? I am very far from being a lawyer, so I just wanted to make sure I'm protected, which is why I contracted the work out in the first place.
This is amazing, congrats.
Two reasons:
1. By making them public, they show up for all of my subscribers on YouTube, but I assume most subscribers on YouTube want to watch "major" update videos like announcements, recaps, etc. 2. I didn't want a new person coming to the channel to get lost in the ~800 development videos rather than seeing the important ones.
> This is amazing, congrats.
Thank you! It's surreal to have spent this long developing something and finally launch it.
I also played - I guess back in the late 90's, with an autonomous Asteroids-like game where you'd write code to control your "space ship" that had "radar" to show you nearby opponents and had pretty much just Asteroid-like controls, which ran as a networked screensaver. It came out of a bunch of people working at Canon - a friend of mine worked there writing printer drivers...)
(Now I'm wondering what you'd get if you let loose inside a modern device, like a cellphone for example, with two opposing bits of fighting code with full root access, but strictly equally time and resource shared? Would Core War even make sense any more with Gigs of ram, hundreds of gigs of flash, asnf stuff like wifi and bluetooth?)
Here is more on its language http://vyznev.net/corewar/guide.html
This is nuts!
I had an idea for similar kind of game where you are a wizard and program your own spells. The mechanics would be inspired by how magic works in The Dresden Files[0], where you draw in magical energy, transform it and then use it in some way. Maybe one could connect it with linear logic and programming.
I assume the former. The goal was always for Bot Land to be free-to-play, and there were many different approaches to monetization discussed throughout development. In the end, I settled on the one you see in-game now, but the tenets were always the same: https://share.bot.land/monetization.html
For reference, salvage packs are the single monetization point of Bot Land. I'm not planning to include advertisements, and I don't want to do subscriptions or anything. Salvage packs contain only cosmetic items, and the rarities are included up-front (which I would have done even if certain platforms like Apple didn't require that).
You can play for free and obtain every item in the game. The game took not only a substantial amount of time to develop (4 years), but also a huge chunk of my savings that I'd built up from my past jobs. I do need some way to make money, and I don't think people would give a game like Bot Land a shot if it weren't free.
However, why not allow users to purchase those items directly? The use of "loot boxes", even for purely cosmetic items, can create dangerous and unhealthy addictive behaviors as people buy again and again trying to get the item they want. A number of countries [0] have made "loot boxes" illegal or placed restrictions on them, so this isn't a purely humanitarian concern.
Additionally, since you can sell those cosmetic items for "Botcoin, which you can then use to purchase anything else in the game." doesn't that end up giving your game P2W functionality? It seems like moving to direct purchases of cosmetic items would eliminate the need for re-sale and prevent concerns about your game being P2W.
[0] https://en.wikipedia.org/wiki/Loot_box#Regulation_and_legisl...
Don't buy one.
I really liked your marketing document and think others might find it really useful, hope you don't mind me linking it here: https://docs.google.com/document/d/1TiSmB7IaWpIf_7cUWzk7GAtR...
(let me know if you are not ok with that and I'll edit the comment)
Alternatively, maybe you were referring to some other part of the game when you said you wouldn't want to play this, in which case I'd love to hear your feedback!
Loadout weapon drag window can get permanently stuck on the screen, requiring a refresh. See here https://i.imgur.com/cL4x2Vk.png
Steps to reproduce: Go to Edit Blueprint Window. Start dragging a window. Press backspace to go back to the game field. The window is now permanently stuck.
Also, it's better that I get reports than not, but if you've got any future bug reports or feature suggestions, there is an in-game bug reporter that you can use via the button at the upper right of most screens in the game.
Gave up at the ‘place two bots’ stage. Couldn’t work out how to place a bot. Love the idea. Needs UX love!
I've heard sporadic reports about not being able to place bots on iOS, and I'm still not sure if it's a bug (I only have my wife's iPhone to test on and it works there, but I know it's not representative of everyone's experience) or unclear instructions. This is the flow that should be happening: https://i.imgur.com/EalfL7J.png
The steps, as text:
1. Open your bot selector
2. Select a bot
3. Tap in the Arena to place one
Is that flow showing up for you? Are you on an iPad or something that shows the "desktop" view of things (i.e. the bot selector is expanded by default)?
Alternatively, in that mobile tutorial, should you try dragging the bots from the selector, that should work too, although it tends to take a little bit longer to deploy multiple bots that way.
Update. Got two bots (at least based on count), I have no clue how, started fight, but there is nothing to be seen, just black background. Battle finished and again everything black except the menues.
I am fan of bot wars and would love to play it, but this is just too frustrating to use.
• What device are you on?
• Are you using the app or the site?
• If you're on the site, what browser are you using, and have you pinned the site to your home screen, or is the URL bar showing?
• What OS version are you on?
The mobile versions of the game are thin wrappers around the web version (https://play.bot.land/), and there weren't very many mobile users before launch, so bugs certainly made it through the testing process.
Your for loop's body section is not legal. You can only use literals as a refinement on objects (when trying to index into an array[i] returned from findEntities).
> How was streaming development of the game?
It was great! People ask me a lot about what I'd change if I could go back in time or start again, and while I would certainly change some technological decisions, I would not change the streaming aspect. There are so many great things that have happened over the years, and I feel like the culmination of all of it can be summed up in this launch-day highlight I took: https://www.twitch.tv/videos/486320333
That one video felt like it made the whole journey worth it.
> Are you concerned about your source being visible?
I wasn't super concerned for a few reasons:
• Code is copyrighted as soon as you write it, so if someone were to take it, I would be able to take legal action against them.
• Perhaps more importantly, I didn't think anyone would want to copy Bot Land's code. Automation games are growing as a genre, but rarely will they include scripting as the main component. To my knowledge, there wasn't a scripting-based game ~4-5 years ago that proved that they could be successful.
• See the next answer...
> Or feeling like you are being watched or judged while coding?
Impostor Syndrome runs rampant with coders. Did I feel like I'd be judged? Yes. Was I? 100% yes (by some people). Were some people mean about it? You'd better believe it. However, I started streaming for accountability and marketing, and I wouldn't have gotten those benefits if I didn't stick with it.
Also, remember that as a streamer, you control who gets to stay around in your chat. People are entitled to their own opinions, but I think the #1 rule as a streamer is that of entertainment: the show must go on. As a programming streamer, this doesn't mean that you have to be entertaining all of the time since you have to be productive while streaming. Either way, in order to keep the show moving, you have to be in a good enough mood to do things. When a troll gets in the way of that, you purge/timeout/ban and move on.
If someone is judging you for your coding style or standards in an unconstructive way, you have tools at your disposal to handle it.
> When did you start streaming development?
I started on September 8th, 2015. I believe I had one follower on Twitch at the time, a real-life friend of mine.
> I'm worried my side project is too early in development to stream...
I don't think anything is really off-limits for a development stream. I've spent entire days streaming myself milling around entirely in a text document (i.e. not even code). I've spent days writing automated tests, triaging bugs, debugging, etc.
> Did you end up having to spend a bunch of time making extra stuff for your audience, like the faq you linked?
Yes. If I had to estimate how many full work days I've put into just streaming-related tasks, I would say it's about 10-15. Granted, you can just start with practically no preparation and see where it takes you, but I don't advise doing that. My advice on streaming hasn't changed too much in the past years; it's mostly encapsulated here: https://blog.bot.land/2016/10/being-a-development-streamer-o...
Streaming is just as saturated as games are nowadays. There are a million streamers trying to make it big who "don't care about the numbers, they're just doing it for themselves". If you want to get started, I'd say that you should come up with a goal pretty early on, and that goal should not be to earn money from the stream. I won't share exact numbers, but I make less than minimum wage as a streamer. As a developer at a traditional job (in the U.S.), I'd make plenty of money.
I'd be happy to answer more questions you may have, although I think you'll have to see for yourself how streaming goes in order to consider whether it's worth it. And be ready to come to the conclusion that it's not worth it since it can affect your productivity and possibly your mood/energy.
Do you find it difficult to converse with folks while programming? How do you maintain flow state while streaming? (Maybe this is just a skill you pick up?)
I’ll give your game a try, maybe I’ll be proved wrong
* None - just ignore the scripting and let the default AI take care of everything. There are some items that can't be used this way, e.g. Teleport and EMP, because the default AI wouldn't know how you'd want to use them. * Blockly - use the block-based scripting to control your bots. This is what I suggest as the step for newcomers who still want to customize their bots' behavior. * BotLandScript - this is a subset of JavaScript that I only recommend for people who already know how to code.
Blockly and BotLandScript should have feature parity (not that they do right now, but the differences are somewhat minor given the target audiences for each), so you don't necessarily have to code (or even know how to code) to play Bot Land. Then again, scripting will certainly give you an advantage.
I know how to code, but I don't know how to win a game of BotLand. Having the ability to just start a match right away is killer.
I played a dozen or so matches so far. Really excited to see how development progresses. Also surprised at how well the mobile app runs considering it's a web wrapper (but it doesn't feel like most web wrappers do!)
Best of luck, and thanks for the game!
You’re going to get negativity from “developers” about using Blockly, but unless they’re your target audience don’t let it get to you.
Lots of EE’s use graphical tools to layout the circuit boards anyway... so text is really just an unnecessary abstraction over schematics & you’re bringing programming back to its roots :-)