• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:43
CEST 22:43
KST 05:43
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting3[ASL20] Ro4 Preview: Descent6Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)71Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Ladder Impersonation (only maybe) 5.0.15 Patch Balance Hotfix (2025-10-8) The New Patch Killed Mech! TL.net Map Contest #21: Voting Weekly Cups (Oct 6-12): Four star herO
Tourneys
Master Swan Open (Global Bronze-Master 2) Tenacious Turtle Tussle WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
ASL20 General Discussion BSL Season 21 BW caster Sayle BGH Auto Balance -> http://bghmmr.eu/ Brood War web app to calculate unit interactions
Tourneys
[ASL20] Semifinal B [ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1210 users

Dota 2 Bot API: The (glut)Initial step

Blogs > LetaBot
Post a Reply
LetaBot
Profile Blog Joined June 2014
Netherlands557 Posts
February 09 2016 21:20 GMT
#1
Creating a Dota 2 Bot API Part 1: The (glut)Initial step
I decided to take a small break from creating my StarCraft bot (Wiki)LetaBot to see how well bots perform in other e-sport titles. While checking the subreddit, I found out that Dota 2 has an offline LAN mode. This got me interested in checking if it was possible to create a bot API for Dota 2 like the one that Matthew Fisher did for StarCraft 2 ( https://graphics.stanford.edu/~mdfisher/GameAIs.html ). The advantages for using this method over the build-in scripting language is that a build-in scripting language is significantly slower than C++ code, and you cannot store/retrieve as much information as your hard drive can handle ( haven't used Dota 2 script, so correct me if I am wrong about Dota 2 script limitations).

The problem with using DirectX interception to create a bot for StarCraft 2 is that you have to use battle.net to play against other players, and Blizzard won't like it if you use DirectX interception on battle.net . After all, DirectX interception allows you to do stuff like this:

[image loading]

Or even more outlandish stuff like this.

But with an offline LAN mode, you don't have to worry about this sort of stuff getting you banned and leaving you with no other options to play versus other players.

The first attempt to get the graphics interceptor was to use the Matthew Fisher's DirectX interceptor on Dota 2, since the interception part of the code doesn't care about the program it is used on ( placing the modified d3d9.dll in the dota2.exe folder makes it load that one instead of the one in system32 ). This doesn't seem to work since dota 2 crashes when it tries to start up the main menu ( probably something involving the shaders that dota 2 uses, as you will see in apitrace below. ). It did manage to store the load screen textures:

[image loading]

So when I contacted Matthew Fisher, he directed me to a different program called apitrace. That one does manage to collect all the directX API calls, but for some reason it has problems with the shaders as well, causing the frame replay to look mostly black ( with only the top/bottom GUI, healthbars and some flame effects visible). So instead I switched to OpenGL. One driver update later I was capable of getting apitrace to record and replay the OpenGL calls.


Some pictures of the success below:


[image loading]

This is the texture of (Wiki)tiny IIRC.

[image loading]

Scene rendering in progress. Notice the checkerboard textures below each hero (and the spells), and the fact that this image is flipped ( vertically, the original image was upside down ).



Since apitrace is open source, this can be use as an initial starting point to use the same technique that Matthew Fisher used to make his StarCraft 2 bot.
Very ( very very ) simply put, the following needs to be added to the apitrace to make it usable for a Dota 2 Bot API:

- Know which texture belongs to which hero. You can look at Matthew Fisher's texture table for StarCraft 2 to see an example of this.

- Know when these textures are drawn, and where on the screen the texture/hero is located ( as in, not on the XY coordinates of the dota 2 map, but the XY coordinates of your monitor ).

- Use the information above to determine when/where to click on the screen. You are basically sending click commands instead of using a physical mouse, just like AutoIt and other related programs do. The difference is that you aren't relying on the color of certain pixels like a simple runescape bot, but on the information that is send through the graphics pipeline (getting this information purely based on the pixels on the screen is too complex for a game like Dota 2: it would take too much time to process and dota 2 is too fast paced for that).


Besides hero location you ofc also need things like the location of creeps, your/ally/enemy health and all that sort of stuff.


Anyway, I am going back to my StarCraft bot now. I still have to wrap up my master thesis on it. If anyone is interested in already starting on developing such an API, you can pm me and I can give you some (OpenGL, graphic pipeline) guides that can help you get started. In general you will need to know about C++ and OpenGL ( general 3d graphics knowledge should suffice as well, it is mainly about extracting information, not programming OpenGL ). I myself will start digging more into this stuff next month (March).
If you cannot win with 100 apm, win with 100 cpm.
Birdie
Profile Blog Joined August 2007
New Zealand4438 Posts
February 09 2016 22:38 GMT
#2
Are you not able to just memory scan for on-screen hero locations and minimap hero locations? Surely this would be far easier than graphics hooks.
Red classic | A butterfly dreamed he was Zhuangzi | 4.5k, heading to 5k as support!
Sn0_Man
Profile Blog Joined October 2012
Tebellong44238 Posts
February 09 2016 22:41 GMT
#3
Interesting

Just out of curiosity, are you aware that valve wrote some of their own bots?

Which of course are quite different since they don't seek to simulate human interaction with the client in any way of course, but still something worth thinking about.
LiquidDota StaffSCIENTISTS BAFFLED | 3275929302
LetaBot
Profile Blog Joined June 2014
Netherlands557 Posts
Last Edited: 2016-02-09 23:19:33
February 09 2016 23:18 GMT
#4
On February 10 2016 07:38 Birdie wrote:
Are you not able to just memory scan for on-screen hero locations and minimap hero locations? Surely this would be far easier than graphics hooks.


That is what the BWAPI does for StarCraft Brood War. However, one update could change all the relevant opcodes, which means that you have to redo the process. Whereas the textures tend to stay the same for each hero after an update. And even if it changes it is just a matter of finding the right texture again instead of having to go trough the entire program looking for the memory adress.

On February 10 2016 07:41 Sn0_Man wrote:
Interesting

Just out of curiosity, are you aware that valve wrote some of their own bots?

Which of course are quite different since they don't seek to simulate human interaction with the client in any way of course, but still something worth thinking about.


Yes, I know about the build-in bots. But those are very easy to defeat. I don't recall them releasing an API to control these bots directly.
If you cannot win with 100 apm, win with 100 cpm.
Ler
Profile Blog Joined August 2012
Germany543 Posts
February 10 2016 08:13 GMT
#5
I am also kinda in bot programming and I was kinda impressed when I read about the Sc2 bot Matthews released. If you continue your work, write about it please
Twitter: @Ler_GG | Facebook: lergg | youtube: lerlolgg | Twitch.tv/gg_nore | #ArtOfSupport
misirlou
Profile Joined June 2010
Portugal3241 Posts
February 10 2016 12:31 GMT
#6
Is it not possible to code bots on dota 2 tools for custom maps?
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
February 10 2016 12:46 GMT
#7
well lemme know once you finished writing an api wrapper

is there a way to canonicalize hero appearance? I imagine it'll be much easier if all the hero appeared the same and not altered by the costumes they wear.
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
LetaBot
Profile Blog Joined June 2014
Netherlands557 Posts
February 10 2016 13:46 GMT
#8
On February 10 2016 21:31 misirlou wrote:
Is it not possible to code bots on dota 2 tools for custom maps?



It is. But as I mentioned, the scripting language is a lot slower compared to native C++ code. Also you can store/retrieve more data between matches using file I/O . I don't even know if file input/output is possible with the scripting language.

Since dota 2 is quite complex, I don't think that simple scripts are going to be enough to create bots that can defeat top level human players.
If you cannot win with 100 apm, win with 100 cpm.
spamduck101
Profile Joined August 2015
United States8 Posts
February 10 2016 16:19 GMT
#9
Very cool! Keep us posted. I didn't know about Matt's SC2 stuff. That was a fun read.
misirlou
Profile Joined June 2010
Portugal3241 Posts
February 10 2016 20:27 GMT
#10
On February 10 2016 22:46 LetaBot wrote:
Show nested quote +
On February 10 2016 21:31 misirlou wrote:
Is it not possible to code bots on dota 2 tools for custom maps?



It is. But as I mentioned, the scripting language is a lot slower compared to native C++ code. Also you can store/retrieve more data between matches using file I/O . I don't even know if file input/output is possible with the scripting language.

Since dota 2 is quite complex, I don't think that simple scripts are going to be enough to create bots that can defeat top level human players.

I didn't think that was what you meant by "built in scripting language" but it makes sense now. Yeah I guess the scripts are limited that way and I don't see valve adding file I/O support for it since you could basically start distributing a bunch of crap that would harm a system via the workshop.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
February 11 2016 13:47 GMT
#11
On February 10 2016 22:46 LetaBot wrote:
Show nested quote +
On February 10 2016 21:31 misirlou wrote:
Is it not possible to code bots on dota 2 tools for custom maps?



It is. But as I mentioned, the scripting language is a lot slower compared to native C++ code. Also you can store/retrieve more data between matches using file I/O . I don't even know if file input/output is possible with the scripting language.

Since dota 2 is quite complex, I don't think that simple scripts are going to be enough to create bots that can defeat top level human players.


do we know if the scripting language is turing complete or is it actually very primitive like that of starcraft map editor?
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
Torte de Lini
Profile Blog Joined September 2010
Germany38463 Posts
January 06 2017 21:45 GMT
#12
Bumping this. Is Letabot still around?
https://twitter.com/#!/TorteDeLini (@TorteDeLini)
Please log in or register to reply.
Live Events Refresh
OSC
18:30
Mid Season Playoffs
Ryung vs MojaLIVE!
Nice vs NightPhoenix
Cham vs TBD
MaNa vs TriGGeR
SteadfastSC233
IndyStarCraft 187
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 233
IndyStarCraft 187
ZombieGrub98
Railgan 33
StarCraft: Brood War
Calm 2715
Larva 568
Mini 292
firebathero 131
Dewaltoss 80
Counter-Strike
fl0m1332
Stewie2K423
allub189
Heroes of the Storm
Liquid`Hasu548
Other Games
Grubby3275
FrodaN2139
Skadoodle283
Pyrionflax211
C9.Mang0151
Sick121
QueenE67
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• poizon28 95
• StrangeGG 50
• davetesta23
• Kozan
• AfreecaTV YouTube
• intothetv
• sooper7s
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• HerbMon 10
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV559
Other Games
• imaqtpie1551
• Shiphtur348
Upcoming Events
PiGosaur Monday
3h 17m
OSC
1d 2h
The PondCast
1d 13h
OSC
1d 15h
Wardi Open
2 days
CranKy Ducklings
3 days
Safe House 2
3 days
Sparkling Tuna Cup
4 days
Safe House 2
4 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.